Merge branch 'develop' of https://github.com/frappe/erpnext into show_address_in_online_pos

This commit is contained in:
Saurabh 2018-01-25 11:56:36 +05:30
commit 5a2354149c
134 changed files with 6045 additions and 5172 deletions

View File

@ -5,7 +5,7 @@ import frappe
from erpnext.hooks import regional_overrides
from frappe.utils import getdate
__version__ = '10.0.12'
__version__ = '10.0.14'
def get_default_company(user=None):
'''Get default company for user'''

View File

@ -246,7 +246,7 @@ def make_payment_request(**args):
"currency": ref_doc.currency,
"grand_total": grand_total,
"email_to": args.recipient_id or "",
"subject": "Payment Request for %s"%args.dn,
"subject": _("Payment Request for {0}").format(args.dn),
"message": gateway_account.get("message") or get_dummy_message(ref_doc),
"reference_doctype": args.dt,
"reference_name": args.dn

View File

@ -1,8 +1,8 @@
{
"allow_copy": 0,
"allow_guest_to_view": 0,
"allow_import": 0,
"allow_rename": 0,
"allow_import": 1,
"allow_rename": 1,
"autoname": "field:payment_term_name",
"beta": 0,
"creation": "2017-08-10 15:24:54.876365",
@ -265,7 +265,7 @@
"issingle": 0,
"istable": 0,
"max_attachments": 0,
"modified": "2017-08-10 16:26:03.581501",
"modified": "2018-01-24 11:13:42.800048",
"modified_by": "Administrator",
"module": "Accounts",
"name": "Payment Term",

View File

@ -1,8 +1,8 @@
{
"allow_copy": 0,
"allow_guest_to_view": 0,
"allow_import": 0,
"allow_rename": 0,
"allow_import": 1,
"allow_rename": 1,
"autoname": "field:template_name",
"beta": 0,
"creation": "2017-08-10 15:34:28.058054",
@ -85,7 +85,7 @@
"issingle": 0,
"istable": 0,
"max_attachments": 0,
"modified": "2017-08-10 15:46:33.877884",
"modified": "2018-01-24 11:13:31.158613",
"modified_by": "Administrator",
"module": "Accounts",
"name": "Payment Terms Template",

View File

@ -18,7 +18,7 @@ erpnext.accounts.PurchaseInvoice = erpnext.buying.BuyingController.extend({
this.frm.set_df_property("credit_to", "print_hide", 0);
}
} else {
this.frm.set_value("disable_rounded_total", frappe.sys_defaults.disable_rounded_total);
this.frm.set_value("disable_rounded_total", cint(frappe.sys_defaults.disable_rounded_total));
}
// formatter for material request item

View File

@ -297,6 +297,36 @@
"set_only_once": 0,
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
"columns": 0,
"fieldname": "allow_print_before_pay",
"fieldtype": "Check",
"hidden": 1,
"ignore_user_permissions": 0,
"ignore_xss_filter": 0,
"in_filter": 0,
"in_global_search": 0,
"in_list_view": 0,
"in_standard_filter": 0,
"label": "Allow Print Before Pay ",
"length": 0,
"no_copy": 0,
"permlevel": 0,
"precision": "",
"print_hide": 1,
"print_hide_if_no_value": 0,
"read_only": 1,
"remember_last_selected_value": 0,
"report_hide": 0,
"reqd": 0,
"search_index": 0,
"set_only_once": 0,
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
@ -4563,7 +4593,7 @@
"istable": 0,
"max_attachments": 0,
"menu_index": 0,
"modified": "2018-01-11 14:02:48.829906",
"modified": "2018-01-09 09:48:00.152026",
"modified_by": "Administrator",
"module": "Accounts",
"name": "Sales Invoice",

View File

@ -304,6 +304,8 @@ class SalesInvoice(SellingController):
self.account_for_change_amount = frappe.db.get_value('Company', self.company, 'default_cash_account')
if pos:
self.allow_print_before_pay = pos.allow_print_before_pay
if not for_validate and not self.customer:
self.customer = pos.customer

View File

@ -17,12 +17,12 @@
<table class="table table-bordered">
<thead>
<tr>
<th style="width: 15%">{%= __("Date") %}</th>
<th style="width: 12%">{%= __("Date") %}</th>
<th style="width: 15%">{%= __("Ref") %}</th>
<th style="width: 25%">{%= __("Party") %}</th>
<th style="width: 15%">{%= __("Debit") %}</th>
<th style="width: 15%">{%= __("Credit") %}</th>
<th style="width: 15%">{%= __("Balance") %}</th>
<th style="width: 18%">{%= __("Balance") %}</th>
</tr>
</thead>
<tbody>
@ -76,9 +76,11 @@
{% } %}
{% } %}
{% if(filters.print_in_account_currency) { %}
<td style="text-align: right">{%= data[i].balance_in_account_currency %}</td>
<td style="text-align: right">{%= get_currency_symbol(data[i].account_currency)%}
{%= data[i].balance_in_account_currency %}</td>
{% } else { %}
<td style="text-align: right">{%= data[i].balance %}</td>
<td style="text-align: right">{%= get_currency_symbol()%}
{%= data[i].balance %}</td>
{% } %}
</tr>
{% } %}

View File

@ -238,7 +238,7 @@ def get_result_as_list(data, filters):
inv_details = get_supplier_invoice_details()
for d in data:
if not d.posting_date:
if not d.get('posting_date'):
balance, balance_in_account_currency = 0, 0
balance, label = get_balance(d, balance, 'debit', 'credit')
@ -254,7 +254,7 @@ def get_result_as_list(data, filters):
d['balance_in_account_currency'] = d.get('balance')
d['account_currency'] = filters.account_currency
d['bill_no'] = inv_details.get(d.against_voucher, '')
d['bill_no'] = inv_details.get(d.get('against_voucher'), '')
return data

View File

@ -53,7 +53,7 @@ def get_sales_payment_data(filters, columns):
def get_conditions(filters):
conditions = "1=1"
if filters.get("from_date"): conditions += "a.posting_date >= %(from_date)s"
if filters.get("from_date"): conditions += " and a.posting_date >= %(from_date)s"
if filters.get("to_date"): conditions += " and a.posting_date <= %(to_date)s"
if filters.get("company"): conditions += " and a.company=%(company)s"
if filters.get("customer"): conditions += " and a.customer = %(customer)s"

View File

@ -484,7 +484,7 @@ class AccountsController(TransactionBase):
max_allowed_amt = flt(ref_amt * (100 + tolerance) / 100)
if total_billed_amt - max_allowed_amt > 0.01:
frappe.throw(_("Cannot overbill for Item {0} in row {1} more than {2}. To allow over-billing, please set in Buying Settings").format(item.item_code, item.idx, max_allowed_amt))
frappe.throw(_("Cannot overbill for Item {0} in row {1} more than {2}. To allow over-billing, please set in Stock Settings").format(item.item_code, item.idx, max_allowed_amt))
def get_company_default(self, fieldname):
from erpnext.accounts.utils import get_company_default

View File

@ -152,7 +152,7 @@ def tax_account_query(doctype, txt, searchfield, start, page_len, filters):
def item_query(doctype, txt, searchfield, start, page_len, filters, as_dict=False):
conditions = []
return frappe.db.sql("""select tabItem.name, tabItem.item_group, tabItem.image,
return frappe.db.sql("""select tabItem.name, tabItem.item_group,
if(length(tabItem.item_name) > 40,
concat(substr(tabItem.item_name, 1, 40), "..."), item_name) as item_name,
if(length(tabItem.description) > 40, \

View File

@ -33,7 +33,6 @@ erpnext.LeadController = frappe.ui.form.Controller.extend({
this.frm.add_custom_button(__("Customer"), this.create_customer, __("Make"));
this.frm.add_custom_button(__("Opportunity"), this.create_opportunity, __("Make"));
this.frm.add_custom_button(__("Quotation"), this.make_quotation, __("Make"));
cur_frm.page.set_inner_btn_group_as_primary(__("Make"));
}
if(!this.frm.doc.__islocal) {

View File

@ -48,8 +48,6 @@ frappe.ui.form.on("Opportunity", {
frm.add_custom_button(__('Quotation'),
cur_frm.cscript.create_quotation, __("Make"));
frm.page.set_inner_btn_group_as_primary(__("Make"));
if(doc.status!=="Quotation") {
frm.add_custom_button(__('Lost'),
cur_frm.cscript['Declare Opportunity Lost']);

View File

@ -192,7 +192,7 @@ def mark_attendance():
"attendance_date": attendance_date
})
leave = frappe.db.sql("""select name from `tabLeave Application`
where employee = %s and %s between from_date and to_date and status = 'Approved'
where employee = %s and %s between from_date and to_date and workflow_state = 'Approved'
and docstatus = 1""", (employee.name, attendance_date))
if leave:

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 169 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

View File

@ -14,7 +14,7 @@ Set the Employee ID, date, purpose and requested amount and “Save” the recor
Employee Advance record can be created by any employee but they cannot submit the record.
After saving Employee Advance, Employee should [Assign document to Approver](/docs/user/manual/en/using-eprnext/assignment.html). On assignment, approving user will also receive email notification. To automate email notification, you can also setup [Email Alert](/docs/user/manual/en/setting-up/email/email-alerts.html).
After saving Employee Advance, Employee should [Assign document to Approver](/docs/user/manual/en/using-erpnext/assignment.html). On assignment, approving user will also receive email notification. To automate email notification, you can also setup [Email Alert](/docs/user/manual/en/setting-up/email/email-alerts.html).
After verification, approver can submit the Employee Advance form or reject the request.

View File

@ -2,7 +2,7 @@
The Human Resources (HR) Module covers the processes linked to managing a team
of co-workers. Most important feature here is processing the payroll by using
Process Payroll to generate Salary Slips. Most countries have complex tax
Payroll Entry to generate Salary Slips. Most countries have complex tax
rules stating which expenses the company can make on behalf of the Employees.
There are a set of rules for the company to deduct taxes and social security
from employee payroll. ERPNext allows to accomodate all types of taxes and

View File

@ -4,6 +4,7 @@ employee-advance
expense-claim
attendance
salary-and-payroll
payroll-entry
appraisal
job-applicant
job-opening

View File

@ -0,0 +1,49 @@
# Payroll Entry
You can also create salary slip for multiple employees using Payroll Entry:
> Human Resources > Payroll Entry
<img class="screenshot" alt="Payroll Entry" src="/docs/assets/img/human-resources/payroll-entry.png">
In Payroll Entry,
1. Select the Company for which you want to create the Salary Slips. You can also select the other fields like Branch, Department, Designation or Project to be more specific.
2. Check "Salary Slip based on Timesheet" if you want to process timesheet based Salary Slips.
3. Select the Start Date and End Date or Fiscal year and month for which you want to create the Salary Slips.
4. Click on "Get Employee Details" to get a list of Employees for which the Salary Slips will be created based on the selected criteria.
5. Select the Cost Center and Payment Account.
6. Save the form and Submit it to create Salary Slip records for each active Employee for the time period selected. If the Salary Slips are already created, the system will not create any more Salary Slips. You can also just save the form as Draft and create the Salary Slips later.
<img class="screenshot" alt="Payroll Entry" src="/docs/assets/img/human-resources/created-payroll.png">
Once all Salary Slips are created, you can check by clicking on "View Salary Slips", if they are created correctly or edit it if you want to deduct Leave Without Pay (LWP).
After checking, you can "Submit" them all together by clicking on "Submit Salary Slip".
### Booking Salaries in Accounts
The final step is to book the Salaries in your Accounts.
Salaries in businesses are usually dealt with extreme privacy. In most cases,
the companies issues a single payment to the bank combining all salaries and
the bank distributes the salaries to each employees salary account. This way
there is only one payment entry in the companys books of accounts and anyone
with access to the companys accounts will not have access to the individual
salaries.
The salary payment entry is a Journal Entry that debits the total of the
earning type salary component and credits the total of deduction type salary
component of all Employees to the default account set at Salary Component level
for each component.
To generate your salary payment voucher from Payroll Entry, click on,
> Make > Bank Entry
<img class="screenshot" alt="Payroll Entry" src="/docs/assets/img/human-resources/payroll-make-bank-entry.png">
It will ask to enter the Bank Transaction Reference Number and date. All other details will be auto-filled according to your Payroll Entry form. Click on Save and create it.
<img class="screenshot" alt="Payroll Entry" src="/docs/assets/img/human-resources/payroll-journal-entry.png">
{next}

View File

@ -7,7 +7,7 @@ Payroll is the administration of financial records of employees' salaries, wages
To process Payroll in ERPNext,
1. Create Salary Structures for all Employees.
2. Generate Salary Slips via Process Payroll.
2. Generate Salary Slips via [Payroll Entry](/docs/user/manual/en/human-resources/payroll-entry.html).
3. Book the Salary in your Accounts.
### Salary Structure
@ -115,7 +115,7 @@ Earning Types and Deduction Types.
### Creating Salary Slips
Once the Salary Structure is created, you can make a salary slip from the same
form or you can process your payroll for the month using Process Payroll.
form or you can process your payroll for the month using Payroll Entry.
To create a new Salary Slip go to:
@ -125,48 +125,4 @@ To create a new Salary Slip go to:
<img class="screenshot" alt="Salary Slip" src="/docs/assets/img/human-resources/salary-slip.png">
You can also create salary slip for multiple employees using Process Payroll:
> Human Resources > Process Payroll
#### Figure 3: Process Payroll
<img class="screenshot" alt="Process Payroll" src="/docs/assets/img/human-resources/process-payroll.png">
In Process Payroll,
1. Select the Company for which you want to create the Salary Slips.
2. Check "Salary Slip based on Timesheet" if you want to process timesheet based Salary Slips.
3. Select the From Date and To Date or Fiscal year and month for which you want to create the Salary Slips.
3. Select the Payment Account.
3. Click on “Create Salary Slips”. This will create Salary Slip records for each active Employee for the time period selected. If the Salary Slips are created, the system will not create any more Salary Slips. All updates will be shown in the “Activity Log” section.
4. Once all Salary Slips are created, you can check if they are created correctly or edit it if you want to deduct Leave Without Pay (LWP).
5. After checking, you can “Submit” them all together by clicking on “Submit Salary Slips”. 1. If you want them to be automatically emailed to the Employee, make sure to check the “Send Email” box.
### Booking Salaries in Accounts
The final step is to book the Salaries in your Accounts.
Salaries in businesses are usually dealt with extreme privacy. In most cases,
the companies issues a single payment to the bank combining all salaries and
the bank distributes the salaries to each employees salary account. This way
there is only one payment entry in the companys books of accounts and anyone
with access to the companys accounts will not have access to the individual
salaries.
The salary payment entry is a Journal Entry that debits the total of the
earning type salary component and credits the total of deduction type salary
component of all Employees to the default account set at Salary Component level
for each component.
To generate your salary payment voucher from Process Payroll, click on
“Make Bank Entry”. It will ask to enter the Bank Transaction Reference Number and date.
Click on "Make" and a new Journal Entry with the total salary components will be
created.
#### Figure 3.1: Make Bank Entry
<img class="screenshot" alt="Process Payroll" src="/docs/assets/img/human-resources/bank-entry.png">
{next}

View File

@ -302,11 +302,11 @@ A type of leave (e.g., Sick Leave, Maternity Leave, etc.).
> Human Resource > Leave and Attendance > Leave Type
#### Process Payroll
#### Payroll Entry
A tool that helps in creation of multiple Salary Slips for Employees.
> Human Resource > Salary and Payroll > Process Payroll
> Human Resource > Payroll Entry
#### Salary Slip

View File

@ -0,0 +1,24 @@
# Le Fichier des Écritures Comptables [FEC]
Since 2014, a legal requirement makes it mandatory for companies operating in France to provide a file of their general accounting postings by fiscal year corresponding to an electronic accounting journal.
For ERPNext users this file can be generated using a report available if you system's country is France.
### Requirements
To generate the report correctly, your Chart of Account needs to be setup according to the french accounting rules.
All accounts need to have a number in line with the General Chart of Account (PCG) and a name.
The SIREN number of your company can be added in the "Company" doctype.
### CSV generation
You can generate the required CSV file by clicking on "Export" in the top right corner of the report.
### Testing Instructions
To test the validity of your file, the tax administration provides a testing tool at the following address: [Outil de test des fichiers des écritures comptables (FEC)](http://www.economie.gouv.fr/dgfip/outil-test-des-fichiers-des-ecritures-comptables-fec)

View File

@ -0,0 +1,3 @@
france
india
united_arab_emirates

View File

@ -7,6 +7,10 @@ You can automate database backup download of your ERPNext account into your Drop
To setup Dropbox Backup,
`Explore > Integrations > Dropbox Settings`
##Steps are different for ERPnext managed versions and open-source versions
###ERPnext Managed Version Instructions
####Step 1: Set Frequency
Set Frequency to download backup in your Dropbox account.
@ -31,30 +35,43 @@ On successful login, you will find a confirmation message as following. Click on
With this, a folder called "ERPNext" will be created in your Dropbox account, and database backup will start to auto-download in it.
##Open Source Users
####Step 1: Go to
##Open Source Version Instructions
####Step 1: Login to Dropbox Developer area
<a href="https://www.dropbox.com/developers/apps" target="_blank" style="line-height: 1.42857143;">https://www.dropbox.com/developers/apps</a>
####Step 2:Create a new app
####Step 2: Create a new Dropbox app
<img class="screenshot" alt="Create new" src="/docs/assets/img/setup/integrations/dropbox-open-3.png">
####Step 3: Fill in details for the app
####Step 3: Fill in the details for your new app
<img class="screenshot" alt="Choose Dropbox API and type as APP Folder" src="/docs/assets/img/setup/integrations/dropbox-open-1.png">
-
<img class="screenshot" alt="Setup APP Name" src="/docs/assets/img/setup/integrations/dropbox-open-2.png">
####Step 4: Setup Redirect URL in app
####Step 4: Insert your custom domain Redirect URI
`https://{yourwebsite.com}/api/method/frappe.integrations.doctype.dropbox_settings.dropbox_settings.dropbox_auth_finish`
<img class="screenshot" alt="Set Redirect URL" src="/docs/assets/img/setup/integrations/dropbox_redirect_uri.png">
####Step 5: Settings in Site Config
####Step 5: In a new window, open the Dropbox Settings page in your ERPnext installation
After the app is created, note the app key and app secret on Dropbox Settings page or enter in `sites/{sitename}/site_config.json` as follows,
####Step 6: Set backup frequency and email
Set the frequency to download your site backups to your Dropbox account.
<img class="screenshot" alt="set frequency" src="/docs/assets/img/setup/integrations/setup-backup-frequency.png">
####Step 7: Input Keys from your Dropbox App window
From your Dropbox App page, enter the app key and (unhidden) app secret into the ERPnext Dropbox settings page.
Alternatively, you can enter it manually in `sites/{sitename}/site_config.json` as follows,
<div>
<pre>
@ -68,6 +85,18 @@ After the app is created, note the app key and app secret on Dropbox Settings pa
</pre>
</div>
####Step 5: Complete Backup
####Step 8: Click Save before continuing!!!
Setup dropbox backups from the backup manager as shown in previous section.
####Step 9: After saving, click "Allow Dropbox Access"
The Dropbox login page will open in the new tab. This might require you to allow pop-up for your ERPNext account.
####Step 11: Allow Dropbox Access
On successful login, you will find a confirmation message as following. Click on "Allow" to let your ERPNext account have access to your Dropbox account.
<img class="screenshot" alt="Allow" src="/docs/assets/img/setup/integrations/dropbox-3.png">
####Step 12: Confirm Backups Work
From the ERPnext Dropbox page, click `Take Backup Now` and then go to you Dropbox files view. You should see a new folder in Dropbox named `Apps` and inside of it your {New App} folder. Inside of it should be backup folders for both files and database.

View File

@ -11,7 +11,7 @@ from frappe import _
import datetime
from frappe.core.doctype.sms_settings.sms_settings import send_sms
from erpnext.healthcare.doctype.healthcare_settings.healthcare_settings import get_receivable_account,get_income_account
from erpnext.hr.doctype.employee.employee import is_holiday
class PatientAppointment(Document):
def on_update(self):
@ -82,6 +82,34 @@ def get_availability_data(date, physician):
physician_schedule_name = None
physician_schedule = None
time_per_appointment = None
employee = None
physician_obj = frappe.get_doc("Physician", physician)
# Get Physician employee relation
if physician_obj.employee:
employee = physician_obj.employee
elif physician_obj.user_id:
if frappe.db.exists({
"doctype": "Employee",
"user_id": physician_obj.user_id
}):
employee = frappe.get_doc("Employee", {"user_id": physician_obj.user_id}).name
if employee:
# Check if it is Holiday
if is_holiday(employee, date):
frappe.throw(_("{0} is a company holiday".format(date)))
# Check if He/She on Leave
leave_record = frappe.db.sql("""select half_day from `tabLeave Application`
where employee = %s and %s between from_date and to_date and status = 'Approved'
and docstatus = 1""", (employee, date), as_dict=True)
if leave_record:
if leave_record[0].half_day:
frappe.throw(_("Dr {0} on Half day Leave on {1}").format(physician, date))
else:
frappe.throw(_("Dr {0} on Leave on {1}").format(physician, date))
# get physicians schedule
physician_schedule_name = frappe.db.get_value("Physician", physician, "physician_schedule")

View File

@ -21,7 +21,7 @@ class Attendance(Document):
def check_leave_record(self):
leave_record = frappe.db.sql("""select leave_type, half_day from `tabLeave Application`
where employee = %s and %s between from_date and to_date and status = 'Approved'
where employee = %s and %s between from_date and to_date and workflow_state = 'Approved'
and docstatus = 1""", (self.employee, self.attendance_date), as_dict=True)
if leave_record:
if leave_record[0].half_day:

View File

@ -21,8 +21,7 @@ frappe.ui.form.on("Job Applicant", {
"designation": frm.doc.job_opening,
};
frappe.new_doc("Offer Letter");
}, __("Make"));
cur_frm.page.set_inner_btn_group_as_primary(__("Make"));
});
}
}

View File

@ -29,7 +29,7 @@ frappe.ui.form.on("Leave Application", {
refresh: function(frm) {
if (frm.is_new()) {
frm.set_value("status", "Open");
frm.set_value("workflow_state", "Open");
frm.trigger("calculate_total_days");
}
},

View File

@ -44,66 +44,6 @@
"set_only_once": 1,
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
"columns": 0,
"default": "Open",
"fieldname": "status",
"fieldtype": "Select",
"hidden": 0,
"ignore_user_permissions": 0,
"ignore_xss_filter": 0,
"in_filter": 0,
"in_global_search": 0,
"in_list_view": 0,
"in_standard_filter": 1,
"label": "Status",
"length": 0,
"no_copy": 1,
"options": "Open\nApproved\nRejected",
"permlevel": 1,
"print_hide": 0,
"print_hide_if_no_value": 0,
"read_only": 0,
"remember_last_selected_value": 0,
"report_hide": 0,
"reqd": 0,
"search_index": 0,
"set_only_once": 0,
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
"columns": 0,
"fieldname": "column_break_12",
"fieldtype": "Column Break",
"hidden": 0,
"ignore_user_permissions": 0,
"ignore_xss_filter": 0,
"in_filter": 0,
"in_global_search": 0,
"in_list_view": 0,
"in_standard_filter": 0,
"length": 0,
"no_copy": 0,
"permlevel": 0,
"precision": "",
"print_hide": 0,
"print_hide_if_no_value": 0,
"read_only": 0,
"remember_last_selected_value": 0,
"report_hide": 0,
"reqd": 0,
"search_index": 0,
"set_only_once": 0,
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
@ -796,7 +736,7 @@
"issingle": 0,
"istable": 0,
"max_attachments": 3,
"modified": "2017-06-13 14:28:52.426044",
"modified": "2018-01-22 12:10:40.757274",
"modified_by": "Administrator",
"module": "HR",
"name": "Leave Application",
@ -887,9 +827,9 @@
{
"amend": 1,
"apply_user_permissions": 0,
"cancel": 0,
"cancel": 1,
"create": 0,
"delete": 0,
"delete": 1,
"email": 1,
"export": 0,
"if_owner": 0,

View File

@ -21,9 +21,10 @@ class AttendanceAlreadyMarkedError(frappe.ValidationError): pass
from frappe.model.document import Document
class LeaveApplication(Document):
def get_feed(self):
return _("{0}: From {0} of type {1}").format(self.status, self.employee_name, self.leave_type)
return _("{0}: From {0} of type {1}").format(self.workflow_state, self.employee_name, self.leave_type)
def validate(self):
if self.get("__islocal"): self.workflow_state = 'Open'
if not getattr(self, "__islocal", None) and frappe.db.exists(self.doctype, self.name):
self.previous_doc = frappe.get_value(self.doctype, self.name, "leave_approver", as_dict=True)
else:
@ -43,18 +44,16 @@ class LeaveApplication(Document):
def on_update(self):
if (not self.previous_doc and self.leave_approver) or (self.previous_doc and \
self.status == "Open" and self.previous_doc.leave_approver != self.leave_approver):
self.workflow_state == "Open" and self.previous_doc.leave_approver != self.leave_approver):
# notify leave approver about creation
self.notify_leave_approver()
def on_submit(self):
if self.status == "Open":
frappe.throw(_("Only Leave Applications with status 'Approved' and 'Rejected' can be submitted"))
self.validate_back_dated_application()
# notify leave applier about approval
self.notify_employee(self.status)
self.notify_employee(self.workflow_state)
def on_cancel(self):
# notify leave applier about cancellation
@ -71,10 +70,10 @@ class LeaveApplication(Document):
frappe.throw(_("Half Day Date should be between From Date and To Date"))
if not is_lwp(self.leave_type):
self.validate_dates_acorss_allocation()
self.validate_dates_across_allocation()
self.validate_back_dated_application()
def validate_dates_acorss_allocation(self):
def validate_dates_across_allocation(self):
def _get_leave_alloction_record(date):
allocation = frappe.db.sql("""select name from `tabLeave Allocation`
where employee=%s and leave_type=%s and docstatus=1
@ -89,7 +88,7 @@ class LeaveApplication(Document):
frappe.throw(_("Application period cannot be outside leave allocation period"))
elif allocation_based_on_from_date != allocation_based_on_to_date:
frappe.throw(_("Application period cannot be across two alocation records"))
frappe.throw(_("Application period cannot be across two allocation records"))
def validate_back_dated_application(self):
future_allocation = frappe.db.sql("""select name, from_date from `tabLeave Allocation`
@ -129,7 +128,7 @@ class LeaveApplication(Document):
block_dates = get_applicable_block_dates(self.from_date, self.to_date,
self.employee, self.company)
if block_dates and self.status == "Approved":
if block_dates and self.workflow_state == "Approved":
frappe.throw(_("You are not authorized to approve leaves on Block Dates"), LeaveDayBlockedError)
def validate_balance_leaves(self):
@ -144,7 +143,7 @@ class LeaveApplication(Document):
self.leave_balance = get_leave_balance_on(self.employee, self.leave_type, self.from_date,
consider_all_leaves_in_the_allocation_period=True)
if self.status != "Rejected" and self.leave_balance < self.total_leave_days:
if self.workflow_state != "Rejected" and self.leave_balance < self.total_leave_days:
if frappe.db.get_value("Leave Type", self.leave_type, "allow_negative"):
frappe.msgprint(_("Note: There is not enough leave balance for Leave Type {0}")
.format(self.leave_type))
@ -161,7 +160,7 @@ class LeaveApplication(Document):
select
name, leave_type, posting_date, from_date, to_date, total_leave_days, half_day_date
from `tabLeave Application`
where employee = %(employee)s and docstatus < 2 and status in ("Open", "Approved")
where employee = %(employee)s and docstatus < 2 and workflow_state in ("Open", "Approved")
and to_date >= %(from_date)s and from_date <= %(to_date)s
and name != %(name)s""", {
"employee": self.employee,
@ -182,16 +181,16 @@ class LeaveApplication(Document):
self.throw_overlap_error(d)
def throw_overlap_error(self, d):
msg = _("Employee {0} has already applied for {1} between {2} and {3}").format(self.employee,
msg = _("Employee {0} has already applied for {1} between {2} and {3} : ").format(self.employee,
d['leave_type'], formatdate(d['from_date']), formatdate(d['to_date'])) \
+ """ <br><b><a href="#Form/Leave Application/{0}">{0}</a></b>""".format(d["name"])
+ """ <b><a href="#Form/Leave Application/{0}">{0}</a></b>""".format(d["name"])
frappe.throw(msg, OverlapError)
def get_total_leaves_on_half_day(self):
leave_count_on_half_day_date = frappe.db.sql("""select count(name) from `tabLeave Application`
where employee = %(employee)s
and docstatus < 2
and status in ("Open", "Approved")
and workflow_state in ("Open", "Approved")
and half_day = 1
and half_day_date = %(half_day_date)s
and name != %(name)s""", {
@ -232,7 +231,7 @@ class LeaveApplication(Document):
frappe.throw(_("Attendance for employee {0} is already marked for this day").format(self.employee),
AttendanceAlreadyMarkedError)
def notify_employee(self, status):
def notify_employee(self, workflow_state):
employee = frappe.get_doc("Employee", self.employee)
if not employee.user_id:
return
@ -247,14 +246,14 @@ class LeaveApplication(Document):
message += "Leave Type: {leave_type}".format(leave_type=self.leave_type)+"<br>"
message += "From Date: {from_date}".format(from_date=self.from_date)+"<br>"
message += "To Date: {to_date}".format(to_date=self.to_date)+"<br>"
message += "Status: {status}".format(status=_(status))
message += "Status: {workflow_state}".format(workflow_state=_(workflow_state))
return message
self.notify({
# for post in messages
"message": _get_message(url=True),
"message_to": employee.user_id,
"subject": (_("Leave Application") + ": %s - %s") % (self.name, _(status))
"subject": (_("Leave Application") + ": %s - %s") % (self.name, _(workflow_state))
})
def notify_leave_approver(self):
@ -372,7 +371,7 @@ def get_approved_leaves_for_period(employee, leave_type, from_date, to_date):
select employee, leave_type, from_date, to_date, total_leave_days
from `tabLeave Application`
where employee=%(employee)s and leave_type=%(leave_type)s
and status="Approved" and docstatus=1
and workflow_state="Approved" and docstatus=1
and (from_date between %(from_date)s and %(to_date)s
or to_date between %(from_date)s and %(to_date)s
or (from_date < %(from_date)s and to_date > %(to_date)s))
@ -472,11 +471,11 @@ def add_department_leaves(events, start, end, employee, company):
def add_leaves(events, start, end, match_conditions=None):
query = """select name, from_date, to_date, employee_name, half_day,
status, employee, docstatus
workflow_state, employee, docstatus
from `tabLeave Application` where
from_date <= %(end)s and to_date >= %(start)s <= to_date
and docstatus < 2
and status!="Rejected" """
and workflow_state!="Rejected" """
if match_conditions:
query += match_conditions
@ -486,7 +485,7 @@ def add_leaves(events, start, end, match_conditions=None):
"doctype": "Leave Application",
"from_date": d.from_date,
"to_date": d.to_date,
"status": d.status,
"workflow_state": d.workflow_state,
"title": cstr(d.employee_name) + \
(d.half_day and _(" (Half Day)") or ""),
"docstatus": d.docstatus

View File

@ -7,7 +7,7 @@ frappe.views.calendar["Leave Application"] = {
"end": "to_date",
"id": "name",
"title": "title",
"status": "status",
"workflow_state": "workflow_state",
},
options: {
header: {

View File

@ -1,8 +1,7 @@
frappe.listview_settings['Leave Application'] = {
add_fields: ["status", "leave_type", "employee", "employee_name", "total_leave_days", "from_date", "to_date"],
filters:[["status","!=", "Rejected"]],
add_fields: ["workflow_state", "leave_type", "employee", "employee_name", "total_leave_days", "from_date", "to_date"],
get_indicator: function(doc) {
return [__(doc.status), frappe.utils.guess_colour(doc.status),
"status,=," + doc.status];
return [__(doc.workflow_state), frappe.utils.guess_colour(doc.workflow_state),
"workflow_state,=," + doc.workflow_state];
}
};

View File

@ -20,29 +20,24 @@ QUnit.test("Test: Leave application [HR]", function (assert) {
{follow_via_email: 0}
]);
},
() => frappe.timeout(1),
// check calculated total leave days
() => assert.ok(!cur_frm.doc.docstatus,
"leave application not submitted with status as open"),
() => cur_frm.set_value("status", "Approved"), // approve the application [as administrator]
() => frappe.timeout(0.5),
// save form
() => cur_frm.save(),
() => frappe.timeout(1),
() => cur_frm.savesubmit(),
() => frappe.timeout(1),
() => frappe.click_button('Actions'),
() => frappe.click_link('Approve'), // approve the application [as administrator]
() => frappe.click_button('Yes'),
() => frappe.timeout(1),
() => assert.ok(cur_frm.doc.docstatus,
"leave application submitted after approval"),
// check auto filled posting date [today]
() => assert.equal(today_date, cur_frm.doc.posting_date,
"posting date correctly set"),
() => frappe.set_route("List", "Leave Application", "List"),
() => frappe.timeout(1),
// check approved application in list
() => assert.deepEqual(["Test Employee 1", "Approved"], [cur_list.data[0].employee_name, cur_list.data[0].status],
"leave for correct employee is approved"),
// // check approved application in list
() => assert.deepEqual(["Test Employee 1", "Approved"], [cur_list.data[0].employee_name, cur_list.data[0].workflow_state]),
// "leave for correct employee is approved"),
() => done()
]);
});

View File

@ -103,7 +103,7 @@ class TestLeaveApplication(unittest.TestCase):
application = self.get_application(_test_records[0])
application.insert()
application.status = "Approved"
application.workflow_state = "Approved"
self.assertRaises(LeaveDayBlockedError, application.submit)
frappe.set_user("test1@example.com")
@ -257,7 +257,7 @@ class TestLeaveApplication(unittest.TestCase):
application.insert()
frappe.set_user("test@example.com")
application.status = "Approved"
application.workflow_state = "Approved"
# clear permlevel access cache on change user
del application._has_access_to
@ -297,7 +297,7 @@ class TestLeaveApplication(unittest.TestCase):
# submit leave application by Leave Approver
frappe.set_user("test1@example.com")
application.status = "Approved"
application.workflow_state = "Approved"
del application._has_access_to
application.submit()
self.assertEqual(frappe.db.get_value("Leave Application", application.name,
@ -339,7 +339,7 @@ class TestLeaveApplication(unittest.TestCase):
application.insert()
frappe.set_user("test1@example.com")
del application._has_access_to
application.status = "Approved"
application.workflow_state = "Approved"
from erpnext.hr.doctype.leave_application.leave_application import LeaveApproverIdentityError
self.assertRaises(LeaveApproverIdentityError, application.submit)
@ -364,7 +364,7 @@ class TestLeaveApplication(unittest.TestCase):
# change to valid leave approver and try to submit leave application
frappe.set_user("test2@example.com")
application.status = "Approved"
application.workflow_state = "Approved"
del application._has_access_to
application.submit()
self.assertEqual(frappe.db.get_value("Leave Application", application.name,

View File

@ -5,7 +5,9 @@ var in_progress = false;
frappe.ui.form.on('Payroll Entry', {
onload: function (frm) {
frm.doc.posting_date = frappe.datetime.nowdate();
if (!frm.doc.posting_date) {
frm.doc.posting_date = frappe.datetime.nowdate();
}
frm.toggle_reqd(['payroll_frequency'], !frm.doc.salary_slip_based_on_timesheet);
},

View File

@ -300,7 +300,7 @@ class SalarySlip(TransactionBase):
where t2.name = t1.leave_type
and t2.is_lwp = 1
and t1.docstatus = 1
and t1.status = 'Approved'
and t1.workflow_state = 'Approved'
and t1.employee = %(employee)s
and CASE WHEN t2.include_holiday != 1 THEN %(dt)s not in ('{0}') and %(dt)s between from_date and to_date
WHEN t2.include_holiday THEN %(dt)s between from_date and to_date

View File

@ -2,7 +2,7 @@
"allow_copy": 0,
"allow_guest_to_view": 0,
"allow_import": 0,
"allow_rename": 0,
"allow_rename": 1,
"autoname": "field:email",
"beta": 0,
"creation": "2017-09-19 16:20:27.510196",
@ -295,7 +295,7 @@
"issingle": 0,
"istable": 0,
"max_attachments": 0,
"modified": "2018-01-15 09:40:41.153561",
"modified": "2018-01-22 15:53:35.059946",
"modified_by": "Administrator",
"module": "Non Profit",
"name": "Donor",

View File

@ -2,7 +2,7 @@
"allow_copy": 0,
"allow_guest_to_view": 0,
"allow_import": 0,
"allow_rename": 0,
"allow_rename": 1,
"autoname": "field:email",
"beta": 0,
"creation": "2017-09-11 09:24:52.898356",
@ -140,7 +140,7 @@
"collapsible": 0,
"columns": 0,
"fieldname": "email",
"fieldtype": "Data",
"fieldtype": "Link",
"hidden": 0,
"ignore_user_permissions": 0,
"ignore_xss_filter": 0,
@ -151,6 +151,7 @@
"label": "Email",
"length": 0,
"no_copy": 0,
"options": "User",
"permlevel": 0,
"precision": "",
"print_hide": 0,
@ -325,7 +326,7 @@
"issingle": 0,
"istable": 0,
"max_attachments": 0,
"modified": "2018-01-15 09:38:41.878167",
"modified": "2018-01-22 15:58:46.507509",
"modified_by": "Administrator",
"module": "Non Profit",
"name": "Member",

View File

@ -2,7 +2,7 @@
"allow_copy": 0,
"allow_guest_to_view": 0,
"allow_import": 0,
"allow_rename": 0,
"allow_rename": 1,
"autoname": "field:email",
"beta": 0,
"creation": "2017-09-19 16:16:45.676019",
@ -506,7 +506,7 @@
"issingle": 0,
"istable": 0,
"max_attachments": 0,
"modified": "2018-01-15 09:40:25.229551",
"modified": "2018-01-22 15:53:46.480182",
"modified_by": "Administrator",
"module": "Non Profit",
"name": "Volunteer",

View File

@ -486,5 +486,7 @@ erpnext.patches.v10_0.update_asset_calculate_depreciation
erpnext.patches.v10_0.add_guardian_role_for_parent_portal
erpnext.patches.v10_0.set_numeric_ranges_in_template_if_blank
erpnext.patches.v10_0.update_reserved_qty_for_purchase_order
erpnext.patches.v10_0.fichier_des_ecritures_comptables_for_france
erpnext.patches.v10_0.update_assessment_plan
erpnext.patches.v10_0.update_assessment_result
erpnext.patches.v10_0.workflow_leave_application #2018-01-24

View File

@ -0,0 +1,11 @@
# Copyright (c) 2018, Frappe and Contributors
# License: GNU General Public License v3. See license.txt
from __future__ import unicode_literals
import frappe
from erpnext.setup.doctype.company.company import install_country_fixtures
def execute():
frappe.reload_doc('regional', 'report', 'fichier_des_ecritures_comptables_[fec]')
for d in frappe.get_all('Company', filters = {'country': 'France'}):
install_country_fixtures(d.name)

View File

@ -0,0 +1,12 @@
# Copyright (c) 2017, Frappe and Contributors
# License: GNU General Public License v3. See license.txt
from __future__ import unicode_literals
import frappe
from erpnext.setup.install import leave_application_workflow
def execute():
frappe.reload_doc("hr", "doctype", "leave_application")
frappe.reload_doc("workflow", "doctype", "workflow")
leave_application_workflow()
frappe.db.sql("""update `tabLeave Application` set workflow_state = status""")

View File

@ -19,17 +19,16 @@ frappe.ui.form.on("Communication", {
if(!in_list(["Lead", "Opportunity"], frm.doc.reference_doctype)) {
frm.add_custom_button(__("Lead"), () => {
frappe.confirm(__(confirm_msg, [__("Lead")]), () => {
frm.trigger('make_lead_from_communication');
frm.trigger('make_lead_from_communication');
})
}, "Make");
}, __("Make"));
frm.add_custom_button(__("Opportunity"), () => {
frappe.confirm(__(confirm_msg, [__("Opportunity")]), () => {
frm.trigger('make_opportunity_from_communication');
})
}, "Make");
}, __("Make"));
}
frm.page.set_inner_btn_group_as_primary(__("Make"));
},
make_lead_from_communication: (frm) => {

View File

@ -539,7 +539,8 @@ erpnext.TransactionController = erpnext.taxes_and_totals.extend({
// due_date is to be changed, payment terms template and/or payment schedule must
// be removed as due_date is automatically changed based on payment terms
if (this.frm.doc.due_date) {
if (this.frm.doc.payment_terms_template || this.frm.doc.payment_schedule.length) {
if (this.frm.doc.payment_terms_template ||
(this.frm.doc.payment_schedule && this.frm.doc.payment_schedule.length)) {
var message1 = "";
var message2 = "";
var final_message = "Please clear the ";
@ -648,6 +649,9 @@ erpnext.TransactionController = erpnext.taxes_and_totals.extend({
}
}).fail(() => this.frm.set_value('shipping_rule', ''));
}
else {
me.calculate_taxes_and_totals();
}
},
set_actual_charges_based_on_currency: function() {

View File

@ -314,7 +314,7 @@ erpnext.SerialNoBatchSelector = Class.extend({
fieldtype: 'Link', fieldname: 'serial_no_select', options: 'Serial No',
label: __('Select'),
get_query: function() {
return { filters: {item_code: me.item_code}};
return { filters: {item_code: me.item_code, warehouse: me.warehouse_details.name}};
},
onchange: function(e) {
if(this.in_local_change) return;

View File

View File

@ -0,0 +1,33 @@
# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors
# License: GNU General Public License v3. See license.txt
from __future__ import unicode_literals
import frappe
from frappe.custom.doctype.custom_field.custom_field import create_custom_fields
def setup(company=None, patch=True):
make_custom_fields()
add_custom_roles_for_reports()
def make_custom_fields():
custom_fields = {
'Company': [
dict(fieldname='siren_number', label='SIREN Number',
fieldtype='Data', insert_after='website')
]
}
create_custom_fields(custom_fields)
def add_custom_roles_for_reports():
report_name = 'Fichier des Ecritures Comptables [FEC]'
if not frappe.db.get_value('Custom Role', dict(report=report_name)):
frappe.get_doc(dict(
doctype='Custom Role',
report=report_name,
roles= [
dict(role='Accounts Manager')
]
)).insert()

View File

@ -0,0 +1,124 @@
// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors
// For license information, please see license.txt
/* eslint-disable */
frappe.query_reports["Fichier des Ecritures Comptables [FEC]"] = {
"filters": [{
"fieldname": "company",
"label": __("Company"),
"fieldtype": "Link",
"options": "Company",
"default": frappe.defaults.get_user_default("Company"),
"reqd": 1
},
{
"fieldname": "fiscal_year",
"label": __("Fiscal Year"),
"fieldtype": "Link",
"options": "Fiscal Year",
"default": frappe.defaults.get_user_default("fiscal_year"),
"reqd": 1,
"on_change": function(query_report) {
var fiscal_year = query_report.get_values().fiscal_year;
if (!fiscal_year) {
return;
}
frappe.model.with_doc("Fiscal Year", fiscal_year, function(r) {
var fy = frappe.model.get_doc("Fiscal Year", fiscal_year);
frappe.query_report_filters_by_name.from_date.set_input(fy.year_start_date);
frappe.query_report_filters_by_name.to_date.set_input(fy.year_end_date);
query_report.trigger_refresh();
});
}
}
],
onload: function(query_report) {
query_report.page.add_inner_button(__("Export"), function() {
var fiscal_year = query_report.get_values().fiscal_year;
var company = query_report.get_values().company;
frappe.call({
method: "frappe.client.get_value",
args: {
'doctype': "Company",
'fieldname': ['siren_number'],
'filters': {
'name': company
}
},
callback: function(data) {
var company_data = data.message.siren_number;
if (company_data === null || company_data === undefined) {
msgprint(__("Please register the SIREN number in the company information file"))
} else {
frappe.call({
method: "frappe.client.get_value",
args: {
'doctype': "Fiscal Year",
'fieldname': ['year_end_date'],
'filters': {
'name': fiscal_year
}
},
callback: function(data) {
var fy = data.message.year_end_date;
var title = company_data + "FEC" + moment(fy).format('YYYYMMDD');
var result = $.map(frappe.slickgrid_tools.get_view_data(query_report.columns, query_report.dataView),
function(row) {
return [row.splice(1)];
});
downloadify(result, null, title);
}
});
}
}
});
});
}
}
var downloadify = function(data, roles, title) {
if (roles && roles.length && !has_common(roles, roles)) {
msgprint(__("Export not allowed. You need {0} role to export.", [frappe.utils.comma_or(roles)]));
return;
}
var filename = title + ".csv";
var csv_data = to_tab_csv(data);
var a = document.createElement('a');
if ("download" in a) {
// Used Blob object, because it can handle large files
var blob_object = new Blob([csv_data], {
type: 'text/csv;charset=UTF-8'
});
a.href = URL.createObjectURL(blob_object);
a.download = filename;
} else {
// use old method
a.href = 'data:attachment/csv,' + encodeURIComponent(csv_data);
a.download = filename;
a.target = "_blank";
}
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
};
var to_tab_csv = function(data) {
var res = [];
$.each(data, function(i, row) {
row = $.map(row, function(col) {
return typeof(col) === "string" ? ('"' + col.replace(/"/g, '""') + '"') : col;
});
res.push(row.join("\t"));
});
return res.join("\n");
};

View File

@ -0,0 +1,19 @@
{
"add_total_row": 0,
"apply_user_permissions": 0,
"creation": "2018-01-10 15:10:16.650129",
"disabled": 0,
"docstatus": 0,
"doctype": "Report",
"idx": 0,
"is_standard": "Yes",
"modified": "2018-01-11 10:27:25.595485",
"modified_by": "Administrator",
"module": "Regional",
"name": "Fichier des Ecritures Comptables [FEC]",
"owner": "Administrator",
"ref_doctype": "GL Entry",
"report_name": "Fichier des Ecritures Comptables [FEC]",
"report_type": "Script Report",
"roles": []
}

View File

@ -0,0 +1,177 @@
# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and contributors
# For license information, please see license.txt
from __future__ import unicode_literals
import frappe
from frappe.utils import format_datetime
from frappe import _
def execute(filters=None):
account_details = {}
for acc in frappe.db.sql("""select name, is_group from tabAccount""", as_dict=1):
account_details.setdefault(acc.name, acc)
validate_filters(filters, account_details)
filters = set_account_currency(filters)
columns = get_columns(filters)
res = get_result(filters)
return columns, res
def validate_filters(filters, account_details):
if not filters.get('company'):
frappe.throw(_('{0} is mandatory').format(_('Company')))
if not filters.get('fiscal_year'):
frappe.throw(_('{0} is mandatory').format(_('Fiscal Year')))
def set_account_currency(filters):
filters["company_currency"] = frappe.db.get_value("Company", filters.company, "default_currency")
return filters
def get_columns(filters):
columns = [
_("JournalCode") + "::90", _("JournalLib") + "::90",
_("EcritureNum") + ":Dynamic Link:90", _("EcritureDate") + "::90",
_("CompteNum") + ":Link/Account:100", _("CompteLib") + ":Link/Account:200",
_("CompAuxNum") + "::90", _("CompAuxLib") + "::90",
_("PieceRef") + "::90", _("PieceDate") + "::90",
_("EcritureLib") + "::90", _("Debit") + "::90", _("Credit") + "::90",
_("EcritureLet") + "::90", _("DateLet") +
"::90", _("ValidDate") + "::90",
_("Montantdevise") + "::90", _("Idevise") + "::90"
]
return columns
def get_result(filters):
gl_entries = get_gl_entries(filters)
result = get_result_as_list(gl_entries, filters)
return result
def get_gl_entries(filters):
group_by_condition = "group by voucher_type, voucher_no, account" \
if filters.get("group_by_voucher") else "group by gl.name"
gl_entries = frappe.db.sql("""
select
gl.posting_date as GlPostDate, gl.account, gl.transaction_date,
sum(gl.debit) as debit, sum(gl.credit) as credit,
sum(gl.debit_in_account_currency) as debitCurr, sum(gl.credit_in_account_currency) as creditCurr,
gl.voucher_type, gl.voucher_no, gl.against_voucher_type,
gl.against_voucher, gl.account_currency, gl.against,
gl.party_type, gl.party, gl.is_opening,
inv.name as InvName, inv.posting_date as InvPostDate,
pur.name as PurName, inv.posting_date as PurPostDate,
jnl.cheque_no as JnlRef, jnl.posting_date as JnlPostDate,
pay.name as PayName, pay.posting_date as PayPostDate,
cus.customer_name, cus.name as cusName,
sup.supplier_name, sup.name as supName
from `tabGL Entry` gl
left join `tabSales Invoice` inv on gl.against_voucher = inv.name
left join `tabPurchase Invoice` pur on gl.against_voucher = pur.name
left join `tabJournal Entry` jnl on gl.against_voucher = jnl.name
left join `tabPayment Entry` pay on gl.against_voucher = pay.name
left join `tabCustomer` cus on gl.party = cus.customer_name
left join `tabSupplier` sup on gl.party = sup.supplier_name
where gl.company=%(company)s and gl.fiscal_year=%(fiscal_year)s
{group_by_condition}
order by GlPostDate, voucher_no"""
.format(group_by_condition=group_by_condition), filters, as_dict=1)
return gl_entries
def get_result_as_list(data, filters):
result = []
company_currency = frappe.db.get_value("Company", filters.company, "default_currency")
accounts = frappe.get_all("Account", filters={"Company": filters.company}, fields=["name", "account_number"])
for d in data:
JournalCode = d.get("voucher_no").split("-")[0]
EcritureNum = d.get("voucher_no").split("-")[-1]
EcritureDate = format_datetime(d.get("GlPostDate"), "yyyyMMdd")
account_number = [account.account_number for account in accounts if account.name == d.get("account")]
if account_number[0] is not None:
CompteNum = account_number[0]
else:
frappe.throw(_("Account number for account {0} is not available.<br> Please setup your Chart of Accounts correctly.").format(account.name))
if d.get("party_type") == "Customer":
CompAuxNum = d.get("cusName")
CompAuxLib = d.get("customer_name")
elif d.get("party_type") == "Supplier":
CompAuxNum = d.get("supName")
CompAuxLib = d.get("supplier_name")
else:
CompAuxNum = ""
CompAuxLib = ""
ValidDate = format_datetime(d.get("GlPostDate"), "yyyyMMdd")
if d.get("is_opening") == "Yes":
PieceRef = _("Opening Entry Journal")
PieceDate = format_datetime(d.get("GlPostDate"), "yyyyMMdd")
elif d.get("against_voucher_type") == "Sales Invoice":
PieceRef = _(d.get("InvName"))
PieceDate = format_datetime(d.get("InvPostDate"), "yyyyMMdd")
elif d.get("against_voucher_type") == "Purchase Invoice":
PieceRef = _(d.get("PurName"))
PieceDate = format_datetime(d.get("PurPostDate"), "yyyyMMdd")
elif d.get("against_voucher_type") == "Journal Entry":
PieceRef = _(d.get("JnlRef"))
PieceDate = format_datetime(d.get("JnlPostDate"), "yyyyMMdd")
elif d.get("against_voucher_type") == "Payment Entry":
PieceRef = _(d.get("PayName"))
PieceDate = format_datetime(d.get("PayPostDate"), "yyyyMMdd")
elif d.get("voucher_type") == "Period Closing Voucher":
PieceRef = _("Period Closing Journal")
PieceDate = format_datetime(d.get("GlPostDate"), "yyyyMMdd")
else:
PieceRef = _("No Reference")
PieceDate = format_datetime(d.get("GlPostDate"), "yyyyMMdd")
debit = '{:.2f}'.format(d.get("debit")).replace(".", ",")
credit = '{:.2f}'.format(d.get("credit")).replace(".", ",")
Idevise = d.get("account_currency")
if Idevise != company_currency:
Montantdevise = '{:.2f}'.format(d.get("debitCurr")).replace(".", ",") if d.get("debitCurr") != 0 else '{:.2f}'.format(d.get("creditCurr")).replace(".", ",")
else:
Montantdevise = '{:.2f}'.format(d.get("debit")).replace(".", ",") if d.get("debit") != 0 else '{:.2f}'.format(d.get("credit")).replace(".", ",")
row = [JournalCode, d.get("voucher_type"), EcritureNum, EcritureDate, CompteNum, d.get("account"), CompAuxNum, CompAuxLib,
PieceRef, PieceDate, d.get("voucher_no"), debit, credit, "", "", ValidDate, Montantdevise, Idevise]
result.append(row)
return result

View File

@ -50,7 +50,6 @@ erpnext.pos.PointOfSale = class PointOfSale {
this.set_online_status();
},
() => this.setup_company(),
() => this.make_new_invoice(),
() => {
frappe.dom.unfreeze();
@ -111,6 +110,7 @@ erpnext.pos.PointOfSale = class PointOfSale {
},
on_select_change: () => {
this.cart.numpad.set_inactive();
this.set_form_action();
},
get_item_details: (item_code) => {
return this.items.get(item_code);
@ -180,6 +180,7 @@ erpnext.pos.PointOfSale = class PointOfSale {
.then(() => {
// update cart
this.update_cart_data(item);
this.set_form_action();
});
}
return;
@ -278,13 +279,17 @@ erpnext.pos.PointOfSale = class PointOfSale {
}
submit_sales_invoice() {
var is_saved = 0;
if(!this.frm.doc.__islocal){
is_saved = 1;
}
frappe.confirm(__("Permanently Submit {0}?", [this.frm.doc.name]), () => {
frappe.call({
method: 'erpnext.selling.page.point_of_sale.point_of_sale.submit_invoice',
freeze: true,
args: {
doc: this.frm.doc
doc: this.frm.doc,
is_saved: is_saved
}
}).then(r => {
if(r.message) {
@ -499,19 +504,26 @@ erpnext.pos.PointOfSale = class PointOfSale {
}
set_form_action() {
if(this.frm.doc.docstatus !== 1) return;
if(this.frm.doc.docstatus == 1 || (this.frm.doc.allow_print_before_pay == 1&&this.frm.doc.items.length>0)){
this.page.set_secondary_action(__("Print"), async() => {
if(this.frm.doc.docstatus != 1 ){
await this.frm.save();
}
this.frm.print_preview.printit(true);
});
}
if(this.frm.doc.items.length == 0){
this.page.clear_secondary_action();
}
this.page.set_secondary_action(__("Print"), () => {
this.frm.print_preview.printit(true);
});
this.page.set_primary_action(__("New"), () => {
this.make_new_invoice();
});
this.page.add_menu_item(__("Email"), () => {
this.frm.email_doc();
});
if (this.frm.doc.docstatus == 1) {
this.page.set_primary_action(__("New"), () => {
this.make_new_invoice();
});
this.page.add_menu_item(__("Email"), () => {
this.frm.email_doc();
});
}
}
};

View File

@ -4,6 +4,7 @@
from __future__ import unicode_literals
import frappe, json
from frappe.utils.nestedset import get_root_of
from frappe.utils import cint
from erpnext.accounts.doctype.pos_profile.pos_profile import get_item_groups
@frappe.whitelist()
@ -88,11 +89,15 @@ def get_conditions(item_code, serial_no, batch_no, barcode):
return '%%%s%%'%(frappe.db.escape(item_code)), condition
@frappe.whitelist()
def submit_invoice(doc):
def submit_invoice(doc,is_saved):
if isinstance(doc, basestring):
args = json.loads(doc)
doc = frappe.new_doc('Sales Invoice')
if(cint(is_saved) == 1):
doc = frappe.get_doc('Sales Invoice',args["name"])
else:
doc = frappe.new_doc('Sales Invoice')
doc.update(args)
doc.run_method("set_missing_values")
doc.run_method("calculate_taxes_and_totals")
@ -123,4 +128,4 @@ def item_group_query(doctype, txt, searchfield, start, page_len, filters):
return frappe.db.sql(""" select distinct name from `tabItem Group`
where {condition} and (name like %(txt)s) limit {start}, {page_len}"""
.format(condition = cond, start=start, page_len= page_len),
{'txt': '%%%s%%' % txt})
{'txt': '%%%s%%' % txt})

View File

@ -34,6 +34,7 @@ class Company(Document):
self.validate_currency()
self.validate_coa_input()
self.validate_perpetual_inventory()
self.check_country_change()
def validate_abbr(self):
if not self.abbr:
@ -80,9 +81,12 @@ class Company(Document):
if not frappe.db.sql("""select name from tabAccount
where company=%s and docstatus<2 limit 1""", self.name):
if not frappe.local.flags.ignore_chart_of_accounts:
frappe.flags.country_change = True
self.create_default_accounts()
self.create_default_warehouses()
install_country_fixtures(self.name)
if frappe.flags.country_change:
install_country_fixtures(self.name)
if not frappe.db.get_value("Cost Center", {"is_group": 0, "company": self.name}):
self.create_default_cost_center()
@ -147,6 +151,13 @@ class Company(Document):
frappe.msgprint(_("Set default inventory account for perpetual inventory"),
alert=True, indicator='orange')
def check_country_change(self):
frappe.flags.country_change = False
if not self.get('__islocal') and \
self.country != frappe.db.get_value('Company', self.name, 'country'):
frappe.flags.country_change = True
def set_default_accounts(self):
self._set_default_account("default_cash_account", "Cash")
self._set_default_account("default_bank_account", "Bank")
@ -162,8 +173,14 @@ class Company(Document):
self._set_default_account("default_expense_account", "Cost of Goods Sold")
if not self.default_income_account:
self.db_set("default_income_account", frappe.db.get_value("Account",
{"account_name": _("Sales"), "company": self.name}))
income_account = frappe.db.get_value("Account",
{"account_name": _("Sales"), "company": self.name, "is_group": 0})
if not income_account:
income_account = frappe.db.get_value("Account",
{"account_name": _("Sales Account"), "company": self.name})
self.db_set("default_income_account", income_account)
if not self.default_payable_account:
self.db_set("default_payable_account", self.default_payable_account)

View File

@ -12,6 +12,7 @@ default_mail_footer = """<div style="padding: 7px; text-align: right; color: #88
<a style="color: #888" href="http://erpnext.org">ERPNext</a></div>"""
def after_install():
leave_application_workflow()
frappe.get_doc({'doctype': "Role", "role_name": "Analytics"}).insert()
set_single_defaults()
create_compact_item_print_custom_field()
@ -19,6 +20,58 @@ def after_install():
add_all_roles_to("Administrator")
frappe.db.commit()
def leave_application_workflow():
states = {'Approved': 'Success', 'Rejected': 'Danger', 'Open': 'Warning'}
for state, style in states.items():
if not frappe.db.exists("Workflow State", state):
frappe.get_doc({
'doctype': 'Workflow State',
'workflow_state_name': state,
'style': style
}).insert(ignore_permissions=True)
for action in ['Approve', 'Reject']:
if not frappe.db.exists("Workflow Action", action):
frappe.get_doc({
'doctype': 'Workflow Action',
'workflow_action_name': action
}).insert(ignore_permissions=True)
if not frappe.db.exists("Workflow", "Leave Approval"):
frappe.get_doc({
'doctype': 'Workflow',
'workflow_name': 'Leave Approval',
'document_type': 'Leave Application',
'is_active': 1,
'workflow_state_field': 'workflow_state',
'states': [{
"state": 'Open',
"doc_status": 0,
"allow_edit": 'Employee'
}, {
"state": 'Approved',
"doc_status": 1,
"allow_edit": 'Leave Approver'
}, {
"state": 'Rejected',
"doc_status": 1,
"allow_edit": 'Leave Approver'
}],
'transitions': [{
"state": 'Open',
"action": 'Approve',
"next_state": 'Approved',
"allowed": 'Leave Approver'
},
{
"state": 'Open',
"action": 'Reject',
"next_state": 'Rejected',
"allowed": 'Leave Approver'
}]
}).insert(ignore_permissions=True)
def check_setup_wizard_not_completed():
if frappe.db.get_default('desktop:home_page') == 'desktop':
print()

View File

@ -30,7 +30,7 @@ def get_notification_config():
"docstatus": ("<", 2)
},
"Payment Entry": {"docstatus": 0},
"Leave Application": {"status": "Open"},
"Leave Application": {"docstatus": 0},
"Expense Claim": {"approval_status": "Draft"},
"Job Applicant": {"status": "Open"},
"Delivery Note": {

View File

@ -106,6 +106,13 @@ frappe.ui.form.on("Item", {
frappe.set_route("Form", "Item Variant Settings");
}, __("View"));
}
const stock_exists = (frm.doc.__onload
&& frm.doc.__onload.stock_exists) ? 1 : 0;
['has_serial_no', 'has_batch_no'].forEach((fieldname) => {
frm.set_df_property(fieldname, 'read_only', stock_exists);
});
},
validate: function(frm){

View File

@ -1211,7 +1211,7 @@
"report_hide": 0,
"reqd": 0,
"search_index": 0,
"set_only_once": 1,
"set_only_once": 0,
"unique": 0
},
{
@ -1401,7 +1401,7 @@
"report_hide": 0,
"reqd": 0,
"search_index": 0,
"set_only_once": 1,
"set_only_once": 0,
"unique": 0
},
{
@ -3484,7 +3484,7 @@
"issingle": 0,
"istable": 0,
"max_attachments": 1,
"modified": "2018-01-08 21:53:55.895525",
"modified": "2018-01-23 12:21:16.641517",
"modified_by": "Administrator",
"module": "Stock",
"name": "Item",

View File

@ -72,6 +72,7 @@ frappe.ui.form.on('Stock Entry', {
mr_item.item_code = item.item_code;
mr_item.item_name = item.item_name;
mr_item.uom = item.uom;
mr_item.conversion_factor = item.conversion_factor;
mr_item.item_group = item.item_group;
mr_item.description = item.description;
mr_item.image = item.image;

View File

@ -150,7 +150,7 @@
"ignore_xss_filter": 0,
"in_filter": 0,
"in_global_search": 0,
"in_list_view": 0,
"in_list_view": 1,
"in_standard_filter": 0,
"label": "Disabled",
"length": 0,
@ -699,7 +699,7 @@
"issingle": 0,
"istable": 0,
"max_attachments": 0,
"modified": "2017-08-21 02:12:33.652689",
"modified": "2018-01-23 16:45:45.546649",
"modified_by": "Administrator",
"module": "Stock",
"name": "Warehouse",

View File

@ -85,18 +85,22 @@ def get_item_warehouse_projected_qty(items_to_consider):
from tabBin where item_code in ({0})
and (warehouse != "" and warehouse is not null)"""\
.format(", ".join(["%s"] * len(items_to_consider))), items_to_consider):
item_warehouse_projected_qty.setdefault(item_code, {})[warehouse] = flt(projected_qty)
if item_code not in item_warehouse_projected_qty:
item_warehouse_projected_qty.setdefault(item_code, {})
if warehouse not in item_warehouse_projected_qty.get(item_code):
item_warehouse_projected_qty[item_code][warehouse] = flt(projected_qty)
warehouse_doc = frappe.get_doc("Warehouse", warehouse)
while warehouse_doc.parent_warehouse:
if not item_warehouse_projected_qty.get(item_code, {}).get(warehouse_doc.parent_warehouse):
item_warehouse_projected_qty.setdefault(item_code, {})[warehouse_doc.parent_warehouse] = flt(projected_qty)
else:
item_warehouse_projected_qty[item_code][warehouse_doc.parent_warehouse] += flt(projected_qty)
warehouse_doc = frappe.get_doc("Warehouse", warehouse_doc.parent_warehouse)
return item_warehouse_projected_qty
def create_material_request(material_requests):

View File

@ -66,7 +66,6 @@ def get_data(filters, columns):
return item_price_qty_data
def get_item_price_qty_data(filters):
item_dicts = []
conditions = ""
if filters.get("item_code"):
conditions += "where a.item_code=%(item_code)s"
@ -78,11 +77,10 @@ def get_item_price_qty_data(filters):
{conditions}"""
.format(conditions=conditions), filters, as_dict=1)
price_list_names = ",".join(['"' + frappe.db.escape(item['price_list_name']) + '"'
for item in item_results])
price_list_names = list(set([frappe.db.escape(item.price_list_name) for item in item_results]))
buying_price_map = get_buying_price_map(price_list_names)
selling_price_map = get_selling_price_map(price_list_names)
buying_price_map = get_price_map(price_list_names, buying=1)
selling_price_map = get_price_map(price_list_names, selling=1)
result = []
if item_results:
@ -109,40 +107,31 @@ def get_item_price_qty_data(filters):
return result
def get_buying_price_map(price_list_names):
buying_price = frappe.db.sql("""
def get_price_map(price_list_names, buying=0, selling=0):
price_map = {}
if not price_list_names:
return price_map
rate_key = "Buying Rate" if buying else "Selling Rate"
price_list_key = "Buying Price List" if buying else "Selling Price List"
price_list_condition = " and buying=1" if buying else " and selling=1"
pricing_details = frappe.db.sql("""
select
name,price_list,price_list_rate
from
`tabItem Price`
where
name in ({price_list_names}) and buying=1
""".format(price_list_names=price_list_names), as_dict=1)
name in ({price_list_names}) {price_list_condition}
""".format(price_list_names=', '.join(['%s']*len(price_list_names)),
price_list_condition=price_list_condition), price_list_names, as_dict=1)
buying_price_map = {}
for d in buying_price:
for d in pricing_details:
name = d["name"]
buying_price_map[name] = {
"Buying Price List" :d["price_list"],
"Buying Rate" :d["price_list_rate"]
price_map[name] = {
price_list_key :d["price_list"],
rate_key :d["price_list_rate"]
}
return buying_price_map
def get_selling_price_map(price_list_names):
selling_price = frappe.db.sql("""
select
name,price_list,price_list_rate
from
`tabItem Price`
where
name in ({price_list_names}) and selling=1
""".format(price_list_names=price_list_names), as_dict=1)
selling_price_map = {}
for d in selling_price:
name = d["name"]
selling_price_map[name] = {
"Selling Price List" :d["price_list"],
"Selling Rate" :d["price_list_rate"]
}
return selling_price_map
return price_map

View File

@ -26,8 +26,7 @@ erpnext.support.WarrantyClaim = frappe.ui.form.Controller.extend({
if(!cur_frm.doc.__islocal &&
(cur_frm.doc.status=='Open' || cur_frm.doc.status == 'Work In Progress')) {
cur_frm.add_custom_button(__('Maintenance Visit'),
this.make_maintenance_visit, __("Make"))
cur_frm.page.set_inner_btn_group_as_primary(__("Make"));
this.make_maintenance_visit);
}
},

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,Lab Voorskrif
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,Sorteer volgens prys
,Delay Days,Vertragingsdae
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,Diensuitgawes
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},Serial Number: {0} is reeds in verkoopsfaktuur verwys: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},Serial Number: {0} is reeds in verkoopsfaktuur verwys: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,faktuur
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,Maak Retensie Voorraad Inskrywing
DocType: Purchase Invoice Item,Item Weight Details,Item Gewig Besonderhede
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,Ouer Detail docname
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","Verwysing: {0}, Item Kode: {1} en Kliënt: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,kg
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,Opening vir &#39;n werk.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},BOM is nie gespesifiseer vir subkontrakterende item {0} by ry {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},BOM is nie gespesifiseer vir subkontrakterende item {0} by ry {1}
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} Resultaat ingedien
DocType: Item Attribute,Increment,inkrement
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,Tydsverloop
@ -150,7 +150,7 @@ DocType: Patient,Married,Getroud
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},Nie toegelaat vir {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,Kry items van
DocType: Price List,Price Not UOM Dependant,Prys Nie UOM Afhanklik
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},Voorraad kan nie opgedateer word teen afleweringsnota {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},Voorraad kan nie opgedateer word teen afleweringsnota {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},Produk {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,Geen items gelys nie
DocType: Asset Repair,Error Description,Fout Beskrywing
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,versoen
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,kruideniersware
DocType: Quality Inspection Reading,Reading 1,Lees 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,Pensioenfondse
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,Volgende Depresiasie Datum kan nie voor Aankoopdatum wees nie
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,Volgende Depresiasie Datum kan nie voor Aankoopdatum wees nie
DocType: Crop,Perennial,meerjarige
DocType: Consultation,Consultation Date,Konsultasiedatum
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,Produklys en ontdekking vir ERPNext-gebruikers
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,Skryf Koste Sentrum af
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""",bv. &quot;Laerskool&quot; of &quot;Universiteit&quot;
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,Voorraadverslae
DocType: Warehouse,Warehouse Detail,Warehouse Detail
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},Kredietlimiet is gekruis vir kliënt {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},Kredietlimiet is gekruis vir kliënt {0} {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,Die Termyn Einddatum kan nie later wees as die Jaar Einde van die akademiese jaar waartoe die term gekoppel is nie (Akademiese Jaar ()). Korrigeer asseblief die datums en probeer weer.
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","&quot;Is Vaste Bate&quot; kan nie afgeskakel word nie, aangesien Bate-rekord teen die item bestaan"
DocType: Delivery Trip,Departure Time,Vertrektyd
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,Studentelog
DocType: Quality Inspection,Get Specification Details,Kry spesifikasiebesonderhede
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,Templates van verskaffer standpunte.
DocType: Lead,Interested,belangstellende
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,opening
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,opening
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},Van {0} tot {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,Kon nie belasting opstel nie
DocType: Item,Copy From Item Group,Kopieer vanaf itemgroep
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,Aflosdatum moet groter wees as Datum van aansluiting
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,Blare per jaar
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,Ry {0}: Kontroleer asseblief &#39;Is vooruit&#39; teen rekening {1} indien dit &#39;n voorskot is.
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},Pakhuis {0} behoort nie aan maatskappy nie {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},Pakhuis {0} behoort nie aan maatskappy nie {1}
DocType: Email Digest,Profit & Loss,Wins en verlies
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,liter
DocType: Task,Total Costing Amount (via Time Sheet),Totale kosteberekening (via tydblad)
@ -455,6 +455,7 @@ DocType: BOM Item,Rate & Amount,Tarief en Bedrag
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,Dit is gebaseer op transaksies teen hierdie maatskappy. Sien die tydlyn hieronder vir besonderhede
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Stel per e-pos in kennis van die skepping van outomatiese materiaalversoek
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,bestand
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Consultationt
DocType: Journal Entry,Multi Currency,Multi Geld
DocType: Opening Invoice Creation Tool,Invoice Type,Faktuur Tipe
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,Afleweringsnota
@ -526,7 +527,6 @@ DocType: Email Digest,Credit Balance,Kredietbalans
DocType: Employee,Widowed,weduwee
DocType: Request for Quotation,Request for Quotation,Versoek vir kwotasie
DocType: Healthcare Settings,Require Lab Test Approval,Vereis laboratoriumtoetsgoedkeuring
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Item Kode&gt; Itemgroep&gt; Handelsmerk
DocType: Salary Slip Timesheet,Working Hours,Werksure
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,Totaal Uitstaande
DocType: Naming Series,Change the starting / current sequence number of an existing series.,Verander die begin- / huidige volgordenommer van &#39;n bestaande reeks.
@ -555,7 +555,7 @@ DocType: Subscription,Yearly,jaarlikse
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,Voer asseblief Koste Sentrum in
DocType: Drug Prescription,Dosage,dosis
DocType: Journal Entry Account,Sales Order,Verkoopsbestelling
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,Gem. Verkoopprys
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,Gem. Verkoopprys
DocType: Assessment Plan,Examiner Name,Naam van eksaminator
DocType: Lab Test Template,No Result,Geen resultaat
DocType: Purchase Invoice Item,Quantity and Rate,Hoeveelheid en Tarief
@ -602,6 +602,7 @@ DocType: Employee,Health Concerns,Gesondheid Kommer
DocType: Payroll Entry,Select Payroll Period,Kies Payroll Periode
DocType: Purchase Invoice,Unpaid,onbetaalde
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,Voorbehou vir verkoop
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Installeer asseblief die Naam van Werknemers in Menslike Hulpbronne&gt; MH-instellings
DocType: Packing Slip,From Package No.,Uit pakketnr.
DocType: Item Attribute,To Range,Om te bereik
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,Sekuriteite en deposito&#39;s
@ -626,11 +627,11 @@ DocType: Pricing Rule,Valid Upto,Geldige Upto
DocType: Training Event,Workshop,werkswinkel
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,Waarsku aankoop bestellings
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,Lys &#39;n paar van jou kliënte. Hulle kan organisasies of individue wees.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,Genoeg Onderdele om te Bou
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,Genoeg Onderdele om te Bou
DocType: POS Profile User,POS Profile User,POS Profiel gebruiker
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,Direkte inkomste
DocType: Patient Appointment,Date TIme,Datum Tyd
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","Kan nie filter op grond van rekening, indien gegroepeer volgens rekening nie"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","Kan nie filter op grond van rekening, indien gegroepeer volgens rekening nie"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,Administratiewe Beampte
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,Opstel van maatskappy en belasting
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,Kies asseblief Kursus
@ -640,7 +641,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,Verskilrekening
DocType: Purchase Invoice,Supplier GSTIN,Verskaffer GSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,Kan nie die taak toemaak nie aangesien die afhanklike taak {0} nie gesluit is nie.
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,Vul asseblief die pakhuis in vir watter materiaalversoek opgeneem sal word
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,Vul asseblief die pakhuis in vir watter materiaalversoek opgeneem sal word
DocType: Production Order,Additional Operating Cost,Bykomende bedryfskoste
DocType: Lab Test Template,Lab Routine,Lab Roetine
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,skoonheidsmiddels
@ -806,7 +807,7 @@ DocType: Employee,Passport Number,Paspoortnommer
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Verhouding met Guardian2
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,Bestuurder
DocType: Payment Entry,Payment From / To,Betaling Van / Tot
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Nuwe kredietlimiet is minder as die huidige uitstaande bedrag vir die kliënt. Kredietlimiet moet ten minste {0} wees
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Nuwe kredietlimiet is minder as die huidige uitstaande bedrag vir die kliënt. Kredietlimiet moet ten minste {0} wees
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},Stel asseblief rekening in pakhuis {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,&#39;Gebaseer op&#39; en &#39;Groepeer&#39; kan nie dieselfde wees nie
DocType: Sales Person,Sales Person Targets,Verkope persoon teikens
@ -940,7 +941,7 @@ DocType: Delivery Note,Customer's Purchase Order No,Kliënt se bestellingnommer
DocType: Budget,Budget Against,Begroting teen
DocType: Employee,Cell Number,Selfoonnommer
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,Daar is geen werknemer vir die gegewe kriteria nie. Kontroleer dat Salarisstrokies nie reeds geskep is nie.
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,Outomatiese Materiaal Versoeke Genereer
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,Outomatiese Materiaal Versoeke Genereer
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,verloor
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,U kan nie huidige voucher insleutel in die kolom &quot;Teen Journal Entry &#39;nie
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,Gereserveer vir vervaardiging
@ -948,7 +949,7 @@ DocType: Soil Texture,Sand,sand
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,energie
DocType: Opportunity,Opportunity From,Geleentheid Van
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,Maandelikse salarisverklaring.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Ry {0}: {1} Serial nommers benodig vir item {2}. U het {3} verskaf.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Ry {0}: {1} Serial nommers benodig vir item {2}. U het {3} verskaf.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,Kies asseblief &#39;n tabel
DocType: BOM,Website Specifications,Webwerf spesifikasies
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} is &#39;n ongeldige e-posadres in &#39;Ontvangers&#39;
@ -1015,7 +1016,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,Aanhaling gevra
DocType: Vital Signs,Heart Rate / Pulse,Hartslag / Pols
DocType: Company,Default Bank Account,Verstekbankrekening
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","Om te filter gebaseer op Party, kies Party Type eerste"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","Om te filter gebaseer op Party, kies Party Type eerste"
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},&#39;Op Voorraad Voorraad&#39; kan nie nagegaan word nie omdat items nie afgelewer word via {0}
DocType: Vehicle,Acquisition Date,Verkrygingsdatum
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,Nos
@ -1039,7 +1040,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),Laai jou briefkop op (Hou dit webvriendelik as 900px by 100px)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: Rekening {2} kan nie &#39;n Groep wees nie
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,Itemreeks {idx}: {doctype} {docname} bestaan nie in die boks &#39;{doctype}&#39; tabel nie
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,Rooster {0} is reeds voltooi of gekanselleer
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,Rooster {0} is reeds voltooi of gekanselleer
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,Geen take nie
DocType: Item Variant Settings,Copy Fields to Variant,Kopieer velde na variant
DocType: Asset,Opening Accumulated Depreciation,Opening Opgehoopte Waardevermindering
@ -1151,9 +1152,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,Beplan materiaal vir sub-gemeentes
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,Verkope Vennote en Territory
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,BOM {0} moet aktief wees
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),Sluiting (Opening + Totaal)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),Sluiting (Opening + Totaal)
DocType: Journal Entry,Depreciation Entry,Waardevermindering Inskrywing
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Kies asseblief die dokument tipe eerste
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,Druk in rekeninggeld
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Kanselleer materiaalbesoeke {0} voordat u hierdie onderhoudsbesoek kanselleer
DocType: Crop Cycle,ISO 8016 standard,ISO 8016 standaard
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},Reeksnommer {0} behoort nie aan item {1} nie
@ -1179,7 +1181,7 @@ DocType: Purchase Receipt,Range,verskeidenheid
DocType: Supplier,Default Payable Accounts,Verstekbetaalbare rekeninge
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,Werknemer {0} is nie aktief of bestaan nie
DocType: Fee Structure,Components,komponente
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},Gee asb. Bate-kategorie in Item {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},Gee asb. Bate-kategorie in Item {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,Itemvarianante {0} opgedateer
DocType: Quality Inspection Reading,Reading 6,Lees 6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1231,6 +1233,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,maatskappynaam
DocType: SMS Center,Total Message(s),Totale boodskap (s)
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,Kies Item vir Oordrag
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Stel Naming Series vir {0} via Setup&gt; Settings&gt; Naming Series
DocType: Purchase Invoice,Additional Discount Percentage,Bykomende kortingspersentasie
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,Bekyk &#39;n lys van al die hulpvideo&#39;s
DocType: Agriculture Analysis Criteria,Soil Texture,Grondstruktuur
@ -1258,7 +1261,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,BOM Webwerf Item
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,Laai jou briefhoof en logo op. (jy kan dit later wysig).
DocType: Timesheet Detail,Bill,Bill
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,Volgende Depresiasie Datum word ingeskryf as vervaldatum
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,Volgende Depresiasie Datum word ingeskryf as vervaldatum
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,wit
DocType: SMS Center,All Lead (Open),Alle Lood (Oop)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),Ry {0}: Aantal nie beskikbaar vir {4} in pakhuis {1} by die plasing van die inskrywing ({2} {3})
@ -1274,7 +1277,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,Volgende kontak datum
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,Opening Aantal
DocType: Healthcare Settings,Appointment Reminder,Aanstelling Herinnering
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,Voer asseblief die rekening vir Veranderingsbedrag in
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,Voer asseblief die rekening vir Veranderingsbedrag in
DocType: Program Enrollment Tool Student,Student Batch Name,Studentejoernaal
DocType: Consultation,Doctor,dokter
DocType: Holiday List,Holiday List Name,Vakansie Lys Naam
@ -1290,6 +1293,7 @@ DocType: Patient,Patient Relation,Pasiëntverwantskap
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,Verlof toekenningsgereedskap
DocType: Item,Hub Category to Publish,Hub Kategorie om te publiseer
DocType: Leave Block List,Leave Block List Dates,Los blokkie lys datums
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Stel asseblief nommersreeks vir Bywoning via Setup&gt; Numbering Series
DocType: Sales Invoice,Billing Address GSTIN,Rekeningadres GSTIN
DocType: Assessment Plan,Evaluate,evalueer
DocType: Workstation,Net Hour Rate,Netto Uurtarief
@ -1323,7 +1327,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,Aankoopontvangste item
DocType: Purchase Receipt,PREC-RET-,Prec-RET-
DocType: POS Profile,Sales Invoice Payment,Verkope faktuur betaling
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,Gereserveerde pakhuis in verkoopsbestelling / voltooide goedere pakhuis
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,Verkoopbedrag
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,Verkoopbedrag
DocType: Repayment Schedule,Interest Amount,Rente Bedrag
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,U is die koste-erkenning vir hierdie rekord. Dateer asseblief die &#39;Status&#39; op en stoor
DocType: Serial No,Creation Document No,Skeppingsdokument nr
@ -1414,7 +1418,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,Openingsrekeningkundige balans
,GST Sales Register,GST Sales Register
DocType: Sales Invoice Advance,Sales Invoice Advance,Verkope Faktuur Vooruit
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,Niks om te versoek nie
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,Niks om te versoek nie
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,Kies jou domeine
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},Nog &#39;n begroting rekord &#39;{0}&#39; bestaan reeds teen {1} &#39;{2}&#39; vir fiskale jaar {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,Velds sal eers oor kopieë gekopieer word.
@ -1424,11 +1428,11 @@ DocType: Cheque Print Template,Payer Settings,Betaler instellings
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","Dit sal aangeheg word aan die itemkode van die variant. As u afkorting byvoorbeeld &quot;SM&quot; is en die itemkode &quot;T-SHIRT&quot; is, sal die itemkode van die variant &quot;T-SHIRT-SM&quot; wees."
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,Netto betaal (in woorde) sal sigbaar wees sodra jy die Salary Slip stoor.
DocType: Purchase Invoice,Is Return,Is Terug
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,versigtigheid
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,versigtigheid
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,Terug / Debiet Nota
DocType: Price List Country,Price List Country,Pryslys Land
DocType: Item,UOMs,UOMs
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} geldige reeksnommers vir item {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} geldige reeksnommers vir item {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Item Kode kan nie vir Serienommer verander word nie.
DocType: Purchase Invoice Item,UOM Conversion Factor,UOM Gesprekfaktor
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,Voer asseblief die Kode in om groepsnommer te kry
@ -1532,7 +1536,7 @@ DocType: Journal Entry,Get Outstanding Invoices,Kry uitstaande fakture
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,Verkoopsbestelling {0} is nie geldig nie
DocType: Supplier Scorecard,Warn for new Request for Quotations,Waarsku vir nuwe versoek vir kwotasies
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,Aankooporders help om jou aankope te beplan en op te volg
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","Jammer, maatskappye kan nie saamgevoeg word nie"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","Jammer, maatskappye kan nie saamgevoeg word nie"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,Lab Test Voorskrifte
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",Die totale uitgawe / oordraghoeveelheid {0} in materiaalversoek {1} \ kan nie groter wees as versoekte hoeveelheid {2} vir item {3}
@ -1570,7 +1574,6 @@ DocType: Vehicle,Fuel UOM,Brandstof UOM
DocType: Warehouse,Warehouse Contact Info,Warehouse Kontak Info
DocType: Payment Entry,Write Off Difference Amount,Skryf af Verskilbedrag
DocType: Volunteer,Volunteer Name,Vrywilliger Naam
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Installeer asseblief die Instrukteur Naming Stelsel in Onderwys&gt; Onderwys instellings
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0}: Werknemer e-pos nie gevind nie, vandaar e-pos nie gestuur nie"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},Versending reël nie van toepassing op land {0}
DocType: Item,Foreign Trade Details,Buitelandse Handel Besonderhede
@ -1582,7 +1585,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,Groeprolnommer
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry",Vir {0} kan slegs kredietrekeninge gekoppel word teen &#39;n ander debietinskrywing
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,Totaal van alle taakgewigte moet wees: 1. Pas asseblief die gewigte van alle projektaakse dienooreenkomstig aan
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,Afleweringsnotasie {0} is nie ingedien nie
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,Afleweringsnotasie {0} is nie ingedien nie
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,Item {0} moet &#39;n Subkontrakteerde Item wees
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,Kapitaal Uitrustings
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Prysreël word eers gekies gebaseer op &#39;Apply On&#39; -veld, wat Item, Itemgroep of Handelsnaam kan wees."
@ -1607,7 +1610,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,Kinderopslag bestaan vir hierdie pakhuis. U kan hierdie pakhuis nie uitvee nie.
DocType: Item,Website Item Groups,Webtuiste Item Groepe
DocType: Purchase Invoice,Total (Company Currency),Totaal (Maatskappy Geld)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,Serienommer {0} het meer as een keer ingeskryf
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,Serienommer {0} het meer as een keer ingeskryf
DocType: Journal Entry,Journal Entry,Joernaalinskrywing
DocType: Expense Claim Advance,Unclaimed amount,Onopgeëiste bedrag
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} items aan die gang
@ -1703,7 +1706,7 @@ DocType: Email Digest,For Company,Vir Maatskappy
apps/erpnext/erpnext/config/support.py +17,Communication log.,Kommunikasie-logboek.
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.","Versoek vir kwotasie is gedeaktiveer om toegang te verkry tot die portaal, vir meer tjekpoortinstellings."
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,Verskaffer Scorecard Scoring Variable
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,Koopbedrag
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,Koopbedrag
DocType: Sales Invoice,Shipping Address Name,Posadres
DocType: Material Request,Terms and Conditions Content,Terme en voorwaardes Inhoud
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,Daar was foute om Kursusskedule te skep
@ -1965,7 +1968,7 @@ DocType: Expense Claim,Total Amount Reimbursed,Totale Bedrag vergoed
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,Dit is gebaseer op logs teen hierdie Voertuig. Sien die tydlyn hieronder vir besonderhede
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},Teen Verskafferfaktuur {0} gedateer {1}
DocType: Customer,Default Price List,Standaard pryslys
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,Bate Beweging rekord {0} geskep
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,Bate Beweging rekord {0} geskep
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,U kan nie fiskale jaar {0} uitvee nie. Fiskale jaar {0} word as verstek in Globale instellings gestel
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,Daar bestaan reeds &#39;n kliënt met dieselfde naam
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,Dit sal salarisstrokies indien en toevallingsjoernaalinskrywing skep. Wil jy voortgaan?
@ -1979,6 +1982,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,pryse
DocType: Quotation,Term Details,Termyn Besonderhede
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,Kan nie meer as {0} studente vir hierdie studente groep inskryf nie.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),Totaal (Sonder Belasting)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,Loodtelling
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} moet groter as 0 wees
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,Voorraad beskikbaar
@ -1997,7 +2001,6 @@ DocType: Lab Test,Technician Name,Tegnikus Naam
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,Ontkoppel betaling met kansellasie van faktuur
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},Huidige Odometer lees ingevoer moet groter wees as die aanvanklike voertuig odometer {0}
DocType: Restaurant Reservation,No Show,Geen vertoning
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Stel Naming Series vir {0} via Setup&gt; Settings&gt; Naming Series
DocType: Shipping Rule Country,Shipping Rule Country,Poslys Land
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,Verlof en Bywoning
DocType: Maintenance Visit,Partially Completed,Gedeeltelik voltooi
@ -2088,7 +2091,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,Studentegroepinstrukteur
DocType: Grant Application,Assessment Mark (Out of 10),Assesseringspunt (uit 10)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 Mobile No
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,Main
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,Main
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,Variant
DocType: Naming Series,Set prefix for numbering series on your transactions,Stel voorvoegsel vir nommering van reekse op u transaksies
DocType: Employee Attendance Tool,Employees HTML,Werknemers HTML
@ -2136,7 +2139,7 @@ DocType: Crop,Crop Spacing,Crop Spacing
DocType: Course,Course Abbreviation,Kursus Afkorting
DocType: Student Leave Application,Student Leave Application,Studenteverlof Aansoek
DocType: Item,Will also apply for variants,Sal ook aansoek doen vir variante
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","Bate kan nie gekanselleer word nie, want dit is reeds {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","Bate kan nie gekanselleer word nie, want dit is reeds {0}"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},Werknemer {0} op Halwe dag op {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},Totale werksure moet nie groter wees nie as maksimum werksure {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,op
@ -2320,9 +2323,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),Werklike Einddatum (via Tydblad)
DocType: Soil Texture,Soil Type,Grondsoort
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},Bedrag {0} {1} teen {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,Nuwe boodskap
,Quotation Trends,Aanhalingstendense
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},Itemgroep nie genoem in itemmeester vir item {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,Debiet Vir rekening moet &#39;n Ontvangbare rekening wees
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,Debiet Vir rekening moet &#39;n Ontvangbare rekening wees
DocType: Shipping Rule,Shipping Amount,Posgeld
DocType: Supplier Scorecard Period,Period Score,Periode telling
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,Voeg kliënte by
@ -2333,7 +2337,7 @@ DocType: Purchase Order,Delivered,afgelewer
,Vehicle Expenses,Voertuiguitgawes
DocType: Serial No,Invoice Details,Faktuur besonderhede
DocType: Grant Application,Show on Website,Wys op die webwerf
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},Verwagte waarde na nuttige lewensduur moet groter as of gelyk wees aan {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},Verwagte waarde na nuttige lewensduur moet groter as of gelyk wees aan {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,Begin aan
DocType: Hub Category,Hub Category,Hub Kategorie
DocType: Purchase Invoice,SEZ,Sez
@ -2364,7 +2368,7 @@ DocType: Patient,Patient Details,Pasiëntbesonderhede
DocType: Patient,B Positive,B Positief
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","Ry # {0}: Hoeveelheid moet 1 wees, aangesien item &#39;n vaste bate is. Gebruik asseblief aparte ry vir veelvuldige aantal."
DocType: Leave Block List Allow,Leave Block List Allow,Laat blokblokkering toe
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,Abbr kan nie leeg of spasie wees nie
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,Abbr kan nie leeg of spasie wees nie
DocType: Patient Medical Record,Patient Medical Record,Pasiënt Mediese Rekord
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,Groep na Nie-Groep
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,Sport
@ -2414,6 +2418,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,Kan nie &#39;n RFQ vir geen kwotasie opstel nie
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,Totale aftrekking
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,Kies &#39;n rekening om in rekeningmunt te druk
,Production Analytics,Produksie Analytics
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,Dit is gebaseer op transaksies teen hierdie pasiënt. Sien die tydlyn hieronder vir besonderhede
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,Koste opgedateer
@ -2468,7 +2473,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,Item
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,Kies Maatskappy ...
DocType: Leave Control Panel,Leave blank if considered for all departments,Los leeg indien oorweeg vir alle departemente
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","Soorte indiensneming (permanent, kontrak, intern ens.)."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} is verpligtend vir item {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} is verpligtend vir item {1}
DocType: Payroll Entry,Fortnightly,tweeweeklikse
DocType: Currency Exchange,From Currency,Van Geld
DocType: Vital Signs,Weight (In Kilogram),Gewig (In Kilogram)
@ -2544,7 +2549,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),Basiese Bedrag (Maatskap
DocType: Student,Guardians,voogde
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,Pryse sal nie getoon word indien Pryslys nie vasgestel is nie
DocType: Stock Entry,Total Incoming Value,Totale Inkomende Waarde
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,Debiet na is nodig
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,Debiet na is nodig
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Tydskrifte help om tred te hou met tyd, koste en faktuur vir aktiwiteite wat deur u span gedoen is"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,Aankooppryslys
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,Templates van verskaffers telkaart veranderlikes.
@ -2644,7 +2649,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,Slegs vir verwysing.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},Geneesheer {0} nie beskikbaar op {1}
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,Kies lotnommer
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},Ongeldige {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},Ongeldige {0}: {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Fee Validity,Reference Inv,Verwysings Inv
@ -2681,8 +2686,8 @@ DocType: Fees,Send Payment Request,Stuur betalingsversoek
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Spesifiseer die bedrywighede, bedryfskoste en gee &#39;n unieke operasie nee vir u bedrywighede."
DocType: Water Analysis,Origin,oorsprong
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,Hierdie dokument is oor limiet deur {0} {1} vir item {4}. Maak jy &#39;n ander {3} teen dieselfde {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,Stel asseblief herhaaldelik na die stoor
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,Kies verander bedrag rekening
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,Stel asseblief herhaaldelik na die stoor
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,Kies verander bedrag rekening
DocType: Purchase Invoice,Price List Currency,Pryslys Geld
DocType: Naming Series,User must always select,Gebruiker moet altyd kies
DocType: Stock Settings,Allow Negative Stock,Laat negatiewe voorraad toe
@ -2738,7 +2743,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,Onderhoudskedul
DocType: Supplier Scorecard,Warn for new Purchase Orders,Waarsku vir nuwe aankoopbestellings
DocType: Quality Inspection Reading,Reading 9,Lees 9
DocType: Supplier,Is Frozen,Is bevrore
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,Groepknooppakhuis mag nie vir transaksies kies nie
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,Groepknooppakhuis mag nie vir transaksies kies nie
DocType: Buying Settings,Buying Settings,Koop instellings
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,BOM nommer vir &#39;n afgeronde goeie item
DocType: Upload Attendance,Attendance To Date,Bywoning tot datum
@ -2752,6 +2757,7 @@ DocType: Offer Letter,Accepted,aanvaar
DocType: Grant Application,Organization,organisasie
DocType: BOM Update Tool,BOM Update Tool,BOM Update Tool
DocType: SG Creation Tool Course,Student Group Name,Student Groep Naam
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,Wys ontplofte aansig
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,Fooie skep
apps/erpnext/erpnext/setup/doctype/company/company.js +91,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.,Maak asseblief seker dat u regtig alle transaksies vir hierdie maatskappy wil verwyder. Jou meesterdata sal bly soos dit is. Hierdie handeling kan nie ongedaan gemaak word nie.
DocType: Room,Room Number,Kamer nommer
@ -2762,7 +2768,7 @@ DocType: Journal Entry Account,Payroll Entry,Betaalstaatinskrywing
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,Maak belasting sjabloon
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,Gebruikers Forum
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,Grondstowwe kan nie leeg wees nie.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","Kon nie voorraad opdateer nie, faktuur bevat druppelversending item."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","Kon nie voorraad opdateer nie, faktuur bevat druppelversending item."
DocType: Lab Test Sample,Lab Test Sample,Lab Test Voorbeeld
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,Vinnige Blaar Inskrywing
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,U kan nie koers verander as BOM enige item genoem het nie
@ -2833,7 +2839,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,dollar
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,Maak faktuur
DocType: Selling Settings,Auto close Opportunity after 15 days,Vakansie sluit geleentheid na 15 dae
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Aankoopbestellings word nie toegelaat vir {0} weens &#39;n telkaart wat staan van {1}.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Aankoopbestellings word nie toegelaat vir {0} weens &#39;n telkaart wat staan van {1}.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,Eindejaar
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Kwotasie / Lood%
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,Kontrak Einddatum moet groter wees as Datum van aansluiting
@ -2924,7 +2930,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90-Bo
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,Ry # {0}: Tydskrifinskrywings {1} het nie rekening {2} of alreeds teen &#39;n ander geskenkbewys aangepas nie
DocType: Supplier Scorecard Criteria,Criteria Weight,Kriteria Gewig
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Verskaffer&gt; Verskaffer Tipe
DocType: Buying Settings,Default Buying Price List,Verstek kooppryslys
DocType: Payroll Entry,Salary Slip Based on Timesheet,Salarisstrokie gebaseer op tydsopgawe
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,Koopkoers
@ -3012,7 +3017,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,Volg Leiers volgens Nywerheidstipe.
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,Gaan na Letterheads
DocType: Item Supplier,Item Supplier,Item Verskaffer
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,Voer asseblief die kode in om groepsnommer te kry
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,Voer asseblief die kode in om groepsnommer te kry
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},Kies asseblief &#39;n waarde vir {0} kwotasie_ tot {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,Alle adresse.
DocType: Company,Stock Settings,Voorraadinstellings
@ -3188,6 +3193,7 @@ DocType: Employee Loan,Loan Details,Leningsbesonderhede
DocType: Company,Default Inventory Account,Verstek voorraad rekening
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,Ry {0}: Voltooide hoeveelheid moet groter as nul wees.
DocType: Antibiotic,Antibiotic Name,Antibiotiese Naam
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Item Kode&gt; Itemgroep&gt; Handelsmerk
DocType: Purchase Invoice,Apply Additional Discount On,Pas bykomende afslag aan
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,Kies Tipe ...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,&#39;N Skakel na al die grondeenhede waarin die Gewas groei
@ -3381,6 +3387,7 @@ DocType: Guardian Student,Guardian Student,Voog Student
DocType: Supplier,Credit Limit,Krediet limiet
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,Gem. Verkooppryslys
DocType: Production Plan Sales Order,Salse Order Date,Salse Besteldatum
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Verskaffer&gt; Verskaffer Tipe
DocType: Salary Component,Salary Component,Salaris Komponent
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,Betalingsinskrywings {0} is nie gekoppel nie
DocType: GL Entry,Voucher No,Voucher Nr
@ -3450,7 +3457,7 @@ DocType: Landed Cost Item,Receipt Document,Kwitansie Dokument
DocType: Production Planning Tool,Create Material Requests,Skep Materiaal Versoeke
DocType: Employee Education,School/University,Skool / Universiteit
DocType: Payment Request,Reference Details,Verwysingsbesonderhede
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,Verwagte Waarde Na Nuttige Lewe moet minder wees as Bruto Aankoopprys
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,Verwagte Waarde Na Nuttige Lewe moet minder wees as Bruto Aankoopprys
DocType: Sales Invoice Item,Available Qty at Warehouse,Beskikbare hoeveelheid by pakhuis
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,Gefactureerde bedrag
DocType: Asset,Double Declining Balance,Dubbele dalende saldo
@ -3462,7 +3469,7 @@ DocType: Attendance,On Leave,Op verlof
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,Kry opdaterings
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: Rekening {2} behoort nie aan Maatskappy {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,Kies ten minste een waarde uit elk van die eienskappe.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,Materiaalversoek {0} word gekanselleer of gestop
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,Materiaalversoek {0} word gekanselleer of gestop
apps/erpnext/erpnext/config/hr.py +310,Leave Management,Verlofbestuur
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,Groep per rekening
DocType: Sales Order,Fully Delivered,Volledig afgelewer
@ -3472,14 +3479,13 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +179,Source and ta
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +243,"Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry","Verskilrekening moet &#39;n Bate / Aanspreeklikheidsrekening wees, aangesien hierdie Voorraadversoening &#39;n Openingsinskrywing is"
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,Gaan na Programme
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},Ry {0} # Toegewysde hoeveelheid {1} kan nie groter wees as onopgeëiste bedrag nie {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Stel asseblief nommersreeks vir Bywoning via Setup&gt; Numbering Series
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},Aankoopordernommer benodig vir item {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,Produksie bestelling nie geskep nie
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',&#39;Vanaf datum&#39; moet na &#39;tot datum&#39; wees
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},Kan nie status verander as student {0} is gekoppel aan studenteprogram nie {1}
DocType: Asset,Fully Depreciated,Ten volle gedepresieer
,Stock Projected Qty,Voorraad Geprojekteerde Aantal
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},Kliënt {0} behoort nie aan projek nie {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},Kliënt {0} behoort nie aan projek nie {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,Gemerkte Bywoning HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers","Aanhalings is voorstelle, bod wat jy aan jou kliënte gestuur het"
DocType: Sales Order,Customer's Purchase Order,Kliënt se Aankoopbestelling
@ -3563,7 +3569,7 @@ DocType: Salary Slip,Hour Rate,Uurtarief
DocType: Stock Settings,Item Naming By,Item Naming By
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},&#39;N Ander periode sluitingsinskrywing {0} is gemaak na {1}
DocType: Production Order,Material Transferred for Manufacturing,Materiaal oorgedra vir Vervaardiging
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,Rekening {0} bestaan nie
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,Rekening {0} bestaan nie
DocType: Project,Project Type,Projek Type
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,Kinderopdrag bestaan vir hierdie taak. U kan hierdie taak nie uitvee nie.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,Die teiken hoeveelheid of teikenwaarde is verpligtend.
@ -3664,11 +3670,11 @@ DocType: C-Form,I,Ek
DocType: Company,Asset Depreciation Cost Center,Bate Waardevermindering Koste Sentrum
DocType: Sales Order Item,Sales Order Date,Verkoopsvolgorde
DocType: Sales Invoice Item,Delivered Qty,Aflewerings Aantal
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,Totale Excl. belasting
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","Indien gekontroleer, sal al die kinders van elke produksie-item in die Materiaalversoeke ingesluit word."
DocType: Assessment Plan,Assessment Plan,Assesseringsplan
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,Kliënt {0} is geskep.
DocType: Stock Settings,Limit Percent,Limiet persentasie
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Installeer asseblief die Instrukteur Naming Stelsel in Onderwys&gt; Onderwys instellings
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,Tans is geen voorraad beskikbaar in enige pakhuis nie
,Payment Period Based On Invoice Date,Betalingsperiode gebaseer op faktuurdatum
DocType: Sample Collection,No. of print,Aantal drukwerk
@ -3684,12 +3690,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),Debiteure ({0})
DocType: Pricing Rule,Margin,marge
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,Nuwe kliënte
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,Bruto wins%
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,Bruto wins%
DocType: Appraisal Goal,Weightage (%),Gewig (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,Verander POS-profiel
DocType: Bank Reconciliation Detail,Clearance Date,Opruimingsdatum
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,Assesseringsverslag
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,Bruto aankoopbedrag is verpligtend
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,Bruto aankoopbedrag is verpligtend
DocType: Lead,Address Desc,Adres Beskrywing
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,Party is verpligtend
DocType: Journal Entry,JV-,JV-
@ -3721,7 +3727,6 @@ DocType: Account,Accumulated Depreciation,Opgehoopte waardevermindering
DocType: Supplier Scorecard Scoring Standing,Standing Name,Staande Naam
DocType: Stock Entry,Customer or Supplier Details,Kliënt- of Verskafferbesonderhede
DocType: Employee Loan Application,Required by Date,Vereis volgens datum
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),Sluitingsaldo (Dr - Cr)
DocType: Lead,Lead Owner,Leier Eienaar
DocType: Bin,Requested Quantity,Gevraagde Hoeveelheid
DocType: Patient,Marital Status,Huwelikstatus
@ -3735,7 +3740,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,Veelvuldige Varianten
DocType: Sales Invoice,Against Income Account,Teen Inkomsterekening
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% afgelewer
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Item {0}: Bestelde hoeveelheid {1} kan nie minder wees as die minimum bestelhoeveelheid {2} (gedefinieer in Item).
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Item {0}: Bestelde hoeveelheid {1} kan nie minder wees as die minimum bestelhoeveelheid {2} (gedefinieer in Item).
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,Maandelikse Verspreidingspersentasie
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,Log in as &#39;n ander gebruiker.
DocType: Territory,Territory Targets,Territoriese teikens
@ -3983,7 +3988,6 @@ DocType: Delivery Note Item,From Warehouse,Uit pakhuis
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,Geen werknemers vir die genoemde kriteria
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,Geen items met die materiaal om te vervaardig
DocType: Restaurant,Default Customer,Verstekkliënt
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Installeer asseblief die Naam van Werknemers in Menslike Hulpbronne&gt; MH-instellings
DocType: Assessment Plan,Supervisor Name,Toesighouer Naam
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,Moenie bevestig of aanstelling geskep is vir dieselfde dag nie
DocType: Program Enrollment Course,Program Enrollment Course,Programinskrywing Kursus
@ -4101,7 +4105,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,Webwerf beskrywing
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,Netto verandering in ekwiteit
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,nuutste
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,Kanselleer eers Aankoopfaktuur {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,Kanselleer eers Aankoopfaktuur {0}
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","E-pos adres moet uniek wees, bestaan reeds vir {0}"
DocType: Serial No,AMC Expiry Date,AMC Vervaldatum
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,Kwitansie
@ -4118,7 +4122,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,Nog geen klië
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,Kontantvloeistaat
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},Lening Bedrag kan nie Maksimum Lening Bedrag van {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,lisensie
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},Verwyder asseblief hierdie faktuur {0} uit C-vorm {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},Verwyder asseblief hierdie faktuur {0} uit C-vorm {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,"Kies asseblief Carry Forward as u ook die vorige fiskale jaar se balans wil insluit, verlaat na hierdie fiskale jaar"
DocType: GL Entry,Against Voucher Type,Teen Voucher Tipe
DocType: Physician,Phone (R),Telefoon (R)
@ -4130,7 +4134,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,B Negatief
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,Onderhoudstatus moet gekanselleer of voltooi word om in te dien
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},Rekening {0} behoort nie aan maatskappy {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,Reeksnommers in ry {0} stem nie ooreen met Afleweringsnota nie
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,Reeksnommers in ry {0} stem nie ooreen met Afleweringsnota nie
DocType: Student,Guardian Details,Besonderhede van die voog
DocType: C-Form,C-Form,C-Form
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,Merk Bywoning vir meervoudige werknemers
@ -4172,7 +4176,7 @@ DocType: Opening Invoice Creation Tool,Sales,verkope
DocType: Stock Entry Detail,Basic Amount,Basiese Bedrag
DocType: Training Event,Exam,eksamen
DocType: Complaint,Complaint,klagte
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},Pakhuis benodig vir voorraad Item {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},Pakhuis benodig vir voorraad Item {0}
DocType: Leave Allocation,Unused leaves,Ongebruikte blare
DocType: Patient,Alcohol Past Use,Alkohol Gebruik
DocType: Fertilizer Content,Fertilizer Content,Kunsmis Inhoud
@ -4296,6 +4300,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,formule
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,Serie #
DocType: Lab Test Template,Lab Test Template,Lab Test Template
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,Verkooprekening
DocType: Purchase Invoice Item,Total Weight,Totale Gewig
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,Kommissie op verkope
DocType: Offer Letter Term,Value / Description,Waarde / beskrywing
@ -4452,7 +4457,7 @@ Updated via 'Time Log'",In Notules Opgedateer via &#39;Time Log&#39;
DocType: Customer,From Lead,Van Lood
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,Bestellings vrygestel vir produksie.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,Kies fiskale jaar ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,POS-profiel wat nodig is om POS-inskrywing te maak
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,POS-profiel wat nodig is om POS-inskrywing te maak
DocType: Program Enrollment Tool,Enroll Students,Teken studente in
DocType: Lab Test,Approved Date,Goedgekeurde Datum
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,Standaardverkope
@ -4528,7 +4533,7 @@ DocType: Employee,Held On,Aangehou
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,Produksie-item
,Employee Information,Werknemersinligting
DocType: Stock Entry Detail,Additional Cost,Addisionele koste
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","Kan nie filter gebaseer op Voucher No, indien gegroepeer deur Voucher"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","Kan nie filter gebaseer op Voucher No, indien gegroepeer deur Voucher"
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,Maak Verskaffer Kwotasie
DocType: Quality Inspection,Incoming,inkomende
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,Standaard belasting sjablonen vir verkope en aankoop word gemaak.
@ -4545,7 +4550,7 @@ DocType: Batch,Batch ID,Lot ID
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},Nota: {0}
,Delivery Note Trends,Delivery Notendendense
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,Hierdie week se opsomming
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,Op voorraad Aantal
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,Op voorraad Aantal
DocType: Delivery Trip,Calculate Estimated Arrival Times,Bereken die beraamde aankomstye
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,Rekening: {0} kan slegs deur voorraadtransaksies opgedateer word
DocType: Student Group Creation Tool,Get Courses,Kry kursusse
@ -4561,7 +4566,7 @@ DocType: Purchase Order,To Bill,Aan Bill
DocType: Material Request,% Ordered,% Bestel
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.","Vir Kursusgebaseerde Studentegroep, sal die kursus vir elke student van die ingeskrewe Kursusse in Programinskrywing bekragtig word."
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,stukwerk
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,Gem. Koopkoers
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,Gem. Koopkoers
DocType: Task,Actual Time (in Hours),Werklike tyd (in ure)
DocType: Employee,History In Company,Geskiedenis In Maatskappy
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},Nuwe boodskap van {sender}
@ -4609,7 +4614,7 @@ DocType: Asset Repair,Asset Repair,Bate Herstel
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},Ry {0}: Geld van die BOM # {1} moet gelyk wees aan die gekose geldeenheid {2}
DocType: Journal Entry Account,Exchange Rate,Wisselkoers
DocType: Patient,Additional information regarding the patient,Bykomende inligting rakende die pasiënt
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,Verkoopsbestelling {0} is nie ingedien nie
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,Verkoopsbestelling {0} is nie ingedien nie
DocType: Homepage,Tag Line,Tag Line
DocType: Fee Component,Fee Component,Fooi-komponent
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,Vloot bestuur
@ -4821,7 +4826,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,Assesseringsresultaat
DocType: Employee Education,Employee Education,Werknemersonderwys
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,Duplikaat-itemgroep wat in die itemgroeptabel gevind word
DocType: Land Unit,Parent Land Unit,Ouergrondseenheid
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,Dit is nodig om Itembesonderhede te gaan haal.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,Dit is nodig om Itembesonderhede te gaan haal.
DocType: Fertilizer,Fertilizer Name,Kunsmis Naam
DocType: Salary Slip,Net Pay,Netto salaris
DocType: Account,Account,rekening
@ -4900,7 +4905,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),Werklike hoeveelheid (
DocType: Item Customer Detail,Ref Code,Ref Code
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,Kliëntegroep word vereis in POS-profiel
apps/erpnext/erpnext/config/hr.py +12,Employee records.,Werknemersrekords.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,Stel asseblief die volgende depresiasie datum in
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,Stel asseblief die volgende depresiasie datum in
DocType: HR Settings,Payroll Settings,Loonstaatinstellings
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,Pas nie-gekoppelde fakture en betalings.
DocType: POS Settings,POS Settings,Posinstellings
@ -5067,7 +5072,7 @@ DocType: Item,Customer Code,Kliënt Kode
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},Verjaardag Herinnering vir {0}
DocType: Asset Maintenance Task,Last Completion Date,Laaste Voltooiingsdatum
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,Dae sedert Laaste bestelling
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,Debiet Vir rekening moet &#39;n balansstaatrekening wees
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,Debiet Vir rekening moet &#39;n balansstaatrekening wees
DocType: Buying Settings,Naming Series,Naming Series
DocType: Leave Block List,Leave Block List Name,Verlaat bloklys naam
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,Versekering Aanvangsdatum moet minder wees as Versekerings-einddatum
@ -5193,6 +5198,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,Kry betalinginskrywings
DocType: Quotation Item,Against Docname,Teen Docname
DocType: SMS Center,All Employee (Active),Alle werknemer (aktief)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Kliënt&gt; Kliëntegroep&gt; Territorium
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,Bekyk nou
DocType: BOM,Raw Material Cost,Grondstofkoste
DocType: Item Reorder,Re-Order Level,Herbestellingsvlak
@ -5291,7 +5297,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,Sitplekvermoë
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,Lab toetsgroepe
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Kliënt&gt; Kliëntegroep&gt; Territorium
DocType: Project,Total Expense Claim (via Expense Claims),Totale koste-eis (via koste-eise)
DocType: GST Settings,GST Summary,GST Opsomming
DocType: Assessment Result,Total Score,Totale telling
@ -5304,7 +5309,7 @@ DocType: Batch,Source Document Type,Bron dokument tipe
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,Volgende kursusskedules is geskep
DocType: Journal Entry,Total Debit,Totale Debiet
DocType: Manufacturing Settings,Default Finished Goods Warehouse,Standaard voltooide goedere pakhuis
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,Verkoopspersoon
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,Verkoopspersoon
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,Begroting en Koste Sentrum
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,Veelvuldige verstekmodus van betaling is nie toegelaat nie
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,vir die
@ -5477,7 +5482,7 @@ DocType: Program,Program Name,Program Naam
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Oorweeg Belasting of Heffing vir
DocType: Driver,Driving License Category,Bestuurslisensie Kategorie
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,Werklike hoeveelheid is verpligtend
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} het tans &#39;n {1} Verskaffer Scorecard, en aankope bestellings aan hierdie verskaffer moet met omsigtigheid uitgereik word."
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} het tans &#39;n {1} Verskaffer Scorecard, en aankope bestellings aan hierdie verskaffer moet met omsigtigheid uitgereik word."
DocType: Asset Maintenance Team,Asset Maintenance Team,Bate Onderhoudspan
DocType: Employee Loan,Loan Type,Lening Tipe
DocType: Scheduling Tool,Scheduling Tool,Skeduleringsinstrument

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,ላብራቶሪ መድኃኒት
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,በ ዋጋ ለይ
,Delay Days,የዘገየ
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,የአገልግሎት የወጪ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},መለያ ቁጥር: {0} አስቀድሞ የሽያጭ ደረሰኝ ውስጥ የተጠቆመው ነው: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},መለያ ቁጥር: {0} አስቀድሞ የሽያጭ ደረሰኝ ውስጥ የተጠቆመው ነው: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,የዋጋ ዝርዝር
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,የመቆየትን ክምችት ይያዙ
DocType: Purchase Invoice Item,Item Weight Details,የንጥል ክብደት ዝርዝሮች
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,የወላጅ ዝርዝር DOCNAME
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","ማጣቀሻ: {0}, የእቃ ኮድ: {1} እና የደንበኞች: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,ኪግ
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,የሥራ ዕድል።
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},በንጥል {1} ውስጥ የንጥል ግዢን {0} በተመለከተ ቦም አልተገለጸም
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},በንጥል {1} ውስጥ የንጥል ግዢን {0} በተመለከተ ቦም አልተገለጸም
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} ውጤት ተገዝቷል
DocType: Item Attribute,Increment,ጨምር
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,የጊዜ ወሰን
@ -150,7 +150,7 @@ DocType: Patient,Married,ያገባ
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},አይፈቀድም {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,ከ ንጥሎችን ያግኙ
DocType: Price List,Price Not UOM Dependant,የዋጋ ተመን UOM ጥገኛ አይደለም
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},የአክሲዮን አሰጣጥ ማስታወሻ ላይ መዘመን አይችልም {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},የአክሲዮን አሰጣጥ ማስታወሻ ላይ መዘመን አይችልም {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},የምርት {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,የተዘረዘሩት ምንም ንጥሎች የሉም
DocType: Asset Repair,Error Description,የስህተት መግለጫ
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,ያስታርቅ
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,ግሮሰሪ
DocType: Quality Inspection Reading,Reading 1,1 ማንበብ
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,የጡረታ ፈንድ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,ቀጣይ የእርጅና ቀን ግዢ ቀን በፊት ሊሆን አይችልም
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,ቀጣይ የእርጅና ቀን ግዢ ቀን በፊት ሊሆን አይችልም
DocType: Crop,Perennial,የብዙ ዓመት
DocType: Consultation,Consultation Date,የምክክር ቀን
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,የምርት ዝርዝር እና ግኝት ለ ERPNext ተጠቃሚዎች
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,ወጪ ማዕከል ጠፍቷል ይ
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""",ለምሳሌ &quot;አንደኛ ደረጃ ትምህርት ቤት&quot; ወይም &quot;ዩኒቨርሲቲ&quot;
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,የክምችት ሪፖርቶች
DocType: Warehouse,Warehouse Detail,የመጋዘን ዝርዝር
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},የክሬዲት ገደብ ደንበኛ ተሻገሩ ተደርጓል {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},የክሬዲት ገደብ ደንበኛ ተሻገሩ ተደርጓል {0} {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,የሚለው ቃል መጨረሻ ቀን በኋላ የሚለው ቃል ጋር የተያያዘ ነው ይህም ወደ የትምህርት ዓመት ዓመት መጨረሻ ቀን በላይ መሆን አይችልም (የትምህርት ዓመት {}). ቀናት ለማረም እና እንደገና ይሞክሩ.
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item",የንብረት ዘገባ ንጥል ላይ አለ እንደ ካልተደረገበት ሊሆን አይችልም &quot;ቋሚ ንብረት ነው&quot;
DocType: Delivery Trip,Departure Time,የመነሻ ሰዓት
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,የተማሪ ምዝግብ ማስታወሻ
DocType: Quality Inspection,Get Specification Details,መስፈርቶች ዝርዝሮችን አግኝ
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,የአቅራቢዎች የጊዜ ሰሌዳዎች.
DocType: Lead,Interested,ለመወዳደር የምትፈልጉ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,ቀዳዳ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,ቀዳዳ
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},ከ {0} ወደ {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,ግብሮችን ማቀናበር አልተሳካም
DocType: Item,Copy From Item Group,ንጥል ቡድን ከ ቅዳ
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,ቀን የሚያስታግሱ በመቀላቀል ቀን የበለጠ መሆን አለበት
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,ዓመት በአንድ ማምለኩን
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,ረድፍ {0}: ያረጋግጡ መለያ ላይ &#39;Advance ነው&#39; {1} ይህን የቅድሚያ ግቤት ከሆነ.
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},{0} የመጋዘን ኩባንያ የእርሱ ወገን አይደለም {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},{0} የመጋዘን ኩባንያ የእርሱ ወገን አይደለም {1}
DocType: Email Digest,Profit & Loss,ትርፍ እና ኪሳራ
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,Litre
DocType: Task,Total Costing Amount (via Time Sheet),(ጊዜ ሉህ በኩል) ጠቅላላ ዋጋና መጠን
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,ደረጃ እና ምን ያህል መጠን
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,ይህ በኩባንያው ግዥዎች ላይ የተመሠረተ ነው. ለዝርዝሮች ከታች ያለውን የጊዜ መስመር ይመልከቱ
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,ራስ-ሰር የቁስ ጥያቄ መፍጠር ላይ በኢሜይል አሳውቅ
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,መቋቋም የሚችል
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,ምክክር
DocType: Journal Entry,Multi Currency,ባለብዙ ምንዛሬ
DocType: Opening Invoice Creation Tool,Invoice Type,የደረሰኝ አይነት
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,የመላኪያ ማስታወሻ
@ -528,7 +529,6 @@ DocType: Email Digest,Credit Balance,የብድር ቀሪ
DocType: Employee,Widowed,የሞተባት
DocType: Request for Quotation,Request for Quotation,ትዕምርተ ጥያቄ
DocType: Healthcare Settings,Require Lab Test Approval,የቤተሙከራ ፍቃድ ማፅደቅ ጠይቅ
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,የእንጥል ኮድ&gt; የንጥል ቡድን&gt; ግሩፕ
DocType: Salary Slip Timesheet,Working Hours,የስራ ሰዓት
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,ድምር ውጤት
DocType: Naming Series,Change the starting / current sequence number of an existing series.,አንድ ነባር ተከታታይ ጀምሮ / የአሁኑ ቅደም ተከተል ቁጥር ለውጥ.
@ -557,7 +557,7 @@ DocType: Subscription,Yearly,በየአመቱ
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,ወጪ ማዕከል ያስገቡ
DocType: Drug Prescription,Dosage,የመመገቢያ
DocType: Journal Entry Account,Sales Order,የሽያጭ ትዕዛዝ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,አማካኝ. መሸጥ ደረጃ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,አማካኝ. መሸጥ ደረጃ
DocType: Assessment Plan,Examiner Name,መርማሪ ስም
DocType: Lab Test Template,No Result,ምንም ውጤት
DocType: Purchase Invoice Item,Quantity and Rate,ብዛት እና ደረጃ ይስጡ
@ -605,6 +605,7 @@ DocType: Employee,Health Concerns,የጤና ሰጋት
DocType: Payroll Entry,Select Payroll Period,የደመወዝ ክፍያ ክፍለ ይምረጡ
DocType: Purchase Invoice,Unpaid,ያለክፍያ
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,ለሽያጭ የተያዘ
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,እባክዎ የሰራተኛ ስም ማስቀመጫ ሲስተም በሰብል ሪሶርስ&gt; HR ቅንጅቶች ያዘጋጁ
DocType: Packing Slip,From Package No.,ጥቅል ቁጥር ከ
DocType: Item Attribute,To Range,ወደ ክልል
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,ዋስትና እና ተቀማጭ
@ -629,11 +630,11 @@ DocType: Pricing Rule,Valid Upto,ልክ እስከሁለት
DocType: Training Event,Workshop,መሥሪያ
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,የግዢ ትዕዛዞችን ያስጠንቅቁ
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,የእርስዎ ደንበኞች መካከል ጥቂቶቹን ዘርዝር. እነዚህ ድርጅቶች ወይም ግለሰቦች ሊሆን ይችላል.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,በቂ ክፍሎች መመሥረት የሚቻለው
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,በቂ ክፍሎች መመሥረት የሚቻለው
DocType: POS Profile User,POS Profile User,POS የመገለጫ ተጠቃሚ
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,ቀጥታ ገቢ
DocType: Patient Appointment,Date TIme,ቀን እቅድ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","መለያ ተመድበው ከሆነ, መለያ ላይ የተመሠረተ ማጣሪያ አይቻልም"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","መለያ ተመድበው ከሆነ, መለያ ላይ የተመሠረተ ማጣሪያ አይቻልም"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,አስተዳደር ክፍል ኃላፊ
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,ኩባንያዎችን እና ግብሮችን ማቀናበር
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,ኮርስ ይምረጡ
@ -643,7 +644,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,ልዩነት መለያ
DocType: Purchase Invoice,Supplier GSTIN,አቅራቢ GSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,በሥሯ ተግባር {0} ዝግ አይደለም የቅርብ ተግባር አይችሉም.
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,የቁስ ጥያቄ ይነሣል ለዚህም መጋዘን ያስገቡ
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,የቁስ ጥያቄ ይነሣል ለዚህም መጋዘን ያስገቡ
DocType: Production Order,Additional Operating Cost,ተጨማሪ ስርዓተ ወጪ
DocType: Lab Test Template,Lab Routine,ላብራቶሪ መደበኛ
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,መዋቢያዎች
@ -811,7 +812,7 @@ DocType: Employee,Passport Number,የፓስፖርት ቁጥር
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Guardian2 ጋር በተያያዘ
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,አስተዳዳሪ
DocType: Payment Entry,Payment From / To,/ ከ ወደ ክፍያ
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},አዲስ የክሬዲት ገደብ ለደንበኛው ከአሁኑ የላቀ መጠን ያነሰ ነው. የክሬዲት ገደብ ላይ ቢያንስ መሆን አለበት {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},አዲስ የክሬዲት ገደብ ለደንበኛው ከአሁኑ የላቀ መጠን ያነሰ ነው. የክሬዲት ገደብ ላይ ቢያንስ መሆን አለበት {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},እባክዎ በ Warehouse {0} ውስጥ መለያ ያዘጋጁ
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,እና &#39;የቡድን በ&#39; &#39;ላይ የተመሠረተ »ጋር ተመሳሳይ መሆን አይችልም
DocType: Sales Person,Sales Person Targets,የሽያጭ ሰው ዒላማዎች
@ -822,7 +823,7 @@ DocType: Lab Test Template,Compound,ስብስብ
DocType: Student Batch Name,Batch Name,ባች ስም
DocType: Fee Validity,Max number of visit,ከፍተኛ የጎብኝ ቁጥር
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,Timesheet ተፈጥሯል:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},የክፍያ ሁነታ ላይ ነባሪ በጥሬ ገንዘብ ወይም በባንክ መለያ ማዘጋጀት እባክዎ {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},የክፍያ ሁነታ ላይ ነባሪ በጥሬ ገንዘብ ወይም በባንክ መለያ ማዘጋጀት እባክዎ {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,ይመዝገቡ
DocType: GST Settings,GST Settings,GST ቅንብሮች
DocType: Selling Settings,Customer Naming By,በ የደንበኛ አሰያየም
@ -946,7 +947,7 @@ DocType: Delivery Note,Customer's Purchase Order No,ደንበኛ የግዢ ት
DocType: Budget,Budget Against,በጀት ላይ
DocType: Employee,Cell Number,የእጅ ስልክ
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,ለተሰጠው መስፈርት ምንም ሰራተኛ የለም. የደመወዝ ወረቀት አስቀድመው አልተፈጠሩም.
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,ራስ-ቁሳዊ ጥያቄዎች የመነጩ
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,ራስ-ቁሳዊ ጥያቄዎች የመነጩ
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,ጠፍቷል
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,አንተ አምድ &#39;ጆርናል የሚመዘገብ ላይ »ውስጥ የአሁኑ ቫውቸር ሊገባ አይችልም
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,የአምራች ተይዟል
@ -954,7 +955,7 @@ DocType: Soil Texture,Sand,አሸዋ
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,ኃይል
DocType: Opportunity,Opportunity From,ከ አጋጣሚ
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,ወርሃዊ ደመወዝ መግለጫ.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,ረድፍ {0}: {1} የቁጥር ቁጥሮች ለ Item {2} ያስፈልጋሉ. {3} ሰጥተሃል.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,ረድፍ {0}: {1} የቁጥር ቁጥሮች ለ Item {2} ያስፈልጋሉ. {3} ሰጥተሃል.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,እባክህ ሰንጠረዥ ምረጥ
DocType: BOM,Website Specifications,የድር ጣቢያ ዝርዝር
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} በ &#39;ተቀባዮች&#39; ውስጥ ልክ ያልሆነ የኢሜይል አድራሻ ነው.
@ -1023,7 +1024,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,ጥቅስ ተጠይቋል
DocType: Vital Signs,Heart Rate / Pulse,የልብ ምት / የልብ ምት
DocType: Company,Default Bank Account,ነባሪ የባንክ ሂሳብ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first",የድግስ ላይ የተመሠረተ ለማጣራት ይምረጡ ፓርቲ በመጀመሪያ ይተይቡ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first",የድግስ ላይ የተመሠረተ ለማጣራት ይምረጡ ፓርቲ በመጀመሪያ ይተይቡ
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},ንጥሎች በኩል ነፃ አይደለም; ምክንያቱም &#39;ያዘምኑ Stock&#39; ሊረጋገጥ አልቻለም {0}
DocType: Vehicle,Acquisition Date,ማግኛ ቀን
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,ቁጥሮች
@ -1047,7 +1048,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),የፊደል ራስዎን ይስቀሉ (900 ፒክስል በ 100 ፒክስል በድር ተስማሚ ያድርጉ)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: መለያ {2} አንድ ቡድን ሊሆን አይችልም
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,ንጥል ረድፍ {idx}: {doctype} {DOCNAME} ከላይ ውስጥ የለም &#39;{doctype} »ሰንጠረዥ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,Timesheet {0} አስቀድሞ የተጠናቀቁ ወይም ተሰርዟል
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,Timesheet {0} አስቀድሞ የተጠናቀቁ ወይም ተሰርዟል
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,ምንም ተግባራት
DocType: Item Variant Settings,Copy Fields to Variant,መስኮችን ወደ ስሪቶች ገልብጥ
DocType: Asset,Opening Accumulated Depreciation,ክምችት መቀነስ በመክፈት ላይ
@ -1159,9 +1160,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,ንዑስ-አብያተ ክርስቲያናት ለ እቅድ ቁሳዊ
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,የሽያጭ አጋሮች እና ግዛት
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,BOM {0} ገባሪ መሆን አለበት
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),መዝጊያ (መከፈቻ + ጠቅላላ)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),መዝጊያ (መከፈቻ + ጠቅላላ)
DocType: Journal Entry,Depreciation Entry,የእርጅና Entry
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,በመጀመሪያ ስለ ሰነዱ አይነት ይምረጡ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,በመለያው ምንዛሪ ያትሙ
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,ይህ ጥገና ይጎብኙ በመሰረዝ በፊት ይቅር ቁሳዊ ጥገናዎች {0}
DocType: Crop Cycle,ISO 8016 standard,ISO 8016 ደረጃ
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},ተከታታይ አይ {0} ንጥል የእርሱ ወገን አይደለም {1}
@ -1187,7 +1189,7 @@ DocType: Purchase Receipt,Range,ርቀት
DocType: Supplier,Default Payable Accounts,ነባሪ ተከፋይ መለያዎች
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,{0} ተቀጣሪ ንቁ አይደለም ወይም የለም
DocType: Fee Structure,Components,ክፍሎች
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},ንጥል ውስጥ የንብረት ምድብ ያስገቡ {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},ንጥል ውስጥ የንብረት ምድብ ያስገቡ {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,ንጥል አይነቶች {0} ዘምኗል
DocType: Quality Inspection Reading,Reading 6,6 ማንበብ
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1239,6 +1241,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,የድርጅት ስም
DocType: SMS Center,Total Message(s),ጠቅላላ መልዕክት (ዎች)
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,ሰደዳ ይምረጡ ንጥል
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,እባክዎን በቅንብር&gt; ቅንጅቶች&gt; የስምሪት ስሞች በኩል በ {0} ስም ማዕቀብ ያዘጋጁ
DocType: Purchase Invoice,Additional Discount Percentage,ተጨማሪ የቅናሽ መቶኛ
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,ሁሉም እርዳታ ቪዲዮዎች ዝርዝር ይመልከቱ
DocType: Agriculture Analysis Criteria,Soil Texture,የአፈር ዓይነት
@ -1266,7 +1269,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,BOM የድር ጣቢያ ንጥል
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,የእርስዎን ደብዳቤ ራስ እና አርማ ይስቀሉ. (ቆይተው አርትዕ ማድረግ ይችላሉ).
DocType: Timesheet Detail,Bill,ቢል
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,ቀጣይ የእርጅና ቀን ባለፈው ቀን እንደ ገባ ነው
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,ቀጣይ የእርጅና ቀን ባለፈው ቀን እንደ ገባ ነው
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,ነጭ
DocType: SMS Center,All Lead (Open),ሁሉም ቀዳሚ (ክፈት)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),ረድፍ {0}: ለ ብዛት አይገኝም {4} መጋዘን ውስጥ {1} መግቢያ ጊዜ መለጠፍ (በ {2} {3})
@ -1282,7 +1285,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,ቀጣይ የእውቂያ ቀን
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,ብዛት በመክፈት ላይ
DocType: Healthcare Settings,Appointment Reminder,የቀጠሮ ማስታወሻ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,ለውጥ መጠን ለ መለያ ያስገቡ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,ለውጥ መጠን ለ መለያ ያስገቡ
DocType: Program Enrollment Tool Student,Student Batch Name,የተማሪ የቡድን ስም
DocType: Consultation,Doctor,ዶክተር
DocType: Holiday List,Holiday List Name,የበዓል ዝርዝር ስም
@ -1298,6 +1301,7 @@ DocType: Patient,Patient Relation,የታካሚ ግንኙነት
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,ምደባዎች መሣሪያ ውጣ
DocType: Item,Hub Category to Publish,Hub ምድብ ወደ ህትመት
DocType: Leave Block List,Leave Block List Dates,አግድ ዝርዝር ቀኖች ውጣ
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,እባክዎ በአካባቢያዊ ቅንጅቶች በኩል የቁጥር ተከታታይ ቁጥሮች ያስተካክሉ&gt; በማስተካከል ተከታታይ ቁጥር
DocType: Sales Invoice,Billing Address GSTIN,የክፍያ አድራሻ GSTIN
DocType: Assessment Plan,Evaluate,ገምግም
DocType: Workstation,Net Hour Rate,የተጣራ ሰዓት ተመን
@ -1331,7 +1335,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,የግዢ ደረሰኝ ንጥል
DocType: Purchase Receipt,PREC-RET-,PREC-RET-
DocType: POS Profile,Sales Invoice Payment,የሽያጭ ደረሰኝ ክፍያ
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,የሽያጭ ትዕዛዝ / ያለቀለት ዕቃዎች መጋዘን ውስጥ የተያዘ መጋዘን
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,ሽያጭ መጠን
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,ሽያጭ መጠን
DocType: Repayment Schedule,Interest Amount,የወለድ መጠን
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,ይህን መዝገብ ኪሳራውን አጽዳቂ ናቸው. የ «ሁኔታ» እና አስቀምጥ አዘምን እባክዎ
DocType: Serial No,Creation Document No,ፍጥረት ሰነድ የለም
@ -1422,7 +1426,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,የመክፈቻ ዲግሪ ቀሪ
,GST Sales Register,GST የሽያጭ መመዝገቢያ
DocType: Sales Invoice Advance,Sales Invoice Advance,የሽያጭ ደረሰኝ የቅድሚያ
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,ምንም ነገር መጠየቅ
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,ምንም ነገር መጠየቅ
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,ጎራዎችዎን ይምረጡ
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},ሌላው የበጀት መዝገብ «{0}» አስቀድሞ ላይ አለ {1} «{2}» በጀት ዓመት ለ {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,መስኮች በሚፈጠሩበት ጊዜ ብቻ ይገለበጣሉ.
@ -1432,11 +1436,11 @@ DocType: Cheque Print Template,Payer Settings,ከፋዩ ቅንብሮች
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","ይህ ተለዋጭ ያለውን ንጥል ኮድ ተጨምሯል ይሆናል. የእርስዎ በምህፃረ ቃል &quot;SM&quot; ነው; ለምሳሌ ያህል, ንጥል ኮድ &quot;ቲሸርት&quot;, &quot;ቲሸርት-SM&quot; ይሆናል ተለዋጭ ያለውን ንጥል ኮድ ነው"
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,የ የቀጣሪ ለማዳን አንዴ (ቃላት) የተጣራ ክፍያ የሚታይ ይሆናል.
DocType: Purchase Invoice,Is Return,መመለሻ ነው
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,ጥንቃቄ
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,ጥንቃቄ
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,ተመለስ / ዴቢት ማስታወሻ
DocType: Price List Country,Price List Country,የዋጋ ዝርዝር አገር
DocType: Item,UOMs,UOMs
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} ንጥል ትክክለኛ ተከታታይ ቁጥሮች {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} ንጥል ትክክለኛ ተከታታይ ቁጥሮች {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,ንጥል ኮድ መለያ ቁጥር ሊቀየር አይችልም
DocType: Purchase Invoice Item,UOM Conversion Factor,UOM ልወጣ መንስኤ
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,ባች ቁጥር ለማግኘት ንጥል ኮድ ያስገቡ
@ -1540,7 +1544,7 @@ DocType: Journal Entry,Get Outstanding Invoices,ያልተከፈሉ ደረሰኞ
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,የሽያጭ ትዕዛዝ {0} ልክ ያልሆነ ነው
DocType: Supplier Scorecard,Warn for new Request for Quotations,ለማብራሪያዎች አዲስ ጥያቄ አስጠንቅቅ
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,የግዢ ትዕዛዞች ዕቅድ ለማገዝ እና ግዢዎች ላይ መከታተል
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","ይቅርታ, ኩባንያዎች ይዋሃዳሉ አይችልም"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","ይቅርታ, ኩባንያዎች ይዋሃዳሉ አይችልም"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,የሙከራ ምርመራዎች ትዕዛዝ
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",ሐሳብ ጥያቄ ውስጥ ጠቅላላ እትም / ማስተላለፍ ብዛት {0} {1} \ ንጥል ለ የተጠየቀው ብዛት {2} በላይ ሊሆን አይችልም {3}
@ -1578,7 +1582,6 @@ DocType: Vehicle,Fuel UOM,የነዳጅ UOM
DocType: Warehouse,Warehouse Contact Info,መጋዘን የእውቂያ መረጃ
DocType: Payment Entry,Write Off Difference Amount,ለችግሮችህ መጠን ጠፍቷል ይጻፉ
DocType: Volunteer,Volunteer Name,የበጎ ፈቃደኝነት ስም
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,እባክዎ የመምህርውን ስም ስርዓትን በስርዓት&gt; የትምህርት ቅንብሮች ያዋቅሩ
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent",{0}: የሰራተኛ ኢሜይል አልተገኘም: ከዚህ አልተላከም ኢሜይል
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},የመላኪያ ደንቡ ለአገር አይተገበርም {0}
DocType: Item,Foreign Trade Details,የውጭ ንግድ ዝርዝሮች
@ -1590,7 +1593,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,የቡድን ጥቅል ቁጥር
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry",{0}: ብቻ የክሬዲት መለያዎች ሌላ ዴቢት ግቤት ላይ የተገናኘ ሊሆን ይችላል
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,ሁሉ ተግባር ክብደት ጠቅላላ 1. መሰረት በሁሉም የፕሮጀክቱ ተግባራት ክብደት ለማስተካከል እባክዎ መሆን አለበት
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,የመላኪያ ማስታወሻ {0} ማቅረብ አይደለም
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,የመላኪያ ማስታወሻ {0} ማቅረብ አይደለም
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,ንጥል {0} አንድ ንዑስ-ኮንትራት ንጥል መሆን አለበት
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,የካፒታል ዕቃዎች
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","የዋጋ ደ መጀመሪያ ላይ በመመስረት ነው ንጥል, ንጥል ቡድን ወይም የምርት ስም ሊሆን ይችላል, ይህም መስክ ላይ ተግብር. &#39;"
@ -1615,7 +1618,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,የልጅ መጋዘን ይህን መጋዘን የለም. ይህን መጋዘን መሰረዝ አይችሉም.
DocType: Item,Website Item Groups,የድር ጣቢያ ንጥል ቡድኖች
DocType: Purchase Invoice,Total (Company Currency),ጠቅላላ (የኩባንያ የምንዛሬ)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,{0} መለያ ቁጥር ከአንድ ጊዜ በላይ ገባ
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,{0} መለያ ቁጥር ከአንድ ጊዜ በላይ ገባ
DocType: Journal Entry,Journal Entry,ጆርናል የሚመዘገብ መረጃ
DocType: Expense Claim Advance,Unclaimed amount,የይገባኛል ጥያቄ ያልተነሳበት መጠን
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,በሂደት ላይ {0} ንጥሎች
@ -1711,7 +1714,7 @@ DocType: Email Digest,For Company,ኩባንያ ለ
apps/erpnext/erpnext/config/support.py +17,Communication log.,ኮሙኒኬሽን መዝገብ.
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.","ትዕምርተ ጥያቄ ተጨማሪ ቼክ መተላለፊያውን ቅንብሮች, ፖርታል ከ ለመድረስ ተሰናክሏል."
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,የአምራች ውጤት መሥሪያ ካርታ ተለዋዋጭ ነጥብ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,የግዢ መጠን
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,የግዢ መጠን
DocType: Sales Invoice,Shipping Address Name,የሚላክበት አድራሻ ስም
DocType: Material Request,Terms and Conditions Content,ውል እና ሁኔታዎች ይዘት
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,የጊዜ ሰሌዳን የሚፈጥሩ ስህተቶች ነበሩ
@ -1974,7 +1977,7 @@ DocType: Expense Claim,Total Amount Reimbursed,ጠቅላላ መጠን ይመለ
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,ይሄ በዚህ ተሽከርካሪ ላይ መዝገቦች ላይ የተመሠረተ ነው. ዝርዝሮችን ለማግኘት ከታች ያለውን የጊዜ ይመልከቱ
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},አቅራቢው ላይ የደረሰኝ {0} የተዘጋጀው {1}
DocType: Customer,Default Price List,ነባሪ ዋጋ ዝርዝር
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,የንብረት እንቅስቃሴ መዝገብ {0} ተፈጥሯል
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,የንብረት እንቅስቃሴ መዝገብ {0} ተፈጥሯል
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,አንተ መሰረዝ አይችሉም በጀት ዓመት {0}. በጀት ዓመት {0} አቀፍ ቅንብሮች ውስጥ እንደ ነባሪ ተዘጋጅቷል
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,ተመሳሳይ ስም ያለው ደንበኛ አስቀድሞ አለ
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,ይህ የደመወዝ ወረቀቶችን ያቀርባል እና የአስፈፃሚ ጆርጅ ኢንተርስን ይፍጠሩ. መቀጠል ይፈልጋሉ?
@ -1988,6 +1991,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,የዋጋ
DocType: Quotation,Term Details,የሚለው ቃል ዝርዝሮች
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,ይህ ተማሪ ቡድን {0} ተማሪዎች በላይ መመዝገብ አይችልም.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),ጠቅላላ (ያለ ግብር)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,በእርሳስ ቆጠራ
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} 0 የበለጠ መሆን አለበት
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,ክምችት ይገኛል
@ -2006,7 +2010,6 @@ DocType: Lab Test,Technician Name,የቴክኒክ ስም
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,የደረሰኝ ስረዛ ላይ ክፍያ አታገናኝ
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},ገባ የአሁኑ Odometer ንባብ የመጀመሪያ የተሽከርካሪ Odometer የበለጠ መሆን አለበት {0}
DocType: Restaurant Reservation,No Show,አልመጣም
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,እባክዎን በቅንብር&gt; ቅንጅቶች&gt; የስምሪት ስሞች በኩል በ {0} ስም ማዕቀብ ያዘጋጁ
DocType: Shipping Rule Country,Shipping Rule Country,መላኪያ ደንብ አገር
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,ውጣ እና ክትትል
DocType: Maintenance Visit,Partially Completed,በከፊል የተጠናቀቁ
@ -2097,7 +2100,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,የተማሪ ቡድን አስተማሪ
DocType: Grant Application,Assessment Mark (Out of 10),የምክክር ማርክ (ከ 10 ውስጥ)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 ተንቀሳቃሽ አይ
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,ዋና
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,ዋና
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,ተለዋጭ
DocType: Naming Series,Set prefix for numbering series on your transactions,በእርስዎ ግብይቶች ላይ ተከታታይ ቁጥር አዘጋጅ ቅድመ ቅጥያ
DocType: Employee Attendance Tool,Employees HTML,ተቀጣሪዎች ኤችቲኤምኤል
@ -2145,7 +2148,7 @@ DocType: Crop,Crop Spacing,ሰብልን ክፈል
DocType: Course,Course Abbreviation,የኮርስ ምህፃረ ቃል
DocType: Student Leave Application,Student Leave Application,የተማሪ ፈቃድ ማመልከቻ
DocType: Item,Will also apply for variants,በተጨማሪም ተለዋጮች ማመልከት ይሆን
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","አስቀድሞ እንደ ንብረት, ሊሰረዝ አይችልም {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","አስቀድሞ እንደ ንብረት, ሊሰረዝ አይችልም {0}"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},ላይ ግማሽ ቀን ላይ ሠራተኛ {0} {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},ጠቅላላ የሥራ ሰዓቶች ከፍተኛ የሥራ ሰዓት በላይ መሆን የለበትም {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,ላይ
@ -2329,9 +2332,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),ትክክለኛው መጨረሻ ቀን (ሰዓት ሉህ በኩል)
DocType: Soil Texture,Soil Type,የአፈር አይነት
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},የገንዘብ መጠን {0} {1} ላይ {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,አዲስ መልዕክት
,Quotation Trends,በትዕምርተ ጥቅስ አዝማሚያዎች
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},ንጥል ቡድን ንጥል ንጥል ጌታ ውስጥ የተጠቀሰው አይደለም {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,መለያ ወደ ዴቢት አንድ የሚሰበሰብ መለያ መሆን አለበት
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,መለያ ወደ ዴቢት አንድ የሚሰበሰብ መለያ መሆን አለበት
DocType: Shipping Rule,Shipping Amount,መላኪያ መጠን
DocType: Supplier Scorecard Period,Period Score,የዘፈን ነጥብ
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,ደንበኞች ያክሉ
@ -2342,7 +2346,7 @@ DocType: Purchase Order,Delivered,ደርሷል
,Vehicle Expenses,የተሽከርካሪ ወጪ
DocType: Serial No,Invoice Details,የደረሰኝ ዝርዝሮች
DocType: Grant Application,Show on Website,በድረገፅ አሳይ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},ጠቃሚ ሕይወት በኋላ የተጠበቀው ዋጋ ይበልጣል ወይም እኩል መሆን አለበት {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},ጠቃሚ ሕይወት በኋላ የተጠበቀው ዋጋ ይበልጣል ወይም እኩል መሆን አለበት {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,ጀምር
DocType: Hub Category,Hub Category,Hub ምድብ
DocType: Purchase Invoice,SEZ,SEZ
@ -2373,7 +2377,7 @@ DocType: Patient,Patient Details,የታካሚ ዝርዝሮች
DocType: Patient,B Positive,ቢ አዎንታዊ
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.",የረድፍ # {0}: ንጥል ቋሚ ንብረት ነው እንደ ብዛት: 1 መሆን አለበት. በርካታ ብዛት የተለያየ ረድፍ ይጠቀሙ.
DocType: Leave Block List Allow,Leave Block List Allow,አግድ ዝርዝር ፍቀድ ይነሱ
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,Abbr ባዶ ወይም ባዶ መሆን አይችልም
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,Abbr ባዶ ወይም ባዶ መሆን አይችልም
DocType: Patient Medical Record,Patient Medical Record,ታካሚ የሕክምና መዝገብ
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,ያልሆኑ ቡድን ቡድን
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,ስፖርት
@ -2423,6 +2427,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,የተቀበሉት አር.ኤም.ፒ. ወደ &quot;ምንም&quot; የለም
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,ጠቅላላ ተቀናሽ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,በመለያው ምንዛሬ ለማተም አንድ መለያ ይምረጡ
,Production Analytics,የምርት ትንታኔ
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,ይህ በ E ዚህ ህመምተኛ ላይ የተደረጉ ግብይቶች ላይ የተመሠረተ ነው. ለዝርዝሮች ከታች ያለውን የጊዜ መስመር ይመልከቱ
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,ወጪ ዘምኗል
@ -2477,7 +2482,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,ን
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,ኩባንያ ይምረጡ ...
DocType: Leave Control Panel,Leave blank if considered for all departments,ሁሉም ክፍሎች እየታሰቡ ከሆነ ባዶውን ይተው
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","የሥራ ዓይነቶች (ቋሚ, ውል, እሥረኛ ወዘተ)."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} ንጥል ግዴታ ነው {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} ንጥል ግዴታ ነው {1}
DocType: Payroll Entry,Fortnightly,በየሁለት ሳምንቱ
DocType: Currency Exchange,From Currency,ምንዛሬ ከ
DocType: Vital Signs,Weight (In Kilogram),ክብደት (በኪልግራም)
@ -2553,7 +2558,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),መሰረታዊ መጠ
DocType: Student,Guardians,አሳዳጊዎች
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,የዋጋ ዝርዝር ካልተዋቀረ ዋጋዎች አይታይም
DocType: Stock Entry,Total Incoming Value,ጠቅላላ ገቢ ዋጋ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,ዴት ወደ ያስፈልጋል
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,ዴት ወደ ያስፈልጋል
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Timesheets በእርስዎ ቡድን እንዳደረገ activites ጊዜ, ወጪ እና የማስከፈያ እንዲከታተሉ ለመርዳት"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,የግዢ ዋጋ ዝርዝር
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,የአቅራቢዎች የውጤት መለኪያዎች አብነቶች.
@ -2654,7 +2659,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,ማጣቀሻ ያህል ብቻ.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},ሀኪም {0} በ {1} ላይ አይገኝም
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,ምረጥ የጅምላ አይ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},ልክ ያልሆነ {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},ልክ ያልሆነ {0}: {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Fee Validity,Reference Inv,የማጣቀሻ ማመልከቻ
@ -2691,8 +2696,8 @@ DocType: Fees,Send Payment Request,የክፍያ ጥያቄን ላክ
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","የ ክወናዎች, የክወና ወጪ ይጥቀሱ እና ቀዶ ሕክምና ምንም ልዩ ክወና መስጠት."
DocType: Water Analysis,Origin,መነሻ
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,ይህ ሰነድ በ ገደብ በላይ ነው {0} {1} ንጥል {4}. እናንተ እያደረግን ነው በዚያው ላይ ሌላ {3} {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,በማስቀመጥ ላይ በኋላ ተደጋጋሚ ማዘጋጀት እባክዎ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,ይምረጡ ለውጥ መጠን መለያ
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,በማስቀመጥ ላይ በኋላ ተደጋጋሚ ማዘጋጀት እባክዎ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,ይምረጡ ለውጥ መጠን መለያ
DocType: Purchase Invoice,Price List Currency,የዋጋ ዝርዝር ምንዛሬ
DocType: Naming Series,User must always select,ተጠቃሚው ሁልጊዜ መምረጥ አለብዎ
DocType: Stock Settings,Allow Negative Stock,አሉታዊ የአክሲዮን ፍቀድ
@ -2748,7 +2753,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,ጥገና ፕ
DocType: Supplier Scorecard,Warn for new Purchase Orders,ለአዲስ የግዢ ትዕዛዞች ያስጠንቅቁ
DocType: Quality Inspection Reading,Reading 9,9 ማንበብ
DocType: Supplier,Is Frozen,የቆመ ነው?
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,የቡድን መስቀለኛ መንገድ መጋዘን ግብይቶች ለ ለመምረጥ አይፈቀድም
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,የቡድን መስቀለኛ መንገድ መጋዘን ግብይቶች ለ ለመምረጥ አይፈቀድም
DocType: Buying Settings,Buying Settings,ሊገዙ ቅንብሮች
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,አንድ ያለቀለት ጥሩ ንጥል ለ BOM ቁ
DocType: Upload Attendance,Attendance To Date,ቀን ወደ በስብሰባው
@ -2762,6 +2767,7 @@ DocType: Offer Letter,Accepted,ተቀባይነት አግኝቷል
DocType: Grant Application,Organization,ድርጅት
DocType: BOM Update Tool,BOM Update Tool,የ BOM ማሻሻያ መሳሪያ
DocType: SG Creation Tool Course,Student Group Name,የተማሪ የቡድን ስም
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,የተበተለ እይታ አሳይ
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,ክፍያዎች በመፍጠር
apps/erpnext/erpnext/setup/doctype/company/company.js +91,Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone.,በእርግጥ ይህ ኩባንያ ሁሉንም ግብይቶችን መሰረዝ ይፈልጋሉ እርግጠኛ ይሁኑ. ነው እንደ ዋና ውሂብ ይቆያል. ይህ እርምጃ ሊቀለበስ አይችልም.
DocType: Room,Room Number,የክፍል ቁጥር
@ -2772,7 +2778,7 @@ DocType: Journal Entry Account,Payroll Entry,የክፍያ ገቢዎች
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,የግብር አብነት ስራ
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,የተጠቃሚ መድረክ
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,ጥሬ እቃዎች ባዶ መሆን አይችልም.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","የአክሲዮን ማዘመን አልተቻለም, መጠየቂያ ጠብታ መላኪያ ንጥል ይዟል."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","የአክሲዮን ማዘመን አልተቻለም, መጠየቂያ ጠብታ መላኪያ ንጥል ይዟል."
DocType: Lab Test Sample,Lab Test Sample,የቤተ ሙከራ የሙከራ ናሙና
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,ፈጣን ጆርናል የሚመዘገብ መረጃ
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,BOM ማንኛውም ንጥል agianst የተጠቀሰው ከሆነ መጠን መቀየር አይችሉም
@ -2843,7 +2849,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,ዩኤስዶላር
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,የገንዘብ መጠየቂያ ደረሰኝ አድርግ
DocType: Selling Settings,Auto close Opportunity after 15 days,15 ቀናት በኋላ ራስ የቅርብ አጋጣሚ
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,የግዢ ትዕዛዞች በ {1} ውጤት መስጫ ነጥብ ምክንያት ለ {0} አይፈቀዱም.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,የግዢ ትዕዛዞች በ {1} ውጤት መስጫ ነጥብ ምክንያት ለ {0} አይፈቀዱም.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,የመጨረሻ ዓመት
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Quot / በእርሳስ%
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,ውሌ መጨረሻ ቀን በመቀላቀል ቀን የበለጠ መሆን አለበት
@ -2934,7 +2940,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90-በላይ
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,የረድፍ # {0}: ጆርናል የሚመዘገብ {1} መለያ የለውም {2} ወይም አስቀድሞ በሌላ ቫውቸር ጋር ይዛመዳሉ
DocType: Supplier Scorecard Criteria,Criteria Weight,መስፈርት ክብደት
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,አቅራቢ&gt; አቅራቢ አይነት
DocType: Buying Settings,Default Buying Price List,ነባሪ መግዛትና ዋጋ ዝርዝር
DocType: Payroll Entry,Salary Slip Based on Timesheet,Timesheet ላይ የተመሠረተ የቀጣሪ
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,የግዢ ዋጋ
@ -3022,7 +3027,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,የትራክ ኢንዱስትሪ ዓይነት ይመራል.
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,ወደ ፊደል ወረቀቶች ሂድ
DocType: Item Supplier,Item Supplier,ንጥል አቅራቢ
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,ባች ምንም ለማግኘት ንጥል ኮድ ያስገቡ
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,ባች ምንም ለማግኘት ንጥል ኮድ ያስገቡ
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},{0} quotation_to እሴት ይምረጡ {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,ሁሉም አድራሻዎች.
DocType: Company,Stock Settings,የክምችት ቅንብሮች
@ -3199,6 +3204,7 @@ DocType: Employee Loan,Loan Details,ብድር ዝርዝሮች
DocType: Company,Default Inventory Account,ነባሪ ቆጠራ መለያ
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,ረድፍ {0}: ተጠናቋል ብዛት ከዜሮ በላይ መሆን አለበት.
DocType: Antibiotic,Antibiotic Name,የአንቲባዮቲክ ስም
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,የእንጥል ኮድ&gt; የንጥል ቡድን&gt; ግሩፕ
DocType: Purchase Invoice,Apply Additional Discount On,ተጨማሪ የቅናሽ ላይ ተግብር
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,ዓይነት ምረጥ ...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,ሰብላቱ እያደገ ላለው ለሁሉም የመሬት አሃዶች አገናኝ
@ -3392,6 +3398,7 @@ DocType: Guardian Student,Guardian Student,አሳዳጊ ተማሪ
DocType: Supplier,Credit Limit,የብድር ገደብ
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,አማካ. የዋጋ ዝርዝር ዋጋ
DocType: Production Plan Sales Order,Salse Order Date,Salse ትዕዛዝ ቀን
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,አቅራቢ&gt; አቅራቢ አይነት
DocType: Salary Component,Salary Component,ደመወዝ ክፍለ አካል
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,የክፍያ ምዝግቦችን {0}-un ጋር የተገናኘ ነው
DocType: GL Entry,Voucher No,ቫውቸር ምንም
@ -3400,7 +3407,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,በ ጣ ም ታ
DocType: Leave Allocation,Leave Allocation,ምደባዎች ውጣ
DocType: Payment Request,Recipient Message And Payment Details,የተቀባይ መልዕክት እና የክፍያ ዝርዝሮች
DocType: Training Event,Trainer Email,አሰልጣኝ ኢሜይል
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,የተፈጠረ ቁሳዊ ጥያቄዎች {0}
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,የተፈጠረ ቁሳዊ ጥያቄዎች {0}
DocType: Restaurant Reservation,No of People,የሰዎች ቁጥር
DocType: Production Planning Tool,Include sub-contracted raw materials,ንዑስ-ኮንትራት ጥሬ ዕቃዎች አካትት
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,ውሎች ወይም ውል አብነት.
@ -3464,7 +3471,7 @@ DocType: Landed Cost Item,Receipt Document,ደረሰኝ ሰነድ
DocType: Production Planning Tool,Create Material Requests,ቁሳዊ ጥያቄዎች ፍጠር
DocType: Employee Education,School/University,ትምህርት ቤት / ዩኒቨርስቲ
DocType: Payment Request,Reference Details,የማጣቀሻ ዝርዝሮች
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,ጠቃሚ ሕይወት በኋላ የሚጠበቀው ዋጋ ጠቅላላ የግዢ መጠን ያነሰ መሆን አለበት
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,ጠቃሚ ሕይወት በኋላ የሚጠበቀው ዋጋ ጠቅላላ የግዢ መጠን ያነሰ መሆን አለበት
DocType: Sales Invoice Item,Available Qty at Warehouse,መጋዘን ላይ ይገኛል ብዛት
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,የሚከፈል መጠን
DocType: Asset,Double Declining Balance,ድርብ ካልተቀበሉት ቀሪ
@ -3476,7 +3483,7 @@ DocType: Attendance,On Leave,አረፍት ላይ
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,ዝማኔዎች አግኝ
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: መለያ {2} ኩባንያ የእርሱ ወገን አይደለም {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,ከእያንዳንዱ ባህርያት ቢያንስ አንድ እሴት ይምረጡ.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,ቁሳዊ ጥያቄ {0} ተሰርዟል ወይም አቁሟል ነው
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,ቁሳዊ ጥያቄ {0} ተሰርዟል ወይም አቁሟል ነው
apps/erpnext/erpnext/config/hr.py +310,Leave Management,አስተዳደር ውጣ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,መለያ ቡድን
DocType: Sales Order,Fully Delivered,ሙሉ በሙሉ ደርሷል
@ -3487,14 +3494,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},በመገኘቱ መጠን የብድር መጠን መብለጥ አይችልም {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,ወደ ፕሮግራሞች ሂድ
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},ረድፍ {0} # የተመደበ መጠን {1} ከቀረበበት የይገባኛል መጠን በላይ ሊሆን አይችልም {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,እባክዎ በአካባቢያዊ ቅንጅቶች በኩል የቁጥር ተከታታይ ቁጥሮች ያስተካክሉ&gt; በማስተካከል ተከታታይ ቁጥር
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},ንጥል ያስፈልጋል ትዕዛዝ ቁጥር ይግዙ {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,የምርት ትዕዛዝ አልተፈጠረም
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',&#39;ቀን ጀምሮ&#39; በኋላ &#39;እስከ ቀን&#39; መሆን አለበት
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},ተማሪ ሁኔታ መለወጥ አይቻልም {0} የተማሪ ማመልከቻ ጋር የተያያዘ ነው {1}
DocType: Asset,Fully Depreciated,ሙሉ በሙሉ የቀነሰበት
,Stock Projected Qty,የክምችት ብዛት የታቀደበት
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},ይኸው የእርሱ ወገን አይደለም {0} የደንበኛ ፕሮጀክት ወደ {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},ይኸው የእርሱ ወገን አይደለም {0} የደንበኛ ፕሮጀክት ወደ {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,ምልክት ተደርጎበታል ክትትል ኤችቲኤምኤል
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers","ጥቅሶች, የእርስዎ ደንበኞች ልከዋል ተጫራቾች ሀሳቦች ናቸው"
DocType: Sales Order,Customer's Purchase Order,ደንበኛ የግዢ ትዕዛዝ
@ -3578,7 +3584,7 @@ DocType: Salary Slip,Hour Rate,ሰዓቲቱም ተመን
DocType: Stock Settings,Item Naming By,ንጥል በ መሰየምን
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},ሌላው ክፍለ ጊዜ መዝጊያ Entry {0} በኋላ ተደርጓል {1}
DocType: Production Order,Material Transferred for Manufacturing,ቁሳዊ ማኑፋክቸሪንግ ለ ተላልፈዋል
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,መለያ {0} ነው አይደለም አለ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,መለያ {0} ነው አይደለም አለ
DocType: Project,Project Type,የፕሮጀክት አይነት
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,ለዚህ ተግባር ስራ አስኪያጅ ስራ ተገኝቷል. ይህን ተግባር መሰረዝ አይችሉም.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,ወይ ዒላማ ብዛት ወይም የዒላማ መጠን የግዴታ ነው.
@ -3680,11 +3686,11 @@ DocType: C-Form,I,እኔ
DocType: Company,Asset Depreciation Cost Center,የንብረት ዋጋ መቀነስ ወጪ ማዕከል
DocType: Sales Order Item,Sales Order Date,የሽያጭ ትዕዛዝ ቀን
DocType: Sales Invoice Item,Delivered Qty,ደርሷል ብዛት
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,አጠቃላይ ድምር ግብር
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","ከተመረጠ, እያንዳንዱ ምርት ንጥል ልጆች ሁሉ የቁሳዊ ጥያቄዎች ውስጥ ይካተታል."
DocType: Assessment Plan,Assessment Plan,ግምገማ ዕቅድ
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,ደንበኛ {0} ተፈጥሯል.
DocType: Stock Settings,Limit Percent,ገድብ መቶኛ
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,እባክዎ የመምህርውን ስም ስርዓትን በስርዓት&gt; የትምህርት ቅንብሮች ያዋቅሩ
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,በአሁኑ ጊዜ በማንኛውም መጋዘን ውስጥ ምንም አክሲዮስ የለም
,Payment Period Based On Invoice Date,ደረሰኝ ቀን ላይ የተመሠረተ የክፍያ ክፍለ ጊዜ
DocType: Sample Collection,No. of print,የህትመት ብዛት
@ -3700,12 +3706,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),ተበዳሪዎች ({0})
DocType: Pricing Rule,Margin,ህዳግ
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,አዲስ ደንበኞች
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,አጠቃላይ ትርፍ%
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,አጠቃላይ ትርፍ%
DocType: Appraisal Goal,Weightage (%),Weightage (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,POS የመልዕክት መለወጥ
DocType: Bank Reconciliation Detail,Clearance Date,መልቀቂያ ቀን
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,የግምገማ ሪፖርት
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,አጠቃላይ የግዢ መጠን የግዴታ ነው
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,አጠቃላይ የግዢ መጠን የግዴታ ነው
DocType: Lead,Address Desc,DESC አድራሻ
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,ፓርቲ የግዴታ ነው
DocType: Journal Entry,JV-,JV-
@ -3737,7 +3743,6 @@ DocType: Account,Accumulated Depreciation,ሲጠራቀሙ መቀነስ
DocType: Supplier Scorecard Scoring Standing,Standing Name,ቋሚ ስም
DocType: Stock Entry,Customer or Supplier Details,የደንበኛ ወይም አቅራቢ ዝርዝሮች
DocType: Employee Loan Application,Required by Date,ቀን በሚጠይቀው
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),የዝቅተኛ ሂሳብ (ዶክተር - ክ)
DocType: Lead,Lead Owner,በእርሳስ ባለቤት
DocType: Bin,Requested Quantity,ጠይቀዋል ብዛት
DocType: Patient,Marital Status,የጋብቻ ሁኔታ
@ -3751,7 +3756,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,በርካታ ስሪቶች
DocType: Sales Invoice,Against Income Account,የገቢ መለያ ላይ
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% ደርሷል
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,ንጥል {0}: የዕቃው ብዛት {1} ዝቅተኛ ትዕዛዝ ብዛት {2} (ንጥል ፍቺ) ይልቅ ያነሰ ሊሆን አይችልም.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,ንጥል {0}: የዕቃው ብዛት {1} ዝቅተኛ ትዕዛዝ ብዛት {2} (ንጥል ፍቺ) ይልቅ ያነሰ ሊሆን አይችልም.
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,ወርሃዊ ስርጭት መቶኛ
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,እባክህ እንደ ሌላ ተጠቃሚ ግባ.
DocType: Territory,Territory Targets,ግዛት ዒላማዎች
@ -3850,7 +3855,7 @@ DocType: Program Enrollment,School House,ትምህርት ቤት
DocType: Serial No,Out of AMC,AMC ውጪ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,የተመዘገበ Depreciations ቁጥር Depreciations አጠቃላይ ብዛት በላይ ሊሆን አይችልም
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,የጥገና ጉብኝት አድርግ
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,የሽያጭ መምህር አስተዳዳሪ {0} ሚና ያላቸው ተጠቃሚው ወደ ያነጋግሩ
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,የሽያጭ መምህር አስተዳዳሪ {0} ሚና ያላቸው ተጠቃሚው ወደ ያነጋግሩ
DocType: Company,Default Cash Account,ነባሪ በጥሬ ገንዘብ መለያ
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,ኩባንያ (አይደለም የደንበኛ ወይም አቅራቢው) ጌታው.
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,ይህ የዚህ ተማሪ በስብሰባው ላይ የተመሠረተ ነው
@ -4000,7 +4005,6 @@ DocType: Delivery Note Item,From Warehouse,መጋዘን ከ
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,ለተጠቀሱት መስፈርቶች ምንም ሰራተኞች የሉም
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,ዕቃዎች መካከል ቢል ጋር ምንም ንጥሎች ለማምረት
DocType: Restaurant,Default Customer,ነባሪ ደንበኛ
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,እባክዎ የሰራተኛ ስም ማስቀመጫ ሲስተም በሰብል ሪሶርስ&gt; HR ቅንጅቶች ያዘጋጁ
DocType: Assessment Plan,Supervisor Name,ሱፐርቫይዘር ስም
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,ቀጠሮው ለተመሳሳይ ቀን መደረግ እንዳለበት አረጋግጡ
DocType: Program Enrollment Course,Program Enrollment Course,ፕሮግራም ምዝገባ ኮርስ
@ -4118,7 +4122,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,የድር ጣቢያ መግለጫ
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,ፍትህ ውስጥ የተጣራ ለውጥ
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,እጅግ በጣም አዲስ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,በመጀመሪያ የግዢ ደረሰኝ {0} ይቅር እባክዎ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,በመጀመሪያ የግዢ ደረሰኝ {0} ይቅር እባክዎ
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","የኢሜይል አድራሻ አስቀድሞ ስለ አለ, ልዩ መሆን አለበት {0}"
DocType: Serial No,AMC Expiry Date,AMC የሚቃጠልበት ቀን
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,ደረሰኝ
@ -4135,7 +4139,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,ገና ምን
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,የገንዘብ ፍሰት መግለጫ
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},የብድር መጠን ከፍተኛ የብድር መጠን መብለጥ አይችልም {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,ፈቃድ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},ሲ-ቅጽ ይህን የደረሰኝ {0} ያስወግዱ እባክዎ {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},ሲ-ቅጽ ይህን የደረሰኝ {0} ያስወግዱ እባክዎ {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,እናንተ ደግሞ ካለፈው በጀት ዓመት ሚዛን በዚህ የበጀት ዓመት ወደ ቅጠሎች ማካተት የሚፈልጉ ከሆነ ወደፊት አኗኗራችሁ እባክዎ ይምረጡ
DocType: GL Entry,Against Voucher Type,ቫውቸር አይነት ላይ
DocType: Physician,Phone (R),ስልክ (አር)
@ -4147,7 +4151,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,ቢ አሉታዊ
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,የጥገና ሁኔታን ለመሰረዝ ወይም ለመጠናቀቅ የተሞላ መሆን አለበት
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},መለያ {0} ነው ኩባንያ ንብረት አይደለም {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,{0} ረድፍ ላይ መለያ ቁጥር አሰጣጥ ማስታወሻ ጋር አይዛመድም
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,{0} ረድፍ ላይ መለያ ቁጥር አሰጣጥ ማስታወሻ ጋር አይዛመድም
DocType: Student,Guardian Details,አሳዳጊ ዝርዝሮች
DocType: C-Form,C-Form,ሲ-ቅጽ
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,በርካታ ሠራተኞች ምልክት ክትትል
@ -4189,7 +4193,7 @@ DocType: Opening Invoice Creation Tool,Sales,የሽያጭ
DocType: Stock Entry Detail,Basic Amount,መሰረታዊ መጠን
DocType: Training Event,Exam,ፈተና
DocType: Complaint,Complaint,ቅሬታ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},የመጋዘን የአክሲዮን ንጥል ያስፈልጋል {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},የመጋዘን የአክሲዮን ንጥል ያስፈልጋል {0}
DocType: Leave Allocation,Unused leaves,ያልዋለ ቅጠሎች
DocType: Patient,Alcohol Past Use,አልኮል ጊዜ ያለፈበት አጠቃቀም
DocType: Fertilizer Content,Fertilizer Content,የማዳበሪያ ይዘት
@ -4313,6 +4317,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,ፎርሙላ
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,ተከታታይ #
DocType: Lab Test Template,Lab Test Template,የሙከራ መለኪያ አብነት
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,የሽያጭ መለያ
DocType: Purchase Invoice Item,Total Weight,ጠቅላላ ክብደት
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,የሽያጭ ላይ ኮሚሽን
DocType: Offer Letter Term,Value / Description,እሴት / መግለጫ
@ -4469,7 +4474,7 @@ Updated via 'Time Log'",ደቂቃዎች ውስጥ «ጊዜ Log&quot; በኩል
DocType: Customer,From Lead,ሊድ ከ
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,ትዕዛዞች ምርት ከእስር.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,በጀት ዓመት ይምረጡ ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,POS መገለጫ POS የሚመዘገብ ለማድረግ ያስፈልጋል
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,POS መገለጫ POS የሚመዘገብ ለማድረግ ያስፈልጋል
DocType: Program Enrollment Tool,Enroll Students,ተማሪዎች ይመዝገቡ
DocType: Lab Test,Approved Date,የተፈቀደበት ቀን
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,መደበኛ ሽያጭ
@ -4545,7 +4550,7 @@ DocType: Employee,Held On,የተያዙ ላይ
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,የምርት ንጥል
,Employee Information,የሰራተኛ መረጃ
DocType: Stock Entry Detail,Additional Cost,ተጨማሪ ወጪ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","ቫውቸር ምንም ላይ የተመሠረተ ማጣሪያ አይችሉም, ቫውቸር በ ተመድበው ከሆነ"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","ቫውቸር ምንም ላይ የተመሠረተ ማጣሪያ አይችሉም, ቫውቸር በ ተመድበው ከሆነ"
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,አቅራቢው ትዕምርተ አድርግ
DocType: Quality Inspection,Incoming,ገቢ
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,ለሽያጭ እና ለግዢ ነባሪ የግብር አብነቶች ተፈጥረዋል.
@ -4562,7 +4567,7 @@ DocType: Batch,Batch ID,ባች መታወቂያ
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},ማስታወሻ: {0}
,Delivery Note Trends,የመላኪያ ማስታወሻ በመታየት ላይ ያሉ
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,ይህ ሳምንት ማጠቃለያ
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,የክምችት ብዛት ውስጥ
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,የክምችት ብዛት ውስጥ
DocType: Delivery Trip,Calculate Estimated Arrival Times,የተገመተ የመድረስ ጊዜዎችን አስሉ
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,መለያ: {0} ብቻ የአክሲዮን ግብይቶች በኩል መዘመን ይችላሉ
DocType: Student Group Creation Tool,Get Courses,ኮርሶች ያግኙ
@ -4578,7 +4583,7 @@ DocType: Purchase Order,To Bill,ቢል
DocType: Material Request,% Ordered,% የዕቃው መረጃ
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.","የትምህርት የተመሠረተ የተማሪዎች ቡድን, የቀየረ ፕሮግራም ምዝገባ ውስጥ የተመዘገቡ ኮርሶች ጀምሮ ለእያንዳንዱ ተማሪ ሊረጋገጥ ይሆናል."
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,ጭማቂዎች
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,አማካኝ. ሊገዙ ተመን
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,አማካኝ. ሊገዙ ተመን
DocType: Task,Actual Time (in Hours),(ሰዓቶች ውስጥ) ትክክለኛ ሰዓት
DocType: Employee,History In Company,ኩባንያ ውስጥ ታሪክ
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},አዲስ መልዕክት ከ {ላኪ}
@ -4626,7 +4631,7 @@ DocType: Asset Repair,Asset Repair,የንብረት ጥገና
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},ረድፍ {0}: ወደ BOM # ምንዛሬ {1} በተመረጠው ምንዛሬ እኩል መሆን አለበት {2}
DocType: Journal Entry Account,Exchange Rate,የመለወጫ ተመን
DocType: Patient,Additional information regarding the patient,በሽተኛውን በተመለከተ ተጨማሪ መረጃ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,የሽያጭ ትዕዛዝ {0} ማቅረብ አይደለም
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,የሽያጭ ትዕዛዝ {0} ማቅረብ አይደለም
DocType: Homepage,Tag Line,መለያ መስመር
DocType: Fee Component,Fee Component,የክፍያ ክፍለ አካል
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,መርከቦች አስተዳደር
@ -4838,7 +4843,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,ግምገማ ውጤ
DocType: Employee Education,Employee Education,የሰራተኛ ትምህርት
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,ንጥል ቡድን ሠንጠረዥ ውስጥ አልተገኘም አባዛ ንጥል ቡድን
DocType: Land Unit,Parent Land Unit,ወላጅ መሬት መለኪያ
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,ይህ የዕቃው መረጃ ማምጣት ያስፈልጋል.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,ይህ የዕቃው መረጃ ማምጣት ያስፈልጋል.
DocType: Fertilizer,Fertilizer Name,የማዳበሪያ ስም
DocType: Salary Slip,Net Pay,የተጣራ ክፍያ
DocType: Account,Account,ሒሳብ
@ -4917,7 +4922,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),(ምንጭ / ዒላማ
DocType: Item Customer Detail,Ref Code,ማጣቀሻ ኮድ
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,የቡድን ቡድን በ POS ዝርዝር ውስጥ ያስፈልጋል
apps/erpnext/erpnext/config/hr.py +12,Employee records.,የሰራተኛ መዝገቦች.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,ቀጣይ የእርጅና ቀን ማዘጋጀት እባክዎ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,ቀጣይ የእርጅና ቀን ማዘጋጀት እባክዎ
DocType: HR Settings,Payroll Settings,ከደመወዝ ክፍያ ቅንብሮች
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,ያልሆኑ የተገናኘ ደረሰኞች እና ክፍያዎች አዛምድ.
DocType: POS Settings,POS Settings,የ POS ቅንብሮች
@ -5084,7 +5089,7 @@ DocType: Item,Customer Code,የደንበኛ ኮድ
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},ለ የልደት አስታዋሽ {0}
DocType: Asset Maintenance Task,Last Completion Date,መጨረሻ የተጠናቀቀበት ቀን
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,የመጨረሻ ትዕዛዝ ጀምሮ ቀናት
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,መለያ ወደ ዴቢት አንድ ሚዛን ሉህ መለያ መሆን አለበት
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,መለያ ወደ ዴቢት አንድ ሚዛን ሉህ መለያ መሆን አለበት
DocType: Buying Settings,Naming Series,መሰየምን ተከታታይ
DocType: Leave Block List,Leave Block List Name,አግድ ዝርዝር ስም ውጣ
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,ኢንሹራንስ የመጀመሪያ ቀን መድን የመጨረሻ ቀን ያነሰ መሆን አለበት
@ -5210,6 +5215,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,የክፍያ ምዝግቦችን ያግኙ
DocType: Quotation Item,Against Docname,DOCNAME ላይ
DocType: SMS Center,All Employee (Active),ሁሉም ሰራተኛ (ንቁ)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,ደንበኛ&gt; የሽያጭ ቡድን&gt; ግዛት
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,አሁን ይመልከቱ
DocType: BOM,Raw Material Cost,ጥሬ የቁሳዊ ወጪ
DocType: Item Reorder,Re-Order Level,ዳግም-ትዕዛዝ ደረጃ
@ -5308,7 +5314,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,መቀመጫ አቅም
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,ቤተ ሙከራ የሙከራ ቡድኖች
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,ደንበኛ&gt; የሽያጭ ቡድን&gt; ግዛት
DocType: Project,Total Expense Claim (via Expense Claims),ጠቅላላ የወጪ የይገባኛል ጥያቄ (የወጪ የይገባኛል በኩል)
DocType: GST Settings,GST Summary,GST ማጠቃለያ
DocType: Assessment Result,Total Score,አጠቃላይ ነጥብ
@ -5321,7 +5326,7 @@ DocType: Batch,Source Document Type,ምንጭ የሰነድ አይነት
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,የኮርስ መርሃግብሮች መከተል ተፈጠረ
DocType: Journal Entry,Total Debit,ጠቅላላ ዴቢት
DocType: Manufacturing Settings,Default Finished Goods Warehouse,ነባሪ ጨርሷል ዕቃዎች መጋዘን
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,የሽያጭ ሰው
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,የሽያጭ ሰው
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,በጀት እና ወጪ ማዕከል
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,ባለብዙ ነባሪ የክፍያ ስልት አይፈቀድም
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,
@ -5494,7 +5499,7 @@ DocType: Program,Program Name,የፕሮግራም ስም
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,ለ ታክስ ወይም ክፍያ ተመልከት
DocType: Driver,Driving License Category,የመንጃ ፍቃድ ምድብ
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,ትክክለኛው ብዛት የግዴታ ነው
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} በአሁኑ ጊዜ {1} የአቅጣጫ ጠቋሚ የመቁጠሪያ መለያ ደረጃ አለው, እና ለእዚህ አቅራቢ ግዢ ትዕዛዞች በጥንቃቄ ማስቀመጥ አለበት."
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} በአሁኑ ጊዜ {1} የአቅጣጫ ጠቋሚ የመቁጠሪያ መለያ ደረጃ አለው, እና ለእዚህ አቅራቢ ግዢ ትዕዛዞች በጥንቃቄ ማስቀመጥ አለበት."
DocType: Asset Maintenance Team,Asset Maintenance Team,የንብረት ጥገና ቡድን
DocType: Employee Loan,Loan Type,የብድር አይነት
DocType: Scheduling Tool,Scheduling Tool,ዕቅድ ማውጫ መሣሪያ

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,وصفة المختبر
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,فرز حسب السعر
,Delay Days,تأخير أيام
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,نفقات الصيانة
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},الرقم التسلسلي: {0} تم الإشارة إليه من قبل في فاتورة المبيعات: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},الرقم التسلسلي: {0} تم الإشارة إليه من قبل في فاتورة المبيعات: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,فاتورة
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,جعل الاحتفاظ دخول الأسهم
DocType: Purchase Invoice Item,Item Weight Details,وزن السلعة التفاصيل
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,الأم تفاصيل docname
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}",المرجع: {0}، رمز العنصر: {1} والعميل: {2}
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,كجم
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,إعلان عن وظيفة شاغرة
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},لم يتم تحديد بوم للتعاقد من الباطن البند {0} في الصف {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},لم يتم تحديد بوم للتعاقد من الباطن البند {0} في الصف {1}
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} النتيجة المقدمة
DocType: Item Attribute,Increment,الزيادة
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,الفترة الزمنية
@ -150,7 +150,7 @@ DocType: Patient,Married,متزوج
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},غير مسموح به {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,الحصول على البنود من
DocType: Price List,Price Not UOM Dependant,السعر لا تعتمد على أوم
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},لا يمكن تحديث المخزون ضد تسليم مذكرة {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},لا يمكن تحديث المخزون ضد تسليم مذكرة {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},المنتج {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,لم يتم إدراج أية عناصر
DocType: Asset Repair,Error Description,وصف خاطئ
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,توفيق
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,بقالة
DocType: Quality Inspection Reading,Reading 1,قراءة 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,صناديق التقاعد
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,تاريخ الاستهلاك التالي لا يمكن أن يكون قبل تاريخ الشراء
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,تاريخ الاستهلاك التالي لا يمكن أن يكون قبل تاريخ الشراء
DocType: Crop,Perennial,الدائمة
DocType: Consultation,Consultation Date,تاريخ التشاور
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,قائمة المنتجات واكتشاف المستخدمين إربينكست
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,شطب مركز التكلفة
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""","مثلا ""المدرسة الابتدائية"" أو ""الجامعة"""
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,تقارير المخزون
DocType: Warehouse,Warehouse Detail,تفاصيل المستودع
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},تم تجاوز الحد المسموح به للدين للزبون {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},تم تجاوز الحد المسموح به للدين للزبون {0} {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,تاريخ نهاية المدة لا يمكن أن يكون في وقت لاحق من تاريخ نهاية السنة للعام الدراسي الذي يرتبط مصطلح (السنة الأكاديمية {}). يرجى تصحيح التواريخ وحاول مرة أخرى.
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","""اصل ثابت"" لا يمكن أن يكون غير محدد، حيث يوجد سجل أصول مقابل البند"
DocType: Delivery Trip,Departure Time,وقت المغادرة
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,دخول الطالب
DocType: Quality Inspection,Get Specification Details,الحصول على تفاصيل المواصفات
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,قوالب ترتيب الموردين.
DocType: Lead,Interested,مهتم
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,افتتاحي
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,افتتاحي
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},من {0} إلى {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,أخفق إعداد الضرائب
DocType: Item,Copy From Item Group,نسخة من المجموعة السلعة
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,تاريخ ترك العمل يجب أن يكون بعد تاريخ الالتحاق بالعمل
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,الأجزات في السنة
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,"الصف {0}: يرجى اختيار ""دفعة مقدمة"" مقابل الحساب {1} إذا كان هذا الادخال دفعة مقدمة."
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},مستودع {0} لا تنتمي إلى شركة {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},مستودع {0} لا تنتمي إلى شركة {1}
DocType: Email Digest,Profit & Loss,الخسارة و الأرباح
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,لتر
DocType: Task,Total Costing Amount (via Time Sheet),إجمالي حساب التكاليف المبلغ (عبر ورقة الوقت)
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,معدل وكمية
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,يستند ذلك إلى معامالت ضد هذه الشركة. انظر الجدول الزمني أدناه للحصول على التفاصيل
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,إبلاغ عن طريق البريد الإلكتروني على خلق مادة التلقائي طلب
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,مقاومة
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Consultationt
DocType: Journal Entry,Multi Currency,متعدد العملات
DocType: Opening Invoice Creation Tool,Invoice Type,نوع الفاتورة
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,اشعار تسليم
@ -528,7 +529,6 @@ DocType: Email Digest,Credit Balance,الرصيد الدائن
DocType: Employee,Widowed,ارمل
DocType: Request for Quotation,Request for Quotation,طلب للحصول على الاقتباس
DocType: Healthcare Settings,Require Lab Test Approval,يلزم الموافقة على اختبار المختبر
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,رمز البند&gt; مجموعة المنتجات&gt; العلامة التجارية
DocType: Salary Slip Timesheet,Working Hours,ساعات العمل
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,إجمالي المعلقة
DocType: Naming Series,Change the starting / current sequence number of an existing series.,تغيير رقم تسلسل بدء / الحالي من سلسلة الموجودة.
@ -557,7 +557,7 @@ DocType: Subscription,Yearly,سنويا
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,الرجاء إدخال مركز التكلفة
DocType: Drug Prescription,Dosage,جرعة
DocType: Journal Entry Account,Sales Order,طلبات العملاء
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,متوسط سعر المبيعات
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,متوسط سعر المبيعات
DocType: Assessment Plan,Examiner Name,اسم الممتحن
DocType: Lab Test Template,No Result,لا نتيجة
DocType: Purchase Invoice Item,Quantity and Rate,كمية وقيم
@ -605,6 +605,7 @@ DocType: Employee,Health Concerns,شؤون صحية
DocType: Payroll Entry,Select Payroll Period,تحديد فترة دفع الرواتب
DocType: Purchase Invoice,Unpaid,غير مدفوع
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,محفوظة للبيع
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,الرجاء الإعداد نظام تسمية الموظف في الموارد البشرية&gt; إعدادات الموارد البشرية
DocType: Packing Slip,From Package No.,من رقم حزمة
DocType: Item Attribute,To Range,تتراوح
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,الأوراق المالية و الودائع
@ -629,11 +630,11 @@ DocType: Pricing Rule,Valid Upto,صالحة لغاية
DocType: Training Event,Workshop,ورشة عمل
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,تحذير أوامر الشراء
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,أدرج بعض من زبائنك. ويمكن أن تكون منظمات أو أفراد.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,يكفي لبناء أجزاء
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,يكفي لبناء أجزاء
DocType: POS Profile User,POS Profile User,نقاط البيع الشخصية الملف الشخصي
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,دخل مباشر
DocType: Patient Appointment,Date TIme,تاريخ التاريخ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account",لا يمكن الفلتره علي اساس (الحساب)، إذا تم وضعه في مجموعة على اساس (حساب)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account",لا يمكن الفلتره علي اساس (الحساب)، إذا تم وضعه في مجموعة على اساس (حساب)
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,موظف إداري
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,إنشاء الشركة والضرائب
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,الرجاء تحديد الدورة التدريبية
@ -643,7 +644,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,حساب الفرق
DocType: Purchase Invoice,Supplier GSTIN,مورد غستين
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,لا يمكن إغلاق المهمة لان المهمة التابعة لها {0} غير مغلقة.
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,الرجاء إدخال المخزن الذي سيتم رفع طلب المواد اليه
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,الرجاء إدخال المخزن الذي سيتم رفع طلب المواد اليه
DocType: Production Order,Additional Operating Cost,تكاليف تشغيل اضافية
DocType: Lab Test Template,Lab Routine,مختبر الروتينية
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,مستحضرات التجميل
@ -811,7 +812,7 @@ DocType: Employee,Passport Number,رقم جواز السفر
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,العلاقة مع ولي الامر 2
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,مدير
DocType: Payment Entry,Payment From / To,الدفع من / إلى
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},الحد المسموح به للدين الجديد أقل من المبلغ الحالي المستحق على الزبون. يجب أن يكون الحد المسموح به للدين على الأقل {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},الحد المسموح به للدين الجديد أقل من المبلغ الحالي المستحق على الزبون. يجب أن يكون الحد المسموح به للدين على الأقل {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},يرجى تعيين الحساب في مستودع {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,'على أساس' و 'المجموعة حسب' لا يمكن أن يكونا نفس الشيء
DocType: Sales Person,Sales Person Targets,اهداف رجل المبيعات
@ -822,7 +823,7 @@ DocType: Lab Test Template,Compound,مركب
DocType: Student Batch Name,Batch Name,اسم الدفعة
DocType: Fee Validity,Max number of visit,الحد الأقصى لعدد الزيارات
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,الجدول الزمني الانشاء:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},يرجى تعيين حساب النقد أو الحساب المصرفيالافتراضي لطريقة الدفع {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},يرجى تعيين حساب النقد أو الحساب المصرفيالافتراضي لطريقة الدفع {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,سجل
DocType: GST Settings,GST Settings,إعدادات غست
DocType: Selling Settings,Customer Naming By,تسمية العملاء بواسطة
@ -946,7 +947,7 @@ DocType: Delivery Note,Customer's Purchase Order No,رقم أمر الشراء
DocType: Budget,Budget Against,الميزانية مقابل
DocType: Employee,Cell Number,رقم الهاتف
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,ليس هناك موظف لمعايير معينة. تحقق من عدم إنشاء قسائم الراتب.
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,إنشاء طلب مواد تلقائي
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,إنشاء طلب مواد تلقائي
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,مفقود
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,لا يمكنك إدخال مستند الصرف الحالي المقابل للإدخال بدفتر اليومية في العمود
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,محفوظة لتصنيع
@ -954,7 +955,7 @@ DocType: Soil Texture,Sand,رمل
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,طاقة
DocType: Opportunity,Opportunity From,فرصة من
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,بيان الراتب الشهري.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,الصف {0}: {1} الأرقام التسلسلية المطلوبة للبند {2}. لقد قدمت {3}.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,الصف {0}: {1} الأرقام التسلسلية المطلوبة للبند {2}. لقد قدمت {3}.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,يرجى تحديد جدول
DocType: BOM,Website Specifications,موقع المواصفات
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} هو عنوان بريد إلكتروني غير صالح في &quot;المستلمين&quot;
@ -1042,7 +1043,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,طلب اقتباس
DocType: Vital Signs,Heart Rate / Pulse,معدل ضربات القلب / نبض
DocType: Company,Default Bank Account,حساب مصرفي افتراضي
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first",لتصفية استنادا الحزب، حدد حزب النوع الأول
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first",لتصفية استنادا الحزب، حدد حزب النوع الأول
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},&quot;الأوراق المالية التحديث&quot; لا يمكن التحقق من أنه لم يتم تسليم المواد عن طريق {0}
DocType: Vehicle,Acquisition Date,تاريخ شراء المركبة
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,Nos
@ -1066,7 +1067,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),حمل رأس الرسالة (حافظ على سهولة استخدام الويب ك 900 بكسل × 100 بكسل)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: الحساب {2} لا يمكن أن يكون مجموعة
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,البند الصف {IDX}: {DOCTYPE} {} DOCNAME لا وجود له في أعلاه &#39;{DOCTYPE} المائدة
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,الجدول الزمني {0} بالفعل منتهي أو ملغى
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,الجدول الزمني {0} بالفعل منتهي أو ملغى
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,لايوجد مهام
DocType: Item Variant Settings,Copy Fields to Variant,نسخ الحقول إلى متغير
DocType: Asset,Opening Accumulated Depreciation,الاستهلاك التراكمي الافتتاحي
@ -1178,9 +1179,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,المواد خطة للجمعيات الفرعي
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,المناديب و المناطق
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,قائمة المواد {0} يجب أن تكون نشطة
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),الإغلاق (الافتتاح + الإجمالي)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),الإغلاق (الافتتاح + الإجمالي)
DocType: Journal Entry,Depreciation Entry,انخفاض الدخول
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,يرجى تحديد نوع الوثيقة أولاً
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,الطباعة بعملة الحساب
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,إلغاء المواد الخاصة بالزيارة {0} قبل إلغاء زيارة الصيانة هذه
DocType: Crop Cycle,ISO 8016 standard,إسو 8016 القياسية
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},رقم المسلسل {0} لا ينتمي إلى البند {1}
@ -1206,7 +1208,7 @@ DocType: Purchase Receipt,Range,نطاق
DocType: Supplier,Default Payable Accounts,الحسابات الدائنة الافتراضي
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,الموظف {0} غير نشط أو غير موجود
DocType: Fee Structure,Components,مكونات
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},الرجاء إدخال فئة الأصول في البند {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},الرجاء إدخال فئة الأصول في البند {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,تم تحديث متغيرات البند {0}
DocType: Quality Inspection Reading,Reading 6,قراءة 6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1258,6 +1260,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,اسم الشركة
DocType: SMS Center,Total Message(s),مجموع الرسائل ( ق )
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,اختر البند لنقل
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,يرجى تعيين سلسلة التسمية ل {0} عبر الإعداد&gt; إعدادات&gt; تسمية السلسلة
DocType: Purchase Invoice,Additional Discount Percentage,نسبة خصم إضافي
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,عرض قائمة من جميع ملفات الفيديو مساعدة
DocType: Agriculture Analysis Criteria,Soil Texture,قوام التربة
@ -1285,7 +1288,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,بند الموقع الالكتروني بقائمة المواد
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,تحميل رئيس رسالتكم والشعار. (يمكنك تحريرها لاحقا).
DocType: Timesheet Detail,Bill,فاتورة
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,تم إدخال تاريخ الاستهلاك التالي بتاريخ سابق
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,تم إدخال تاريخ الاستهلاك التالي بتاريخ سابق
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,أبيض
DocType: SMS Center,All Lead (Open),جميع الزبائن المحتملين (مفتوح)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),صف {0}: الكمية لا تتوفر لل{4} في مستودع {1} في بالإرسال وقت دخول ({2} {3})
@ -1301,7 +1304,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,تاريخ جهة الاتصال التالية
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,الكمية الافتتاحية
DocType: Healthcare Settings,Appointment Reminder,تذكير التعيين
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,الرجاء إدخال حساب لتغيير القيمة
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,الرجاء إدخال حساب لتغيير القيمة
DocType: Program Enrollment Tool Student,Student Batch Name,طالب اسم دفعة
DocType: Consultation,Doctor,طبيب
DocType: Holiday List,Holiday List Name,اسم قائمة العطلات
@ -1317,6 +1320,7 @@ DocType: Patient,Patient Relation,علاقة المريض
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,أداة تخصيص الإجازة
DocType: Item,Hub Category to Publish,فئة المحور للنشر
DocType: Leave Block List,Leave Block List Dates,التواريخ الممنوع اخذ اجازة فيها
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,يرجى إعداد سلسلة الترقيم للحضور عن طريق الإعداد&gt; سلسلة الترقيم
DocType: Sales Invoice,Billing Address GSTIN,عنوان إرسال الفواتير غستين
DocType: Assessment Plan,Evaluate,تقييم
DocType: Workstation,Net Hour Rate,صافي سعر الساعة
@ -1350,7 +1354,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,اصناف استلام الشر
DocType: Purchase Receipt,PREC-RET-,PREC-RET-
DocType: POS Profile,Sales Invoice Payment,فاتورة مبيعات الدفع
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,مستودع محجوزة في ترتيب المبيعات / السلع تامة الصنع في معرض النماذج
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,كمية البيع
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,كمية البيع
DocType: Repayment Schedule,Interest Amount,مبلغ الفائدة
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,أنت الموافق المصروفات لهذا السجل.الرجاء تحديث الحالة و حفظ البيانات
DocType: Serial No,Creation Document No,إنشاء وثيقة لا
@ -1441,7 +1445,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,فتح ميزان المحاسبة
,GST Sales Register,غست مبيعات التسجيل
DocType: Sales Invoice Advance,Sales Invoice Advance,فاتورة مبيعات المقدمة
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,لا شيء للطلب
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,لا شيء للطلب
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,حدد النطاقات الخاصة بك
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,سيتم نسخ الحقول فقط في وقت الإنشاء.
@ -1451,11 +1455,11 @@ DocType: Cheque Print Template,Payer Settings,إعدادات الدافع
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","سيتم إلحاق هذا إلى بند رمز للمتغير. على سبيل المثال، إذا اختصار الخاص بك هو ""SM""، ورمز البند هو ""T-SHIRT""، رمز العنصر المتغير سيكون ""T-SHIRT-SM"""
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,صافي الأجر (بالحروف) تكون مرئية بمجرد حفظ كشف راتب.
DocType: Purchase Invoice,Is Return,هو العائد
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,الحذر
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,الحذر
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,ارجاع / اشعار مدين
DocType: Price List Country,Price List Country,قائمة الأسعار البلد
DocType: Item,UOMs,وحدات القياس
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} أرقام تسلسلية صالحة للبند {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} أرقام تسلسلية صالحة للبند {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,لا يمكن تغيير رمز السلعة للرقم التسلسلي
DocType: Purchase Invoice Item,UOM Conversion Factor,عامل تحويل وحدة القياس
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,الرجاء إدخال كود البند للحصول على رقم باتش
@ -1559,7 +1563,7 @@ DocType: Journal Entry,Get Outstanding Invoices,الحصول على فواتير
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,اوامر البيع {0} غير صالحه
DocType: Supplier Scorecard,Warn for new Request for Quotations,تحذير لطلب جديد للاقتباسات
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,أوامر الشراء تساعدك على تخطيط ومتابعة مشترياتك
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged",عذراً، الشركات لا يمكن دمجها
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged",عذراً، الشركات لا يمكن دمجها
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,وصفات اختبار المختبر
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",إجمالي كمية العدد / نقل {0} في المواد طلب {1} \ لا يمكن أن يكون أكبر من الكمية المطلوبة {2} لالبند {3}
@ -1597,7 +1601,6 @@ DocType: Vehicle,Fuel UOM,وحدة قياس الوقود
DocType: Warehouse,Warehouse Contact Info,معلومات اتصال المستودع
DocType: Payment Entry,Write Off Difference Amount,شطب الفرق المبلغ
DocType: Volunteer,Volunteer Name,اسم المتطوعين
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,يرجى إعداد نظام تسمية المعلم في التعليم&gt; إعدادات التعليم
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent",{0}: البريد الإلكتروني للموظف غير موجود، وبالتالي لن يتم إرسال البريد الإلكتروني
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},قاعدة الشحن لا تنطبق على البلد {0}
DocType: Item,Foreign Trade Details,الخارجية تفاصيل تجارة
@ -1609,7 +1612,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,رقم لفة المجموعة
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry",ل{0}، فقط حساب الدائن يمكن ربطه مقابل قيد مدين أخر
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,يجب أن يكون مجموع كل الأوزان مهمة 1. الرجاء ضبط أوزان جميع المهام المشروع وفقا لذلك
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,اشعار تسليم {0} لم يتم تقديمها
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,اشعار تسليم {0} لم يتم تقديمها
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,البند {0} يجب أن يكون عنصر التعاقد الفرعي
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,المعدات الكبيرة
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.",خاصية قاعدة التسعير يمكن تطبيقها على بند، فئة بنود او علامة التجارية.
@ -1634,7 +1637,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,يوجد مستودع الطفل لهذا المستودع. لا يمكنك حذف هذا المستودع.
DocType: Item,Website Item Groups,مجموعات الأصناف للموقع
DocType: Purchase Invoice,Total (Company Currency),مجموع (شركة العملات)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,الرقم التسلسلي {0} دخلت أكثر من مرة
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,الرقم التسلسلي {0} دخلت أكثر من مرة
DocType: Journal Entry,Journal Entry,قيد يومية
DocType: Expense Claim Advance,Unclaimed amount,المبلغ غير المطالب به
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} العنصر قيد الأستخدام
@ -1730,7 +1733,7 @@ DocType: Email Digest,For Company,للشركة
apps/erpnext/erpnext/config/support.py +17,Communication log.,سجل التواصل.
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.",تم تعطيل الوصول إلى طلب عرض الاسعار من خلال البوابة الالكترونية، للمزيد تحقق من إعدادات البوابة الالكترونية.
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,سجل الأداء بطاقة الأداء المتغير
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,قيمة الشراء
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,قيمة الشراء
DocType: Sales Invoice,Shipping Address Name,الشحن العنوان الاسم
DocType: Material Request,Terms and Conditions Content,محتويات الشروط والأحكام
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,حدثت أخطاء أثناء إنشاء جدول الدورات التدريبية
@ -1994,7 +1997,7 @@ DocType: Expense Claim,Total Amount Reimbursed,مجموع المبلغ المس
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,وذلك بناء على السجلات مقابل هذه المركبة. للمزيد انظر التسلسل الزمني أدناه
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},مقابل فاتورة المورد {0} بتاريخ {1}
DocType: Customer,Default Price List,قائمة الأسعار الافتراضي
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,سجل حركة الأصول {0} تم إنشاؤه
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,سجل حركة الأصول {0} تم إنشاؤه
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,لا يمكنك حذف السنة المالية {0}. تم تحديد السنة المالية {0} كأفتراضي في الإعدادات الشاملة
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,يوجد عميل يحمل الاسم نفسه من قبل
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,سيؤدي هذا إلى تقديم قسائم الراتب وإنشاء الدخول إلى دفتر الأستحقاق. هل تريد المتابعة؟
@ -2008,6 +2011,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,التسعير
DocType: Quotation,Term Details,تفاصيل الشروط
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,لا يمكن تسجيل أكثر من {0} طلاب لمجموعة الطلاب هذه.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),الإجمالي (بدون ضريبة)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,عدد الرصاص
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} يجب أن يكون أكبر من 0
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,مخزون متاح
@ -2026,7 +2030,6 @@ DocType: Lab Test,Technician Name,اسم فني
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,إلغاء ربط الدفع على إلغاء الفاتورة
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},ينبغي أن تكون القراءة الحالية لعداد المسافات اكبر من القراءة السابقة لعداد المسافات للمركبة {0}
DocType: Restaurant Reservation,No Show,لا إظهار
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,يرجى تعيين سلسلة التسمية ل {0} عبر الإعداد&gt; إعدادات&gt; تسمية السلسلة
DocType: Shipping Rule Country,Shipping Rule Country,بلد قاعدة الشحن
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,الاجازات و الحضور
DocType: Maintenance Visit,Partially Completed,أنجزت جزئيا
@ -2118,7 +2121,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,مجموعة الطالب
DocType: Grant Application,Assessment Mark (Out of 10),علامة التقييم (من أصل 10)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 رقم الجوال
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,رئيسي
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,رئيسي
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,مختلف
DocType: Naming Series,Set prefix for numbering series on your transactions,تحديد بادئة للترقيم المتسلسل على المعاملات الخاصة بك
DocType: Employee Attendance Tool,Employees HTML,الموظفين HTML
@ -2166,7 +2169,7 @@ DocType: Crop,Crop Spacing,تباعد المحاصيل
DocType: Course,Course Abbreviation,اختصار المقرر التعليمي
DocType: Student Leave Application,Student Leave Application,طالب ترك التطبيق
DocType: Item,Will also apply for variants,سوف تطبق أيضا على المتغيرات
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}",لا يمكن إلغاء الأصول، لانها بالفعل {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}",لا يمكن إلغاء الأصول، لانها بالفعل {0}
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},الموظف {0} لديه اجازة نصف يوم في {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},عدد ساعات العمل الكلي يجب ألا يكون أكثر من العدد الأقصى لساعات العمل {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,في
@ -2350,9 +2353,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),تاريخ الإنتهاء الفعلي (عبر ورقة الوقت)
DocType: Soil Texture,Soil Type,نوع التربة
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},مبلغ {0} {1} مقابل {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,رسالة جديدة
,Quotation Trends,مؤشرات المناقصة
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},فئة البند غير مذكورة في ماستر البند لهذا البند {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,مدين لحساب يجب أن يكون حساب مدين
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,مدين لحساب يجب أن يكون حساب مدين
DocType: Shipping Rule,Shipping Amount,مبلغ الشحن
DocType: Supplier Scorecard Period,Period Score,فترة النتيجة
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,إضافة العملاء
@ -2363,7 +2367,7 @@ DocType: Purchase Order,Delivered,تسليم
,Vehicle Expenses,مصاريف السيارة
DocType: Serial No,Invoice Details,تفاصيل الفاتورة
DocType: Grant Application,Show on Website,عرض على الموقع
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},{0} العمر الافتراضي النافع المتوقع يجب أن يكون أكبر من أو يساوي
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},{0} العمر الافتراضي النافع المتوقع يجب أن يكون أكبر من أو يساوي
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,ابدأ
DocType: Hub Category,Hub Category,فئة المحور
DocType: Purchase Invoice,SEZ,SEZ
@ -2394,7 +2398,7 @@ DocType: Patient,Patient Details,تفاصيل المريض
DocType: Patient,B Positive,B إيجابي
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.",الصف # {0}: يجب أن تكون الكمية 1، حيث أن البند هو اصول ثابتة. الرجاء استخدام صف منفصل لكمية متعددة.
DocType: Leave Block List Allow,Leave Block List Allow,تفعيل قائمة الإجازات المحظورة
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,الاسم المختصر لا يمكن أن يكون فارغاً او بها فضاء
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,الاسم المختصر لا يمكن أن يكون فارغاً او بها فضاء
DocType: Patient Medical Record,Patient Medical Record,السجل الطبي للمريض
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,(من تصنيف (مجموعة) إلى تصنيف (غير المجموعة
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,الرياضة
@ -2444,6 +2448,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,لا يمكن تعيين رفق وردت إلى أي اقتباس
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,مجموع الخصم
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,حدد حسابا للطباعة بعملة الحساب
,Production Analytics,تحليلات إنتاج
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,ويستند هذا إلى المعاملات ضد هذا المريض. انظر الجدول الزمني أدناه للحصول على التفاصيل
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,تم تحديث التكلفة
@ -2498,7 +2503,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,إع
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,حدد الشركة ...
DocType: Leave Control Panel,Leave blank if considered for all departments,اتركها فارغه اذا كنت تريد تطبيقها لجميع الأقسام
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).",أنواع التوظيف (دائم أو عقد او متدرب الخ).
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} إلزامي للبند {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} إلزامي للبند {1}
DocType: Payroll Entry,Fortnightly,مرة كل اسبوعين
DocType: Currency Exchange,From Currency,من العملة
DocType: Vital Signs,Weight (In Kilogram),الوزن (بالكيلوجرام)
@ -2574,7 +2579,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),المبلغ الأسا
DocType: Student,Guardians,أولياء الأمور
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,لن تظهر الأسعار إذا لم يتم تعيين قائمة الأسعار
DocType: Stock Entry,Total Incoming Value,إجمالي القيمة الواردة
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,مدين الي مطلوب
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,مدين الي مطلوب
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team",الجداول الزمنية تساعد على الحفاظ على المسار من الوقت والتكلفة وإعداد الفواتير للنشاطات الذي قام به فريقك
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,قائمة أسعار الشراء
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,نماذج من متغيرات بطاقة الأداء المورد.
@ -2675,7 +2680,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,للإشارة او المرجعية فقط.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},طبيب {0} غير متوفر على {1}
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,حدد الدفعة رقم
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},غير صالح {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},غير صالح {0}: {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Fee Validity,Reference Inv,ريفيرانس إنف
@ -2712,8 +2717,8 @@ DocType: Fees,Send Payment Request,إرسال طلب الدفع
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.",تحديد العمليات ، وتكلفة التشغيل وإعطاء عملية فريدة من نوعها لا لل عمليات الخاصة بك.
DocType: Water Analysis,Origin,الأصل
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,هذه الوثيقة هي على حد كتبها {0} {1} لمادة {4}. وجعل لكم آخر {3} ضد نفسه {2}؟
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,يرجى تحديد (تكرار) بعد الحفظ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,حساب كمية حدد التغيير
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,يرجى تحديد (تكرار) بعد الحفظ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,حساب كمية حدد التغيير
DocType: Purchase Invoice,Price List Currency,قائمة الأسعار العملات
DocType: Naming Series,User must always select,يجب دائما مستخدم تحديد
DocType: Stock Settings,Allow Negative Stock,السماح بالقيم السالبة للمخزون
@ -2769,7 +2774,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,صيانة جد
DocType: Supplier Scorecard,Warn for new Purchase Orders,تحذير لأوامر الشراء الجديدة
DocType: Quality Inspection Reading,Reading 9,قراءة 9
DocType: Supplier,Is Frozen,مجمدة
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,لا يسمح مستودع عقدة مجموعة لتحديد للمعاملات
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,لا يسمح مستودع عقدة مجموعة لتحديد للمعاملات
DocType: Buying Settings,Buying Settings,إعدادات الشراء
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,رقم فاتورة الموارد لغرض جيد
DocType: Upload Attendance,Attendance To Date,الحضور إلى تاريخ
@ -2783,6 +2788,7 @@ DocType: Offer Letter,Accepted,مقبول
DocType: Grant Application,Organization,منظمة
DocType: BOM Update Tool,BOM Update Tool,أداة تحديث بوم
DocType: SG Creation Tool Course,Student Group Name,اسم المجموعة الطلابية
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,عرض عرض انفجرت
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,إنشاء الرسوم
apps/erpnext/erpnext/setup/doctype/company/company.js +91,Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone.,يرجى التأكد من أنك تريد حقا حذف جميع المعاملات لهذه الشركة. ستبقى بياناتك الرئيسية (الماستر) كما هيا. لا يمكن التراجع عن هذا الإجراء.
DocType: Room,Room Number,رقم القاعة
@ -2793,7 +2799,7 @@ DocType: Journal Entry Account,Payroll Entry,دخول الرواتب
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,جعل قالب الضرائب
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,المنتدى المستعمل
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,لا يمكن ترك المواد الخام فارغة.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.",تعذر تحديث المخزون، الفاتورة تحتوي علي بند مبعد الشحن.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.",تعذر تحديث المخزون، الفاتورة تحتوي علي بند مبعد الشحن.
DocType: Lab Test Sample,Lab Test Sample,عينة اختبار المختبر
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,قيد دفتر يومية سريع
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,لا يمكنك تغيير السعر اذا قائمة المواد جعلت مقابل أي بند
@ -2864,7 +2870,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,دولار أمريكي
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,جعل الفاتورة
DocType: Selling Settings,Auto close Opportunity after 15 days,السيارات فرصة قريبة بعد 15 يوما
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,لا يسمح بأوامر الشراء {0} بسبب وضع بطاقة النقاط {1}.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,لا يسمح بأوامر الشراء {0} بسبب وضع بطاقة النقاط {1}.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,نهاية السنة
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,مناقصة / زبون محتمل٪
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,يجب أن يكون تاريخ انتهاء العقد بعد تاريخ الالتحاق بالعمل
@ -2976,7 +2982,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90 و أكثر
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,الصف # {0}: قيد دفتر اليومية {1} لا يملك حساب {2} أو قد تطابق بالفعل مع ايصال أخرى
DocType: Supplier Scorecard Criteria,Criteria Weight,معايير الوزن
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,المورد&gt; المورد نوع
DocType: Buying Settings,Default Buying Price List,قائمة اسعار الشراء الافتراضية
DocType: Payroll Entry,Salary Slip Based on Timesheet,كشف الرواتب بناء على سجل التوقيت
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,معدل شراء
@ -3064,7 +3069,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,المسار يؤدي حسب نوع الصناعة .
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,انتقل إلى الرسائل
DocType: Item Supplier,Item Supplier,البند مزود
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,الرجاء إدخال كود البند للحصول على رقم الدفعة
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,الرجاء إدخال كود البند للحصول على رقم الدفعة
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},يرجى اختيار قيمة ل {0} عرض مسعر إلى {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,جميع العناوين.
DocType: Company,Stock Settings,إعدادات المخزون
@ -3253,6 +3258,7 @@ DocType: Employee Loan,Loan Details,تفاصيل القرض
DocType: Company,Default Inventory Account,حساب المخزون الافتراضي
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,الصف {0}: يجب أن تكون الكمية المكتملة أكبر من الصفر.
DocType: Antibiotic,Antibiotic Name,اسم المضادات الحيوية
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,رمز البند&gt; مجموعة المنتجات&gt; العلامة التجارية
DocType: Purchase Invoice,Apply Additional Discount On,تطبيق خصم إضافي على
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,اختر صنف...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,رابط لكل الوحدات البرية التي تنمو فيها المحاصيل
@ -3446,6 +3452,7 @@ DocType: Guardian Student,Guardian Student,الجارديان الطلاب
DocType: Supplier,Credit Limit,الحد الائتماني
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,متوسط سعر قائمة أسعار البيع
DocType: Production Plan Sales Order,Salse Order Date,Salse ترتيب التاريخ
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,المورد&gt; المورد نوع
DocType: Salary Component,Salary Component,مكون الراتب
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,تدوين مدفوعات {0} غير مترابطة
DocType: GL Entry,Voucher No,رقم السند
@ -3454,7 +3461,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,الأكثر ش
DocType: Leave Allocation,Leave Allocation,تخصيص إجازة
DocType: Payment Request,Recipient Message And Payment Details,مستلم رسالة وتفاصيل الدفع
DocType: Training Event,Trainer Email,بريد المدرب الإلكتروني
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,تم إنشاء طلبات المواد {0}
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,تم إنشاء طلبات المواد {0}
DocType: Restaurant Reservation,No of People,أي من الناس
DocType: Production Planning Tool,Include sub-contracted raw materials,وتشمل المواد الخام مع مقاولين من الباطن
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,قالب الشروط أو العقد.
@ -3518,7 +3525,7 @@ DocType: Landed Cost Item,Receipt Document,وثيقة استلام
DocType: Production Planning Tool,Create Material Requests,إنشاء طلبات المواد
DocType: Employee Education,School/University,مدرسة / جامعة
DocType: Payment Request,Reference Details,إشارة تفاصيل
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,القيمة المتوقعة بعد العمر الافتراضي النافع يجب أن تكون أقل من إجمالي مبلغ الشراء
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,القيمة المتوقعة بعد العمر الافتراضي النافع يجب أن تكون أقل من إجمالي مبلغ الشراء
DocType: Sales Invoice Item,Available Qty at Warehouse,الكمية المتاحة في مستودع
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,القيمة المقدم فاتورة بها
DocType: Asset,Double Declining Balance,استهلاك تناقصي مزدوج
@ -3530,7 +3537,7 @@ DocType: Attendance,On Leave,في إجازة
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,الحصول على التحديثات
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: الحساب {2} لا ينتمي إلى الشركة {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,حدد قيمة واحدة على الأقل من كل سمة.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,طلب المواد {0} تم إلغاء أو توقيفه
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,طلب المواد {0} تم إلغاء أو توقيفه
apps/erpnext/erpnext/config/hr.py +310,Leave Management,إدارة تصاريح الخروج
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,مجموعة بواسطة حساب
DocType: Sales Order,Fully Delivered,سلمت بالكامل
@ -3541,14 +3548,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},المبلغ الصروف لا يمكن أن يكون أكبر من المبلغ المخصص للقرض {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,انتقل إلى البرامج
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},الصف {0} # المبلغ المخصص {1} لا يمكن أن يكون أكبر من المبلغ غير المطالب به {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,يرجى إعداد سلسلة الترقيم للحضور عن طريق الإعداد&gt; سلسلة الترقيم
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},مطلوب رقم امر الشراء للصنف {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,لم يتم إنشاء امر الانتاج
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"""من تاريخ "" يجب أن يكون بعد "" إلى تاريخ """
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},لا يمكن تغيير الحالة لان الطالب {0} مترابط مع استمارة الطالب {1}
DocType: Asset,Fully Depreciated,استهلكت بالكامل
,Stock Projected Qty,كمية المخزون المتوقعة
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},الزبونى {0} لا ينتمي إلى المشروع {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},الزبونى {0} لا ينتمي إلى المشروع {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,حضور مسجل HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers",عروض المسعره هي المقترحات، و المناقصات التي تم إرسالها للزبائن
DocType: Sales Order,Customer's Purchase Order,طلب شراء الزبون
@ -3632,7 +3638,7 @@ DocType: Salary Slip,Hour Rate,سعرالساعة
DocType: Stock Settings,Item Naming By,تسمية السلعة بواسطة
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},قيد إقفال فترة أخرى {0} تم إنشائها بعد {1}
DocType: Production Order,Material Transferred for Manufacturing,المواد المنقولة لغرض التصنيع
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,الحساب {0} غير موجود
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,الحساب {0} غير موجود
DocType: Project,Project Type,نوع المشروع
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,مهمة الطفل موجودة لهذه المهمة. لا يمكنك حذف هذه المهمة.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,الكمية المستهدفة أو المبلغ المستهدف إلزامي
@ -3734,11 +3740,11 @@ DocType: C-Form,I,أنا
DocType: Company,Asset Depreciation Cost Center,مركز تكلفة إستهلاك الأصول
DocType: Sales Order Item,Sales Order Date,تاريخ اوامر البيع
DocType: Sales Invoice Item,Delivered Qty,الكمية المستلمة
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,المجموع باستثناء. ضريبة
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.",إذا تحققت، سيتم تضمين جميع الأطفال من كل عنصر الإنتاج في الطلبات المادية.
DocType: Assessment Plan,Assessment Plan,خطة التقييم
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,تم إنشاء العميل {0}.
DocType: Stock Settings,Limit Percent,الحد في المئة
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,يرجى إعداد نظام تسمية المعلم في التعليم&gt; إعدادات التعليم
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,حاليا لا يوجد مخزون متاح في أي مستودع
,Payment Period Based On Invoice Date,طريقة الدفع بناء على تاريخ الفاتورة
DocType: Sample Collection,No. of print,رقم الطباعة
@ -3754,12 +3760,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),المدينين ({0})
DocType: Pricing Rule,Margin,هامش
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,الزبائن الجدد
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,الربح الإجمالي٪
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,الربح الإجمالي٪
DocType: Appraisal Goal,Weightage (%),الوزن(٪)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,تغيير الملف الشخصي بوس
DocType: Bank Reconciliation Detail,Clearance Date,تاريخ الاستحقاق
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,تقرير التقييم
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,إجمالي مبلغ الشراء إلزامي
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,إجمالي مبلغ الشراء إلزامي
DocType: Lead,Address Desc,معالجة التفاصيل
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,الطرف المعني إلزامي
DocType: Journal Entry,JV-,JV-
@ -3791,7 +3797,6 @@ DocType: Account,Accumulated Depreciation,إستهلاك متراكم
DocType: Supplier Scorecard Scoring Standing,Standing Name,اسم الدائمة
DocType: Stock Entry,Customer or Supplier Details,العملاء أو الموردين بيانات
DocType: Employee Loan Application,Required by Date,مطلوب حسب التاريخ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),الرصيد الختامي (در - كر)
DocType: Lead,Lead Owner,مسئول مبادرة البيع
DocType: Bin,Requested Quantity,الكمية المطلوبة
DocType: Patient,Marital Status,الحالة الإجتماعية
@ -3805,7 +3810,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,متغيرات متعددة
DocType: Sales Invoice,Against Income Account,مقابل حساب الدخل
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}٪ تم التسليم
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,البند {0} الكمية المطلوبة {1} لا يمكن أن تكون أقل من الحد الأدنى للطلب {2} (المحددة في البند).
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,البند {0} الكمية المطلوبة {1} لا يمكن أن تكون أقل من الحد الأدنى للطلب {2} (المحددة في البند).
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,الشهرية توزيع النسبة المئوية
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,الرجاء تسجيل الدخول كمستخدم آخر.
DocType: Territory,Territory Targets,الاقاليم المستهدفة
@ -3904,7 +3909,7 @@ DocType: Program Enrollment,School House,مدرسة دار
DocType: Serial No,Out of AMC,من AMC
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,عدد الاستهلاكات المستنفده مسبقا لا يمكن أن يكون أكبر من إجمالي عدد الاستهلاكات خلال العمر الافتراضي النافع
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,إنشاء زيارة صيانة
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,يرجى الاتصال بالمستخدم الذي لديه دور مدير المبيعات الماستر {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,يرجى الاتصال بالمستخدم الذي لديه دور مدير المبيعات الماستر {0}
DocType: Company,Default Cash Account,حساب النقدية الافتراضي
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,ماستر الشركة (ليس زبون أو مورد).
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,ويستند هذا على حضور هذا الطالب
@ -4054,7 +4059,6 @@ DocType: Delivery Note Item,From Warehouse,من المخزن
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,لا يوجد موظفون للمعايير المذكورة
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,لا توجد بنود في قائمة المواد للتصنيع
DocType: Restaurant,Default Customer,العميل الافتراضي
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,الرجاء الإعداد نظام تسمية الموظف في الموارد البشرية&gt; إعدادات الموارد البشرية
DocType: Assessment Plan,Supervisor Name,اسم المشرف
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,لا تؤكد إذا تم إنشاء التعيين لنفس اليوم
DocType: Program Enrollment Course,Program Enrollment Course,دورة التسجيل في البرنامج
@ -4172,7 +4176,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,وصف الموقع
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,صافي التغير في حقوق الملكية
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,الأحدث
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,يرجى إلغاء فاتورة المشتريات {0} أولاً
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,يرجى إلغاء فاتورة المشتريات {0} أولاً
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}",يجب أن يكون عنوان البريد الإلكتروني فريد من نوعه، موجود بالفعل ل{0}
DocType: Serial No,AMC Expiry Date,AMC تاريخ انتهاء الاشتراك
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,إيصال
@ -4189,7 +4193,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,لا زبائ
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,بيان التدفقات النقدية
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},لا يمكن أن تتجاوز قيمة القرض الحد الأقصى المحدد للقروض {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,رخصة
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},الرجاء إزالة هذا فاتورة {0} من C-نموذج {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},الرجاء إزالة هذا فاتورة {0} من C-نموذج {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,الرجاء تحديد المضي قدما إذا كنت تريد ان تتضمن اجازات السنة السابقة
DocType: GL Entry,Against Voucher Type,مقابل إيصال نوع
DocType: Physician,Phone (R),الهاتف (R)
@ -4201,7 +4205,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,B سلبي
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,يجب إلغاء حالة الصيانة أو إكمالها لإرسالها
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},الحساب {0} لا ينتمي إلى الشركة {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,لا تتطابق الأرقام التسلسلية في الصف {0} مع ملاحظة التسليم
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,لا تتطابق الأرقام التسلسلية في الصف {0} مع ملاحظة التسليم
DocType: Student,Guardian Details,تفاصيل ولي الأمر
DocType: C-Form,C-Form,C-Form
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,وضع علامة الحضور لعدة موظفين
@ -4243,7 +4247,7 @@ DocType: Opening Invoice Creation Tool,Sales,مبيعات
DocType: Stock Entry Detail,Basic Amount,المبلغ الأساسي
DocType: Training Event,Exam,امتحان
DocType: Complaint,Complaint,شكوى
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},مستودع الأسهم المطلوبة لل تفاصيل {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},مستودع الأسهم المطلوبة لل تفاصيل {0}
DocType: Leave Allocation,Unused leaves,إجازات غير مستخدمة
DocType: Patient,Alcohol Past Use,الكحول الماضي استخدام
DocType: Fertilizer Content,Fertilizer Content,محتوى الأسمدة
@ -4367,6 +4371,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,صيغة
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,المسلسل #
DocType: Lab Test Template,Lab Test Template,قالب اختبار المختبر
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,حساب مبيعات
DocType: Purchase Invoice Item,Total Weight,الوزن الكلي
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,عمولة على المبيعات
DocType: Offer Letter Term,Value / Description,القيمة / الوصف
@ -4523,7 +4528,7 @@ Updated via 'Time Log'","في دقائق
DocType: Customer,From Lead,من الزبون المحتمل
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,أوامر أصدرت للإنتاج.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,اختر السنة المالية ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,ملف نقطة البيع مطلوب للقيام بإدخال خاص بنقطة البيع
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,ملف نقطة البيع مطلوب للقيام بإدخال خاص بنقطة البيع
DocType: Program Enrollment Tool,Enroll Students,تسجيل الطلاب
DocType: Lab Test,Approved Date,تاريخ الموافقة
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,البيع القياسية
@ -4599,7 +4604,7 @@ DocType: Employee,Held On,عقدت في
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,بند انتاج
,Employee Information,معلومات الموظف
DocType: Stock Entry Detail,Additional Cost,تكلفة إضافية
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher",لا يمكن الفلتره علي اساس (رقم الأيصال)، إذا تم وضعه في مجموعة على اساس (ايصال)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher",لا يمكن الفلتره علي اساس (رقم الأيصال)، إذا تم وضعه في مجموعة على اساس (ايصال)
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,إنشاء عرض مسعر خاص بالمورد
DocType: Quality Inspection,Incoming,الوارد
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,يتم إنشاء قوالب الضرائب الافتراضية للمبيعات والشراء.
@ -4616,7 +4621,7 @@ DocType: Batch,Batch ID,هوية الباتش
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},ملاحظة : {0}
,Delivery Note Trends,ملاحظة اتجاهات التسليم
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,ملخص هذا الأسبوع
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,في سوق الأسهم الكمية
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,في سوق الأسهم الكمية
DocType: Delivery Trip,Calculate Estimated Arrival Times,حساب أوقات الوصول المقدرة
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,الحساب: {0} لا يمكن تحديثه إلا من خلال معاملات المخزون
DocType: Student Group Creation Tool,Get Courses,الحصول على دورات
@ -4632,7 +4637,7 @@ DocType: Purchase Order,To Bill,لبيل
DocType: Material Request,% Ordered,٪ تم طلبها
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.",بالنسبة للطلاب مجموعة مقرها دورة، سيتم التحقق من صحة الدورة لكل طالب من الدورات المسجلة في التسجيل البرنامج.
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,الأجرة المدفوعة لكمية العمل المنجز
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,متوسط سعر شراء
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,متوسط سعر شراء
DocType: Task,Actual Time (in Hours),الوقت الفعلي (بالساعات)
DocType: Employee,History In Company,الحركة التاريخيه في الشركة
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},رسالة جديدة من {سيندر}
@ -4680,7 +4685,7 @@ DocType: Asset Repair,Asset Repair,إصلاح الأصول
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},الصف {0}: عملة قائمة المواد يجب أن تكون# {1} يجب ان تكون مساوية للعملة المحددة {2}
DocType: Journal Entry Account,Exchange Rate,سعر الصرف
DocType: Patient,Additional information regarding the patient,معلومات إضافية عن المريض
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,اوامر البيع {0} لم ترسل
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,اوامر البيع {0} لم ترسل
DocType: Homepage,Tag Line,شعار
DocType: Fee Component,Fee Component,مكون رسوم
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,إدارة أسطول المركبات
@ -4892,7 +4897,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,تفاصيل نتيج
DocType: Employee Education,Employee Education,المستوى التعليمي للموظف
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,تم العثور على فئة بنود مكررة في جدول فئات البنود
DocType: Land Unit,Parent Land Unit,وحدة أراضي الوالدين
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,هناك حاجة لجلب تفاصيل البند.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,هناك حاجة لجلب تفاصيل البند.
DocType: Fertilizer,Fertilizer Name,اسم السماد
DocType: Salary Slip,Net Pay,صافي الراتب
DocType: Account,Account,حساب
@ -4971,7 +4976,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),الكمية الفع
DocType: Item Customer Detail,Ref Code,الرمز المرجعي
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,مطلوب مجموعة العملاء في الملف الشخصي نقاط البيع
apps/erpnext/erpnext/config/hr.py +12,Employee records.,سجلات الموظفين
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,يرجى تعيين تاريخ استهلاك التالي
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,يرجى تعيين تاريخ استهلاك التالي
DocType: HR Settings,Payroll Settings,إعدادات دفع الرواتب
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,مطابقة الفواتيرالغير مترابطة والمدفوعات.
DocType: POS Settings,POS Settings,إعدادات نقاط البيع
@ -5138,7 +5143,7 @@ DocType: Item,Customer Code,كود العميل
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},التذكير بعيد ميلاد {0}
DocType: Asset Maintenance Task,Last Completion Date,تاريخ الانتهاء الأخير
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,الأيام منذ آخر طلب
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,مدين لحساب يجب أن يكون حساب قائمة المركز المالي
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,مدين لحساب يجب أن يكون حساب قائمة المركز المالي
DocType: Buying Settings,Naming Series,التسمية التسلسلية
DocType: Leave Block List,Leave Block List Name,اسم قائمة الإجازات المحظورة
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,يجب أن يكون تاريخ بداية التأمين قبل تاريخ نهاية التأمين
@ -5265,6 +5270,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,الحصول على مدخلات الدفع
DocType: Quotation Item,Against Docname,مقابل المستند
DocType: SMS Center,All Employee (Active),جميع الموظفين (نشط)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,العميل&gt; مجموعة العملاء&gt; الإقليم
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,عرض الآن
DocType: BOM,Raw Material Cost,تكلفة المواد الخام
DocType: Item Reorder,Re-Order Level,إعادة ترتيب مستوى
@ -5363,7 +5369,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,عدد المقاعد
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,مجموعات اختبار المختبر
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,العميل&gt; مجموعة العملاء&gt; الإقليم
DocType: Project,Total Expense Claim (via Expense Claims),مجموع المطالبة المصاريف (عبر مطالبات النفقات)
DocType: GST Settings,GST Summary,ملخص غست
DocType: Assessment Result,Total Score,مجموع النقاط
@ -5376,7 +5381,7 @@ DocType: Batch,Source Document Type,نوع المستند المصدر
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,تم إنشاء الجداول الزمنية التالية
DocType: Journal Entry,Total Debit,مجموع الخصم
DocType: Manufacturing Settings,Default Finished Goods Warehouse,المخزن الافتراضي للبضائع التامة الصنع
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,رجل المبيعات
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,رجل المبيعات
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,الميزانيه و مركز التكلفة
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,لا يسمح بوضع الدفع الافتراضي المتعدد
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,ل
@ -5549,7 +5554,7 @@ DocType: Program,Program Name,إسم البرنامج
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,النظر في ضريبة أو رسم ل
DocType: Driver,Driving License Category,رخصة قيادة الفئة
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,الكمية الفعلية هي إلزامية
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0} لديها حاليا {1} بطاقة أداء بطاقة الموردين، ويجب إصدار أوامر الشراء إلى هذا المورد بحذر.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0} لديها حاليا {1} بطاقة أداء بطاقة الموردين، ويجب إصدار أوامر الشراء إلى هذا المورد بحذر.
DocType: Asset Maintenance Team,Asset Maintenance Team,فريق صيانة الأصول
DocType: Employee Loan,Loan Type,نوع القرض
DocType: Scheduling Tool,Scheduling Tool,أداة الجدولة

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,Лабораторни предпис
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,Сортирай по цена
,Delay Days,Забавни дни
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,Expense Service
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},Сериен номер: {0} вече е посочен в фактурата за продажби: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},Сериен номер: {0} вече е посочен в фактурата за продажби: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,Фактура
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,Направете вписване за запазване на запасите
DocType: Purchase Invoice Item,Item Weight Details,Елемент за теглото на елемента
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,Родител Подробности
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","Референция: {0}, кода на елемента: {1} и клиента: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,Кг
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,Откриване на работа.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},BOM не е посочена за подизпълнение елемент {0} на ред {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},BOM не е посочена за подизпълнение елемент {0} на ред {1}
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} Резултатът е изпратен
DocType: Item Attribute,Increment,Увеличение
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,Период от време
@ -150,7 +150,7 @@ DocType: Patient,Married,Омъжена
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},Не е разрешен за {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,Вземете елементи от
DocType: Price List,Price Not UOM Dependant,Цената не е зависима от UOM
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},Фондова не може да бъде актуализиран срещу Бележка за доставка {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},Фондова не може да бъде актуализиран срещу Бележка за доставка {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},Продукт {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,Няма изброени елементи
DocType: Asset Repair,Error Description,Описание на грешката
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,Съгласувайте
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,Хранителни стоки
DocType: Quality Inspection Reading,Reading 1,Четене 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,Пенсионни фондове
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,Следваща дата на амортизация не може да бъде преди датата на покупка
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,Следваща дата на амортизация не може да бъде преди датата на покупка
DocType: Crop,Perennial,целогодишен
DocType: Consultation,Consultation Date,Дата на консултацията
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,Списък на продуктите и откриване за ERPNext потребители
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,Разходен център за о
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""",например &quot;Основно училище&quot; или &quot;университет&quot;
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,Сток Доклади
DocType: Warehouse,Warehouse Detail,Скалд - Детайли
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},Кредитен лимит е бил надхвърлен за клиенти {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},Кредитен лимит е бил надхвърлен за клиенти {0} {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,"Term крайна дата не може да бъде по-късно от края на годината Дата на учебната година, към който е свързан терминът (Academic Година {}). Моля, коригирайте датите и опитайте отново."
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","""Е фиксиран актив"" не може да бъде размаркирано, докато съществува запис за елемента"
DocType: Delivery Trip,Departure Time,Час на отпътуване
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,Student Вход
DocType: Quality Inspection,Get Specification Details,Вземи детайлите на спецификацията
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,Шаблони за класиране на доставчиците.
DocType: Lead,Interested,Заинтересован
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,Начален
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,Начален
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},От {0} до {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,Неуспешно настройване на данъци
DocType: Item,Copy From Item Group,Копирай от група позиция
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,Облекчаване дата трябва да е по-голяма от Дата на Присъединяване
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,Отпуск на година
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,"Row {0}: Моля, проверете &quot;е Advance&quot; срещу Account {1}, ако това е предварително влизане."
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},Склад {0} не принадлежи на фирмата {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},Склад {0} не принадлежи на фирмата {1}
DocType: Email Digest,Profit & Loss,Печалба & загуба
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,Литър
DocType: Task,Total Costing Amount (via Time Sheet),Общо Остойностяване сума (чрез Time Sheet)
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,Оцени и сума
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,Това се основава на транзакции срещу тази компания. За подробности вижте хронологията по-долу
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Изпращайте по имейл за създаване на автоматично искане за материали
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,устойчив
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Consultationt
DocType: Journal Entry,Multi Currency,Много валути
DocType: Opening Invoice Creation Tool,Invoice Type,Вид фактура
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,Складова разписка
@ -528,7 +529,6 @@ DocType: Email Digest,Credit Balance,Кредит баланс
DocType: Employee,Widowed,Овдовял
DocType: Request for Quotation,Request for Quotation,Запитване за оферта
DocType: Healthcare Settings,Require Lab Test Approval,Изисква се одобрение от лабораторни тестове
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Код на елемента&gt; Група на елементите&gt; Марка
DocType: Salary Slip Timesheet,Working Hours,Работно Време
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,Общо неизпълнени
DocType: Naming Series,Change the starting / current sequence number of an existing series.,Промяна на изходния / текущия номер за последователност на съществуваща серия.
@ -557,7 +557,7 @@ DocType: Subscription,Yearly,Годишно
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,"Моля, въведете Cost Center"
DocType: Drug Prescription,Dosage,дозиране
DocType: Journal Entry Account,Sales Order,Поръчка за продажба
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,Ср. Курс продава
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,Ср. Курс продава
DocType: Assessment Plan,Examiner Name,Наименование на ревизора
DocType: Lab Test Template,No Result,Няма резултати
DocType: Purchase Invoice Item,Quantity and Rate,Брой и процент
@ -605,6 +605,7 @@ DocType: Employee,Health Concerns,Здравни проблеми
DocType: Payroll Entry,Select Payroll Period,Изберете ТРЗ Период
DocType: Purchase Invoice,Unpaid,Неплатен
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,Запазено за продажба
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,"Моля, настройте система за наименуване на служители в Човешки ресурси&gt; Настройки за персонала"
DocType: Packing Slip,From Package No.,От Пакет номер
DocType: Item Attribute,To Range,До диапазон
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,Ценни книжа и депозити
@ -629,11 +630,11 @@ DocType: Pricing Rule,Valid Upto,Валиден до
DocType: Training Event,Workshop,цех
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,Предупреждавайте поръчки за покупка
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,Изброите някои от вашите клиенти. Те могат да бъдат организации или индивидуални лица.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,Достатъчно Части за изграждане
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,Достатъчно Части за изграждане
DocType: POS Profile User,POS Profile User,Потребителски потребителски профил на POS
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,Преки приходи
DocType: Patient Appointment,Date TIme,Време за среща
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","Не може да се филтрира по сметка, ако е групирано по сметка"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","Не може да се филтрира по сметка, ако е групирано по сметка"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,Административният директор
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,Създаване на дружество и данъци
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,"Моля, изберете Курс"
@ -643,7 +644,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,Разлика Акаунт
DocType: Purchase Invoice,Supplier GSTIN,Доставчик GSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,"Не може да се затвори задача, тъй като зависим задача {0} не е затворена."
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,"Моля, въведете Warehouse, за които ще бъдат повдигнати Материал Искане"
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,"Моля, въведете Warehouse, за които ще бъдат повдигнати Материал Искане"
DocType: Production Order,Additional Operating Cost,Допълнителна експлоатационни разходи
DocType: Lab Test Template,Lab Routine,Рутинна лаборатория
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,Козметика
@ -811,7 +812,7 @@ DocType: Employee,Passport Number,Номер на паспорт
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Връзка с Guardian2
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,Мениджър
DocType: Payment Entry,Payment From / To,Плащане от / към
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Нов кредитен лимит е по-малко от сегашната изключително количество за клиента. Кредитен лимит трябва да бъде поне {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Нов кредитен лимит е по-малко от сегашната изключително количество за клиента. Кредитен лимит трябва да бъде поне {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},"Моля, задайте профил в Склад {0}"
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,"""Въз основа на"" и ""Групиране По"" не могат да бъдат еднакви"
DocType: Sales Person,Sales Person Targets,Търговец - Цели
@ -822,7 +823,7 @@ DocType: Lab Test Template,Compound,съединение
DocType: Student Batch Name,Batch Name,Партида Име
DocType: Fee Validity,Max number of visit,Максимален брой посещения
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,График създаден:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},"Моля, задайте по подразбиране в брой или по банкова сметка за начин на плащане {0}"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},"Моля, задайте по подразбиране в брой или по банкова сметка за начин на плащане {0}"
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,Записване
DocType: GST Settings,GST Settings,Настройки за GST
DocType: Selling Settings,Customer Naming By,Задаване на име на клиента от
@ -946,7 +947,7 @@ DocType: Delivery Note,Customer's Purchase Order No,Поръчка на Клие
DocType: Budget,Budget Against,Бюджет срещу
DocType: Employee,Cell Number,Клетка номер
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,За дадените критерии няма служител. Проверете дали заплатите не са вече създадени.
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,Auto Материал Исканията Генерирани
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,Auto Материал Исканията Генерирани
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,Загубен
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,Вие не можете да въведете текущата ваучер &quot;Срещу вестник Entry&quot; колона
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,Запазено за производство
@ -954,7 +955,7 @@ DocType: Soil Texture,Sand,Пясък
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,Енергия
DocType: Opportunity,Opportunity From,Възможност - От
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,Месечно извлечение заплата.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,"Ред {0}: {1} Серийни номера, изисквани за елемент {2}. Предоставихте {3}."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,"Ред {0}: {1} Серийни номера, изисквани за елемент {2}. Предоставихте {3}."
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,"Моля, изберете таблица"
DocType: BOM,Website Specifications,Сайт Спецификации
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} е невалиден имейл адрес в полето &quot;Получатели&quot;
@ -1023,7 +1024,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,Заявката е поискана
DocType: Vital Signs,Heart Rate / Pulse,Сърдечна честота / импулс
DocType: Company,Default Bank Account,Банкова сметка по подразб.
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","За да филтрирате базирани на партия, изберете страна Напишете първия"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","За да филтрирате базирани на партия, изберете страна Напишете първия"
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},"""Обнови Наличност"" не може да е маркирана, защото артикулите, не са доставени чрез {0}"
DocType: Vehicle,Acquisition Date,Дата на придобиване
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,Nos
@ -1047,7 +1048,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),Качете писмото си с главата (поддържайте го удобно като 900px на 100px)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: Сметка {2} не може да бъде група
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,Точка Row {IDX}: {DOCTYPE} {DOCNAME} не съществува в по-горе &quot;{DOCTYPE}&quot; на маса
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,График {0} вече е завършен или анулиран
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,График {0} вече е завършен или анулиран
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,Няма задачи
DocType: Item Variant Settings,Copy Fields to Variant,Копиране на полетата до вариант
DocType: Asset,Opening Accumulated Depreciation,Начална начислената амортизация
@ -1159,9 +1160,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,План материал за частите
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,Търговски дистрибутори и територия
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,BOM {0} трябва да бъде активен
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),Затваряне (отваряне + общо)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),Затваряне (отваряне + общо)
DocType: Journal Entry,Depreciation Entry,Амортизация - Запис
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,"Моля, изберете вида на документа първо"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,Отпечатване във валута на профила
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Отменете Материал Посещения {0} преди да анулирате тази поддръжка посещение
DocType: Crop Cycle,ISO 8016 standard,Стандарт ISO 8016
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},Сериен № {0} не принадлежи на позиция {1}
@ -1187,7 +1189,7 @@ DocType: Purchase Receipt,Range,Диапазон
DocType: Supplier,Default Payable Accounts,По подразбиране Платими сметки
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,Служител {0} не е активен или не съществува
DocType: Fee Structure,Components,Компоненти
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},"Моля, въведете Asset Категория т {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},"Моля, въведете Asset Категория т {0}"
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,Позиция Варианти {0} актуализиран
DocType: Quality Inspection Reading,Reading 6,Четене 6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1239,6 +1241,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,Име на фирмата
DocType: SMS Center,Total Message(s),Общо съобщения
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,Изберете артикул за прехвърляне
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,"Моля, задайте Naming Series за {0} чрез Setup&gt; Settings&gt; Naming Series"
DocType: Purchase Invoice,Additional Discount Percentage,Допълнителна отстъпка Процент
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,Вижте списък на всички помощни видеоклипове
DocType: Agriculture Analysis Criteria,Soil Texture,Течност на почвата
@ -1266,7 +1269,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,BOM Website позиция
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,Качете ваш дизайн за заглавно писмо и лого. (Можете да ги редактирате по-късно).
DocType: Timesheet Detail,Bill,Фактура
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,Следваща дата на амортизация е въведена като минала дата
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,Следваща дата на амортизация е въведена като минала дата
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,Бял
DocType: SMS Center,All Lead (Open),All Lead (Open)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),Row {0}: Кол не е на разположение за {4} в склад {1} при публикуване време на влизането ({2} {3})
@ -1282,7 +1285,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,Следваща дата за контакт
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,Начално Количество
DocType: Healthcare Settings,Appointment Reminder,Напомняне за назначаване
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,"Моля, въведете Account за промяна сума"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,"Моля, въведете Account за промяна сума"
DocType: Program Enrollment Tool Student,Student Batch Name,Student Batch Име
DocType: Consultation,Doctor,Лекар
DocType: Holiday List,Holiday List Name,Име на списък на празниците
@ -1298,6 +1301,7 @@ DocType: Patient,Patient Relation,Отношение на пациента
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,Инструмент за разпределение на остъствията
DocType: Item,Hub Category to Publish,Категория хъб за публикуване
DocType: Leave Block List,Leave Block List Dates,Оставете Block Списък Дати
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,"Моля, настроите серийна номерация за участие чрез настройка&gt; Серия за номериране"
DocType: Sales Invoice,Billing Address GSTIN,Адрес за фактуриране GSTIN
DocType: Assessment Plan,Evaluate,Оценява
DocType: Workstation,Net Hour Rate,Net Hour Курсове
@ -1331,7 +1335,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,Покупка Квитанци
DocType: Purchase Receipt,PREC-RET-,PREC-RET-
DocType: POS Profile,Sales Invoice Payment,Фактурата за продажба - Плащане
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,Включено Warehouse в продажбите Поръчка / готова продукция Warehouse
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,Продажба Сума
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,Продажба Сума
DocType: Repayment Schedule,Interest Amount,Сума на лихва
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,Вие сте за сметка одобряващ за този запис. Моля Актуализирайте &quot;Състояние&quot; и спести
DocType: Serial No,Creation Document No,Създаване документ №
@ -1422,7 +1426,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,Начален баланс
,GST Sales Register,Търговски регистър на GST
DocType: Sales Invoice Advance,Sales Invoice Advance,Фактурата за продажба - Аванс
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,Няма нищо за заявка
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,Няма нищо за заявка
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,Изберете вашите домейни
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},Друг рекорд Бюджет &quot;{0}&quot; вече съществува срещу {1} {2} &quot;за фискалната година {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,Полетата ще бъдат копирани само по време на създаването.
@ -1432,11 +1436,11 @@ DocType: Cheque Print Template,Payer Settings,Настройки платеца
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","Това ще бъде приложена към Кодекса Точка на варианта. Например, ако вашият съкращението е &quot;SM&quot;, а кодът на елемент е &quot;ТЕНИСКА&quot;, кодът позиция на варианта ще бъде &quot;ТЕНИСКА-SM&quot;"
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,Net Pay (словом) ще бъде видим след като спаси квитанцията за заплата.
DocType: Purchase Invoice,Is Return,Дали Return
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,Внимание
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,Внимание
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,Връщане / дебитно известие
DocType: Price List Country,Price List Country,Ценоразпис - Държава
DocType: Item,UOMs,Мерни единици
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} валидни серийни номера за Артикул {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} валидни серийни номера за Артикул {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Код не може да се променя за сериен номер
DocType: Purchase Invoice Item,UOM Conversion Factor,Мерна единица - фактор на превръщане
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,"Моля, въведете Код, за да получите Batch Номер"
@ -1540,7 +1544,7 @@ DocType: Journal Entry,Get Outstanding Invoices,Вземи неплатенит
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,Поръчка за продажба {0} не е валидна
DocType: Supplier Scorecard,Warn for new Request for Quotations,Предупреждавайте за нова заявка за оферти
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,Поръчки помогнат да планирате и проследяване на вашите покупки
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","Съжаляваме, компаниите не могат да бъдат слети"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","Съжаляваме, компаниите не могат да бъдат слети"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,Предписания за лабораторни тестове
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",Общото количество на емисията / Transfer {0} в Подемно-Искане {1} \ не може да бъде по-голяма от поискани количества {2} за т {3}
@ -1578,7 +1582,6 @@ DocType: Vehicle,Fuel UOM,мерна единица гориво
DocType: Warehouse,Warehouse Contact Info,Склад - Информация за контакт
DocType: Payment Entry,Write Off Difference Amount,Сметка за разлики от отписване
DocType: Volunteer,Volunteer Name,Име на доброволците
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,"Моля, настройте инструмента за назначаване на инструктори в образованието&gt; Настройки за обучение"
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0}: Имейлът на служителя не е намерен, следователно не е изпратен имейл"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},Правилото за доставка не е приложимо за държавата {0}
DocType: Item,Foreign Trade Details,Външна търговия - Детайли
@ -1590,7 +1593,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,Номер на ролката в групата
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry","За {0}, само кредитни сметки могат да бъдат свързани с друг запис дебитна"
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,"Общо за всички работни тежести трябва да бъде 1. Моля, коригира теглото на всички задачи по проекта съответно"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,Складова разписка {0} не е подадена
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,Складова разписка {0} не е подадена
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,Позиция {0} трябва да бъде позиция за подизпълнители
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,Капиталови Активи
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Ценообразуване правило е първият избран на базата на &quot;Нанесете върху&quot; област, която може да бъде т, т Group или търговска марка."
@ -1615,7 +1618,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,Подчинен склад съществува за този склад. Не можете да изтриете този склад.
DocType: Item,Website Item Groups,Website стокови групи
DocType: Purchase Invoice,Total (Company Currency),Общо (фирмена валута)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,Сериен номер {0} влезли повече от веднъж
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,Сериен номер {0} влезли повече от веднъж
DocType: Journal Entry,Journal Entry,Вестник Влизане
DocType: Expense Claim Advance,Unclaimed amount,Непоискана сума
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} артикула са в производство
@ -1711,7 +1714,7 @@ DocType: Email Digest,For Company,За компания
apps/erpnext/erpnext/config/support.py +17,Communication log.,Комуникации - журнал.
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.","Запитване за оферта е забранено да достъп от портал, за повече настройки за проверка портал."
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,Профил за проследяване на проследяващия доставчик
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,Сума на покупките
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,Сума на покупките
DocType: Sales Invoice,Shipping Address Name,Адрес за доставка Име
DocType: Material Request,Terms and Conditions Content,Правила и условия - съдържание
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,Имаше грешки при създаването на График на курса
@ -1974,7 +1977,7 @@ DocType: Expense Claim,Total Amount Reimbursed,Обща сума възстан
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,Това се основава на трупи срещу това превозно средство. Вижте график по-долу за повече подробности
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},Срещу фактура от доставчик {0} от {1}
DocType: Customer,Default Price List,Ценоразпис по подразбиране
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,запис Движение Asset {0} е създаден
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,запис Движение Asset {0} е създаден
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,Вие не можете да изтривате фискална година {0}. Фискална година {0} е зададена по подразбиране в Global Settings
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,Клиент със същото име вече съществува
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,Това ще изпрати Скача за заплати и ще създаде вписване в счетоводния дневник. Искаш ли да продължиш?
@ -1988,6 +1991,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,Ценообразуване
DocType: Quotation,Term Details,Условия - Детайли
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,Не може да се запишат повече от {0} студенти за този студентска група.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),Общо (без данъци)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,Водещ брой
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} трябва да е по-голяма от 0
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,Наличен наличност
@ -2006,7 +2010,6 @@ DocType: Lab Test,Technician Name,Име на техник
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,Прекратяване на връзката с плащане при анулиране на фактура
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},Current показание на километража влязъл трябва да бъде по-голяма от първоначалната Vehicle километража {0}
DocType: Restaurant Reservation,No Show,Няма показване
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,"Моля, задайте Naming Series за {0} чрез Setup&gt; Settings&gt; Naming Series"
DocType: Shipping Rule Country,Shipping Rule Country,Доставка Правило Country
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,Оставете и Присъствие
DocType: Maintenance Visit,Partially Completed,Частично завършени
@ -2097,7 +2100,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,Инструктор на група студенти
DocType: Grant Application,Assessment Mark (Out of 10),Маркер за оценка (от 10)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 Mobile Не
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,Основен
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,Основен
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,Вариант
DocType: Naming Series,Set prefix for numbering series on your transactions,Определете префикс за номериране серия от вашите сделки
DocType: Employee Attendance Tool,Employees HTML,Служители HTML
@ -2145,7 +2148,7 @@ DocType: Crop,Crop Spacing,Разреждане на пространствот
DocType: Course,Course Abbreviation,Курс - Съкращение
DocType: Student Leave Application,Student Leave Application,Student оставите приложението
DocType: Item,Will also apply for variants,Ще се прилага и за варианти
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","Asset не може да бъде отменено, тъй като вече е {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","Asset не може да бъде отменено, тъй като вече е {0}"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},Служител {0} на половин ден на {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},Общо работно време не трябва да са по-големи от работното време макс {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,На
@ -2329,9 +2332,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),Действително Крайна дата (чрез Time Sheet)
DocType: Soil Texture,Soil Type,Тип на почвата
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},Сума {0} {1} срещу {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,Ново съобщение
,Quotation Trends,Оферта Тенденции
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},Позиция Group не са посочени в т майстор за т {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,Дебитиране на сметката трябва да е сметка за вземания
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,Дебитиране на сметката трябва да е сметка за вземания
DocType: Shipping Rule,Shipping Amount,Доставка Сума
DocType: Supplier Scorecard Period,Period Score,Период Резултат
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,Добавете клиенти
@ -2342,7 +2346,7 @@ DocType: Purchase Order,Delivered,Доставени
,Vehicle Expenses,Камион Разходи
DocType: Serial No,Invoice Details,Данни за фактурите
DocType: Grant Application,Show on Website,Показване на уебсайта
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},Очаквана стойност след полезен живот трябва да бъде по-голяма или равна на {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},Очаквана стойност след полезен живот трябва да бъде по-голяма или равна на {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,Започнете
DocType: Hub Category,Hub Category,Категория хъб
DocType: Purchase Invoice,SEZ,СИЗ
@ -2373,7 +2377,7 @@ DocType: Patient,Patient Details,Детайли за пациента
DocType: Patient,B Positive,B Положителен
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","Row {0}: Кол трябва да бъде 1, като елемент е дълготраен актив. Моля, използвайте отделен ред за множествена бр."
DocType: Leave Block List Allow,Leave Block List Allow,Оставете Block List Позволете
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,Съкращение не може да бъде празно или интервал
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,Съкращение не може да бъде празно или интервал
DocType: Patient Medical Record,Patient Medical Record,Медицински запис на пациента
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,Група към не-група
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,Спортове
@ -2423,6 +2427,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,Не може да се зададе получена RFQ в Без котировка
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,Общо Приспадане
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,"Изберете профил, който да печата във валута на профила"
,Production Analytics,Производство - Анализи
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,Това се основава на транзакции срещу този пациент. За подробности вижте графиката по-долу
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,Разходите са обновени
@ -2477,7 +2482,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,На
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,Изберете компания ...
DocType: Leave Control Panel,Leave blank if considered for all departments,"Оставете празно, ако важи за всички отдели"
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","Видове наемане на работа (постоянни, договорни, стажант и т.н.)."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} е задължително за Артикул {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} е задължително за Артикул {1}
DocType: Payroll Entry,Fortnightly,всеки две седмици
DocType: Currency Exchange,From Currency,От валута
DocType: Vital Signs,Weight (In Kilogram),Тегло (в килограми)
@ -2553,7 +2558,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),Основна сума
DocType: Student,Guardians,Guardians
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,"Цените няма да се показват, ако ценова листа не е настроено"
DocType: Stock Entry,Total Incoming Value,Общо Incoming Value
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,Дебит сметка се изисква
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,Дебит сметка се изисква
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Графици, за да следите на времето, разходите и таксуването по дейности, извършени от вашия екип"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,Покупка Ценоразпис
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,Шаблони на променливите на таблицата с резултатите от доставчика.
@ -2654,7 +2659,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,Само за справка.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},Лекарят {0} не е налице на {1}
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,Изберете партида №
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},Невалиден {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},Невалиден {0}: {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Fee Validity,Reference Inv,Референтен инв
@ -2691,8 +2696,8 @@ DocType: Fees,Send Payment Request,Изпращане на искане за п
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Посочете операции, оперативни разходи и да даде уникална операция не на вашите операции."
DocType: Water Analysis,Origin,произход
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,Този документ е над ограничението от {0} {1} за елемент {4}. Възможно ли е да направи друг {3} срещу същите {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,"Моля, задайте повтарящи след спасяването"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,количество сметка Select промяна
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,"Моля, задайте повтарящи след спасяването"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,количество сметка Select промяна
DocType: Purchase Invoice,Price List Currency,Ценоразпис на валути
DocType: Naming Series,User must always select,Потребителят трябва винаги да избере
DocType: Stock Settings,Allow Negative Stock,Оставя Negative Фондова
@ -2748,7 +2753,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,График з
DocType: Supplier Scorecard,Warn for new Purchase Orders,Предупреждавайте за нови Поръчки за покупка
DocType: Quality Inspection Reading,Reading 9,Четене 9
DocType: Supplier,Is Frozen,Е замразен
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,Група възел склад не е позволено да изберете за сделки
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,Група възел склад не е позволено да изберете за сделки
DocType: Buying Settings,Buying Settings,Настройки за Купуване
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,BOM Номер. за позиция на завършен продукт
DocType: Upload Attendance,Attendance To Date,Присъствие към днешна дата
@ -2762,6 +2767,7 @@ DocType: Offer Letter,Accepted,Приет
DocType: Grant Application,Organization,организация
DocType: BOM Update Tool,BOM Update Tool,Инструмент за актуализиране на буквите
DocType: SG Creation Tool Course,Student Group Name,Наименование Student Group
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,Показване на разгънатия изглед
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,Създаване на такси
apps/erpnext/erpnext/setup/doctype/company/company.js +91,Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone.,"Моля, уверете се, че наистина искате да изтриете всички сделки за тази компания. Вашите основни данни ще останат, тъй като е. Това действие не може да бъде отменено."
DocType: Room,Room Number,Номер на стая
@ -2772,7 +2778,7 @@ DocType: Journal Entry Account,Payroll Entry,Въвеждане на запла
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,Направете данъчен шаблон
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,потребителски форум
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,Суровини - не могат да бъдат празни.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","Не можа да се актуализира склад, фактура съдържа капка корабоплаването т."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","Не можа да се актуализира склад, фактура съдържа капка корабоплаването т."
DocType: Lab Test Sample,Lab Test Sample,Лабораторна проба за изпитване
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,Quick вестник Влизане
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,"Вие не можете да променяте скоростта, ако BOM споменато agianst всеки елемент"
@ -2843,7 +2849,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,щатски долар
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,Направи Invoice
DocType: Selling Settings,Auto close Opportunity after 15 days,Автоматично затваряне на възможността в 15-дневен срок
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Поръчките за покупка не се допускат за {0} поради стойността на {1}.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Поръчките за покупка не се допускат за {0} поради стойността на {1}.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,Край Година
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Цитат / Водещ%
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,Договор Крайна дата трябва да бъде по-голяма от Дата на Присъединяване
@ -2935,7 +2941,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,Над 90 -
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,Row {0}: вестник Влизане {1} Няма профил {2} или вече съчетани срещу друг ваучер
DocType: Supplier Scorecard Criteria,Criteria Weight,Критерии Тегло
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Доставчик&gt; Тип доставчик
DocType: Buying Settings,Default Buying Price List,Ценови лист за закупуване по подразбиране
DocType: Payroll Entry,Salary Slip Based on Timesheet,Заплата Slip Въз основа на график
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,Процент на покупка
@ -3023,7 +3028,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,Track Изводи от Industry Type.
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,Отидете на Letterheads
DocType: Item Supplier,Item Supplier,Позиция - Доставчик
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,"Моля, въведете Код, за да получите партиден №"
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,"Моля, въведете Код, за да получите партиден №"
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},Моля изберете стойност за {0} quotation_to {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,Всички адреси.
DocType: Company,Stock Settings,Сток Settings
@ -3200,6 +3205,7 @@ DocType: Employee Loan,Loan Details,Заем - Детайли
DocType: Company,Default Inventory Account,Сметка по подразбиране за инвентаризация
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,Row {0}: Завършен во трябва да е по-голяма от нула.
DocType: Antibiotic,Antibiotic Name,Името на антибиотика
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Код на елемента&gt; Група на елементите&gt; Марка
DocType: Purchase Invoice,Apply Additional Discount On,Нанесете Допълнителна отстъпка от
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,Изберете Тип ...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,"Връзка към всички земни единици, в които расте Растението"
@ -3393,6 +3399,7 @@ DocType: Guardian Student,Guardian Student,Guardian Student
DocType: Supplier,Credit Limit,Кредитен лимит
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,Ср. Тарифа за цените на продажбите
DocType: Production Plan Sales Order,Salse Order Date,Поръчка за продажба - Дата
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Доставчик&gt; Тип доставчик
DocType: Salary Component,Salary Component,Заплата Компонент
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,Плащане Entries {0} са не-свързани
DocType: GL Entry,Voucher No,Ваучер №
@ -3401,7 +3408,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,Най - изв
DocType: Leave Allocation,Leave Allocation,Оставете Разпределение
DocType: Payment Request,Recipient Message And Payment Details,Получател на съобщението и данни за плащане
DocType: Training Event,Trainer Email,Trainer Email
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,Заявки за материал {0} създадени
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,Заявки за материал {0} създадени
DocType: Restaurant Reservation,No of People,Брой хора
DocType: Production Planning Tool,Include sub-contracted raw materials,Включи възложени на подизпълнители суровини
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,Шаблон за условия или договор.
@ -3465,7 +3472,7 @@ DocType: Landed Cost Item,Receipt Document,Получаване на докум
DocType: Production Planning Tool,Create Material Requests,Създаване на искане за материали
DocType: Employee Education,School/University,Училище / Университет
DocType: Payment Request,Reference Details,Референтен Детайли
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,Очакваната стойност След полезния живот трябва да бъде по-малко от Gross Сума на покупката
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,Очакваната стойност След полезния живот трябва да бъде по-малко от Gross Сума на покупката
DocType: Sales Invoice Item,Available Qty at Warehouse,В наличност Количество в склада
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,Фактурирана Сума
DocType: Asset,Double Declining Balance,Двоен неснижаем остатък
@ -3477,7 +3484,7 @@ DocType: Attendance,On Leave,В отпуск
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,Получаване на актуализации
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: Сметка {2} не принадлежи на компания {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,Изберете поне една стойност от всеки от атрибутите.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,Искане за материал {0} е отменен или спрян
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,Искане за материал {0} е отменен или спрян
apps/erpnext/erpnext/config/hr.py +310,Leave Management,Управление на отсътствията
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,Групирай по Сметка
DocType: Sales Order,Fully Delivered,Напълно Доставени
@ -3488,14 +3495,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},Платената сума не може да бъде по-голяма от кредит сума {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,Отидете на Програми
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},"Ред {0} # Разпределената сума {1} не може да бъде по-голяма от сумата, която не е поискана {2}"
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,"Моля, настроите серийна номерация за участие чрез настройка&gt; Серия за номериране"
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},"Поръчка за покупка брой, необходим за т {0}"
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,Производствената поръчка не е създадена
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"""От дата"" трябва да е преди ""До дата"""
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},Не може да се промени статута си на студент {0} е свързан с прилагането студент {1}
DocType: Asset,Fully Depreciated,напълно амортизирани
,Stock Projected Qty,Фондова Прогнозно Количество
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},Клиент {0} не принадлежи на проекта {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},Клиент {0} не принадлежи на проекта {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,Маркирано като присъствие HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers","Оферта са предложения, оферти, изпратени до клиентите"
DocType: Sales Order,Customer's Purchase Order,Поръчка на Клиента
@ -3579,7 +3585,7 @@ DocType: Salary Slip,Hour Rate,Цена на час
DocType: Stock Settings,Item Naming By,"Позиция наименуването им,"
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},Друг период Закриване Влизане {0} е направено след {1}
DocType: Production Order,Material Transferred for Manufacturing,"Материал, прехвърлен за производство"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,Сметка {0} не съществува
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,Сметка {0} не съществува
DocType: Project,Project Type,Тип на проекта
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,Детската задача съществува за тази задача. Не можете да изтриете тази задача.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,Или целта Количество или целева сума е задължително.
@ -3681,11 +3687,11 @@ DocType: C-Form,I,аз
DocType: Company,Asset Depreciation Cost Center,Център за амортизация на разходите Асет
DocType: Sales Order Item,Sales Order Date,Поръчка за продажба - Дата
DocType: Sales Invoice Item,Delivered Qty,Доставено Количество
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,Общо Изкл. данък
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","Ако има отметка, всички деца на всяка производствена позиция ще се включат в материала искания."
DocType: Assessment Plan,Assessment Plan,План за оценка
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,Клиент {0} е създаден.
DocType: Stock Settings,Limit Percent,Процент лимит
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,"Моля, настройте инструмента за назначаване на инструктори в образованието&gt; Настройки за обучение"
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,Понастоящем няма налични запаси в нито един склад
,Payment Period Based On Invoice Date,Заплащане Период на базата на датата на фактурата
DocType: Sample Collection,No. of print,Брой разпечатки
@ -3701,12 +3707,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),Длъжници ({0})
DocType: Pricing Rule,Margin,марж
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,Нови клиенти
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,Брутна Печалба %
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,Брутна Печалба %
DocType: Appraisal Goal,Weightage (%),Weightage (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,Промяна на POS профила
DocType: Bank Reconciliation Detail,Clearance Date,Клирънсът Дата
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,Доклад за оценка
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,Брутна Сума на покупката е задължителна
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,Брутна Сума на покупката е задължителна
DocType: Lead,Address Desc,Адрес Описание
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,Компания е задължителна
DocType: Journal Entry,JV-,JV-
@ -3738,7 +3744,6 @@ DocType: Account,Accumulated Depreciation,Натрупани амортизац
DocType: Supplier Scorecard Scoring Standing,Standing Name,Постоянно име
DocType: Stock Entry,Customer or Supplier Details,Клиент или доставчик - Детайли
DocType: Employee Loan Application,Required by Date,Изисвани до дата
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),Заключителен баланс (Dr-Cr)
DocType: Lead,Lead Owner,Потенциален клиент - собственик
DocType: Bin,Requested Quantity,заявеното количество
DocType: Patient,Marital Status,Семейно Положение
@ -3752,7 +3757,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,Няколко варианта
DocType: Sales Invoice,Against Income Account,Срещу Приходна Сметка
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% Доставени
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Точка {0}: Поръчано Количество {1} не може да бъде по-малък от минималния Количество цел {2} (дефинирана в точка).
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Точка {0}: Поръчано Количество {1} не може да бъде по-малък от минималния Количество цел {2} (дефинирана в точка).
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,Месечено процентно разпределение
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,"Моля, влезте като друг потребител."
DocType: Territory,Territory Targets,Територия Цели
@ -3851,7 +3856,7 @@ DocType: Program Enrollment,School House,училище Къща
DocType: Serial No,Out of AMC,Няма AMC
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,Брой на амортизации Договорени не може да бъде по-голям от общия брой амортизации
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,Създаване на Посещение за поддръжка
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,"Моля, свържете се с потребител, който има {0} роля Продажби Майстор на мениджъра"
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,"Моля, свържете се с потребител, който има {0} роля Продажби Майстор на мениджъра"
DocType: Company,Default Cash Account,Каса - сметка по подразбиране
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,Company (не клиент или доставчик) майстор.
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,Това се основава на присъствието на този Student
@ -4001,7 +4006,6 @@ DocType: Delivery Note Item,From Warehouse,От склад
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,Няма служители за посочените критерии
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,Не артикули с Бил на материали за производство на
DocType: Restaurant,Default Customer,Потребител по подразбиране
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,"Моля, настройте система за наименуване на служители в Човешки ресурси&gt; Настройки за персонала"
DocType: Assessment Plan,Supervisor Name,Наименование на надзорник
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,Не потвърждавайте дали среща е създадена за същия ден
DocType: Program Enrollment Course,Program Enrollment Course,Курс за записване на програмата
@ -4119,7 +4123,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,Website Описание
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,Нетна промяна в собствения капитал
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,Най-новият
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,Моля анулирайте фактурата за покупка {0} първо
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,Моля анулирайте фактурата за покупка {0} първо
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","E-mail адрес трябва да бъде уникален, вече съществува за {0}"
DocType: Serial No,AMC Expiry Date,AMC срок на годност
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,Касова бележка
@ -4136,7 +4140,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,Все още
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,Отчет за паричните потоци
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},Размер на кредита не може да надвишава сума на максимален заем {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,Разрешително
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},"Моля, премахнете тази фактура {0} от C-Form {1}"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},"Моля, премахнете тази фактура {0} от C-Form {1}"
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,"Моля изберете прехвърляне, ако и вие искате да се включат предходната фискална година баланс оставя на тази фискална година"
DocType: GL Entry,Against Voucher Type,Срещу ваучер Вид
DocType: Physician,Phone (R),Телефон (R)
@ -4148,7 +4152,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,B Отрицателен
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,"Състоянието на поддръжката трябва да бъде отменено или завършено, за да бъде изпратено"
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},Сметка {0} не принадлежи на фирма {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,Серийните номера в ред {0} не съвпадат с бележката за доставка
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,Серийните номера в ред {0} не съвпадат с бележката за доставка
DocType: Student,Guardian Details,Guardian Детайли
DocType: C-Form,C-Form,Cи-Форма
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,Маркирай присъствие за множество служители
@ -4190,7 +4194,7 @@ DocType: Opening Invoice Creation Tool,Sales,Търговски
DocType: Stock Entry Detail,Basic Amount,Основна сума
DocType: Training Event,Exam,Изпит
DocType: Complaint,Complaint,оплакване
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},Склад се изисква за артикул {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},Склад се изисква за артикул {0}
DocType: Leave Allocation,Unused leaves,Неизползваните отпуски
DocType: Patient,Alcohol Past Use,Използване на алкохол в миналото
DocType: Fertilizer Content,Fertilizer Content,Съдържание на тор
@ -4314,6 +4318,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,формула
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,Serial #
DocType: Lab Test Template,Lab Test Template,Лабораторен тестов шаблон
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,Профил за продажби
DocType: Purchase Invoice Item,Total Weight,Общо тегло
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,Комисионна за покупко-продажба
DocType: Offer Letter Term,Value / Description,Стойност / Описание
@ -4470,7 +4475,7 @@ Updated via 'Time Log'",в протокола Updated чрез &quot;Time Log&qu
DocType: Customer,From Lead,От потенциален клиент
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,Поръчки пуснати за производство.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,Изберете фискална година ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,POS профил изисква да направи POS Влизане
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,POS профил изисква да направи POS Влизане
DocType: Program Enrollment Tool,Enroll Students,Прием на студенти
DocType: Lab Test,Approved Date,Одобрена дата
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,Standard Selling
@ -4546,7 +4551,7 @@ DocType: Employee,Held On,Проведена На
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,Производство - елемент
,Employee Information,Служител - Информация
DocType: Stock Entry Detail,Additional Cost,Допълнителен разход
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","Не може да се филтрира по Ваучер Не, ако е групирано по ваучер"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","Не може да се филтрира по Ваучер Не, ако е групирано по ваучер"
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,Въведи оферта на доставчик
DocType: Quality Inspection,Incoming,Входящ
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,Създават се стандартни данъчни шаблони за продажби и покупки.
@ -4563,7 +4568,7 @@ DocType: Batch,Batch ID,Партида Номер
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},Забележка: {0}
,Delivery Note Trends,Складова разписка - Тенденции
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,Тази Седмица Резюме
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,В наличност брой
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,В наличност брой
DocType: Delivery Trip,Calculate Estimated Arrival Times,Изчислете прогнозните часове на пристигане
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,Сметка: {0} може да се актуализира само чрез Складови трансакции
DocType: Student Group Creation Tool,Get Courses,Вземете курсове
@ -4579,7 +4584,7 @@ DocType: Purchase Order,To Bill,Да се фактурира
DocType: Material Request,% Ordered,% Поръчани
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.","За курсовата студентска група, курсът ще бъде валидиран за всеки студент от записаните курсове по програма за записване."
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,Работа заплащана на парче
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,Ср. Курс купува
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,Ср. Курс купува
DocType: Task,Actual Time (in Hours),Действителното време (в часове)
DocType: Employee,History In Company,История във фирмата
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},Ново съобщение от {sender}
@ -4627,7 +4632,7 @@ DocType: Asset Repair,Asset Repair,Възстановяване на актив
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},Row {0}: Валута на BOM # {1} трябва да бъде равна на избраната валута {2}
DocType: Journal Entry Account,Exchange Rate,Обменен курс
DocType: Patient,Additional information regarding the patient,Допълнителна информация относно пациента
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,Поръчка за продажба {0} не е изпратена
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,Поръчка за продажба {0} не е изпратена
DocType: Homepage,Tag Line,Tag Line
DocType: Fee Component,Fee Component,Такса Компонент
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,Управление на автопарка
@ -4839,7 +4844,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,Оценка Резу
DocType: Employee Education,Employee Education,Служител - Образование
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,Duplicate група т намерена в таблицата на т група
DocType: Land Unit,Parent Land Unit,Звено за родители
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,"Той е необходим, за да донесе точка Details."
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,"Той е необходим, за да донесе точка Details."
DocType: Fertilizer,Fertilizer Name,Име на тора
DocType: Salary Slip,Net Pay,Net Pay
DocType: Account,Account,Сметка
@ -4918,7 +4923,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),Действителн
DocType: Item Customer Detail,Ref Code,Ref Code
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,Групата клиенти е задължителна в POS профила
apps/erpnext/erpnext/config/hr.py +12,Employee records.,Записи на служителите.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,"Моля, задайте Следваща Амортизация Дата"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,"Моля, задайте Следваща Амортизация Дата"
DocType: HR Settings,Payroll Settings,Настройки ТРЗ
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,Съвпадение без свързана фактури и плащания.
DocType: POS Settings,POS Settings,POS настройки
@ -5085,7 +5090,7 @@ DocType: Item,Customer Code,Клиент - Код
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},Напомняне за рожден ден за {0}
DocType: Asset Maintenance Task,Last Completion Date,Последна дата на приключване
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,Дни след последната поръчка
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,Дебит на сметка трябва да бъде балансова сметка
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,Дебит на сметка трябва да бъде балансова сметка
DocType: Buying Settings,Naming Series,Поредни Номера
DocType: Leave Block List,Leave Block List Name,Оставете Block List Име
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,Застраховка Начална дата трябва да бъде по-малка от застраховка Крайна дата
@ -5211,6 +5216,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,Вземете Записи на плащане
DocType: Quotation Item,Against Docname,Срещу Документ
DocType: SMS Center,All Employee (Active),All Employee (Active)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Клиент&gt; Група клиенти&gt; Територия
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,Вижте сега
DocType: BOM,Raw Material Cost,Разходи за суровини
DocType: Item Reorder,Re-Order Level,Re-Поръчка Level
@ -5309,7 +5315,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,Седалки капацитет
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,Лабораторни тестови групи
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Клиент&gt; Група клиенти&gt; Територия
DocType: Project,Total Expense Claim (via Expense Claims),Общо разход претенция (чрез разход Вземания)
DocType: GST Settings,GST Summary,Резюме на GST
DocType: Assessment Result,Total Score,Общ резултат
@ -5322,7 +5327,7 @@ DocType: Batch,Source Document Type,Тип източник на докумен
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,Бяха създадени графици за курсовете
DocType: Journal Entry,Total Debit,Общо дебит
DocType: Manufacturing Settings,Default Finished Goods Warehouse,По подразбиране - Склад за готова продукция
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,Търговец
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,Търговец
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,Бюджет и Разходен център
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,Не е разрешен няколко начина на плащане по подразбиране
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,за
@ -5495,7 +5500,7 @@ DocType: Program,Program Name,програма Наименование
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Помислете за данък или такса за
DocType: Driver,Driving License Category,Категория на лиценза за шофьори
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,Действително Количество е задължително
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0} понастоящем има {1} карта на Доставчика за покупки и поръчките за покупка на този доставчик трябва да се издават с повишено внимание.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0} понастоящем има {1} карта на Доставчика за покупки и поръчките за покупка на този доставчик трябва да се издават с повишено внимание.
DocType: Asset Maintenance Team,Asset Maintenance Team,Екип за поддръжка на активи
DocType: Employee Loan,Loan Type,Вид на кредита
DocType: Scheduling Tool,Scheduling Tool,Scheduling Tool

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,ল্যাব প্রেসক্
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,মূল্য অনুসারে সাজান
,Delay Days,বিলম্বিত দিনগুলি
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,পরিষেবা ব্যায়ের
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},ক্রমিক সংখ্যা: {0} ইতিমধ্যে বিক্রয় চালান উল্লেখ করা হয়: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},ক্রমিক সংখ্যা: {0} ইতিমধ্যে বিক্রয় চালান উল্লেখ করা হয়: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,চালান
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,ধারণ স্টক এন্ট্রি করুন
DocType: Purchase Invoice Item,Item Weight Details,আইটেম ওজন বিশদ
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,মূল বিস্তারিত
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","রেফারেন্স: {0}, আইটেম কোড: {1} এবং গ্রাহক: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,কেজি
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,একটি কাজের জন্য খোলা.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},{1} সারি {1} এ উপসম্পাদক আইটেমের জন্য BOM নির্দিষ্ট করা হয়নি
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},{1} সারি {1} এ উপসম্পাদক আইটেমের জন্য BOM নির্দিষ্ট করা হয়নি
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} ফলাফল জমা দেওয়া হয়েছে
DocType: Item Attribute,Increment,বৃদ্ধি
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,Timespan
@ -150,7 +150,7 @@ DocType: Patient,Married,বিবাহিত
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},অনুমোদিত নয় {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,থেকে আইটেম পান
DocType: Price List,Price Not UOM Dependant,দাম না UOM নির্ভরশীলতা
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},শেয়ার হুণ্ডি বিরুদ্ধে আপডেট করা যাবে না {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},শেয়ার হুণ্ডি বিরুদ্ধে আপডেট করা যাবে না {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},প্রোডাক্ট {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,তালিকাভুক্ত কোনো আইটেম
DocType: Asset Repair,Error Description,ত্রুটি বর্ণনা
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,মিলনসাধন করা
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,মুদিখানা
DocType: Quality Inspection Reading,Reading 1,1 পঠন
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,অবসর বৃত্তি পেনশন ভাতা তহবিল
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,পরবর্তী অবচয় তারিখ আগে ক্রয়ের তারিখ হতে পারে না
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,পরবর্তী অবচয় তারিখ আগে ক্রয়ের তারিখ হতে পারে না
DocType: Crop,Perennial,বহুবর্ষজীবী
DocType: Consultation,Consultation Date,পরামর্শ তারিখ
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,ERPNext ব্যবহারকারীদের জন্য পণ্য তালিকা এবং আবিষ্কার
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,খরচ কেন্দ্র ব
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""","যেমন, &quot;প্রাথমিক স্কুল&quot; বা &quot;বিশ্ববিদ্যালয়&quot;"
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,স্টক রিপোর্ট
DocType: Warehouse,Warehouse Detail,ওয়ারহাউস বিস্তারিত
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},ক্রেডিট সীমা গ্রাহকের জন্য পার হয়েছে {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},ক্রেডিট সীমা গ্রাহকের জন্য পার হয়েছে {0} {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,টার্ম শেষ তারিখ পরে একাডেমিক ইয়ার বছর শেষ তারিখ যা শব্দটি সংযুক্ত করা হয় না হতে পারে (শিক্ষাবর্ষ {}). তারিখ সংশোধন করে আবার চেষ্টা করুন.
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item",", অবারিত হতে পারে না যেমন অ্যাসেট রেকর্ড আইটেমটি বিরুদ্ধে বিদ্যমান &quot;ফিক্সড সম্পদ&quot;"
DocType: Delivery Trip,Departure Time,ছাড়ার সময়
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,ছাত্র লগ
DocType: Quality Inspection,Get Specification Details,স্পেসিফিকেশন বিবরণ পান
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,সরবরাহকারী স্ট্যান্ডিং টেম্পলেট।
DocType: Lead,Interested,আগ্রহী
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,উদ্বোধন
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,উদ্বোধন
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},থেকে {0} থেকে {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,ট্যাক্স সেট করতে ব্যর্থ হয়েছে
DocType: Item,Copy From Item Group,আইটেম গ্রুপ থেকে কপি
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,তারিখ মুক্তিদান যোগদান তারিখ থেকে বড় হওয়া উচিত
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,প্রতি বছর পত্রাদি
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,সারি {0}: চেক করুন অ্যাকাউন্টের বিরুদ্ধে &#39;আগাম&#39; {1} এই একটি অগ্রিম এন্ট্রি হয়.
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},{0} ওয়্যারহাউস কোম্পানি অন্তর্গত নয় {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},{0} ওয়্যারহাউস কোম্পানি অন্তর্গত নয় {1}
DocType: Email Digest,Profit & Loss,লাভ ক্ষতি
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,লিটার
DocType: Task,Total Costing Amount (via Time Sheet),মোট খোয়াতে পরিমাণ (টাইম শিট মাধ্যমে)
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,হার এবং পরিমাণ
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,এই কোম্পানি বিরুদ্ধে লেনদেন উপর ভিত্তি করে। বিস্তারিত জানার জন্য নীচের টাইমলাইনে দেখুন
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,স্বয়ংক্রিয় উপাদান অনুরোধ নির্মাণের ইমেইল দ্বারা সূচিত
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,প্রতিরোধী
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Consultationt
DocType: Journal Entry,Multi Currency,বিভিন্ন দেশের মুদ্রা
DocType: Opening Invoice Creation Tool,Invoice Type,চালান প্রকার
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,চালান পত্র
@ -528,7 +529,6 @@ DocType: Email Digest,Credit Balance,ক্রেডিট ব্যালেন
DocType: Employee,Widowed,পতিহীনা
DocType: Request for Quotation,Request for Quotation,উদ্ধৃতি জন্য অনুরোধ
DocType: Healthcare Settings,Require Lab Test Approval,ল্যাব টেস্ট অনুমোদন প্রয়োজন
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,আইটেম কোড&gt; আইটেম গ্রুপ&gt; ব্র্যান্ড
DocType: Salary Slip Timesheet,Working Hours,কর্মঘন্টা
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,পুরো অসাধারন
DocType: Naming Series,Change the starting / current sequence number of an existing series.,একটি বিদ্যমান সিরিজের শুরু / বর্তমান ক্রম সংখ্যা পরিবর্তন করুন.
@ -557,7 +557,7 @@ DocType: Subscription,Yearly,বাত্সরিক
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,খরচ কেন্দ্র লিখুন দয়া করে
DocType: Drug Prescription,Dosage,ডোজ
DocType: Journal Entry Account,Sales Order,বিক্রয় আদেশ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,গড়. হার বিক্রী
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,গড়. হার বিক্রী
DocType: Assessment Plan,Examiner Name,পরীক্ষক নাম
DocType: Lab Test Template,No Result,কোন ফল
DocType: Purchase Invoice Item,Quantity and Rate,পরিমাণ ও হার
@ -605,6 +605,7 @@ DocType: Employee,Health Concerns,স্বাস্থ সচেতন
DocType: Payroll Entry,Select Payroll Period,বেতনের সময়কাল নির্বাচন
DocType: Purchase Invoice,Unpaid,অবৈতনিক
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,বিক্রয়ের জন্য সংরক্ষিত
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,মানব সম্পদে কর্মচারী নেমিং সিস্টেম&gt; এইচআর সেটিংস সেট আপ করুন
DocType: Packing Slip,From Package No.,প্যাকেজ নং থেকে
DocType: Item Attribute,To Range,পরিসীমা
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,সিকিউরিটিজ এবং আমানত
@ -629,11 +630,11 @@ DocType: Pricing Rule,Valid Upto,বৈধ পর্যন্ত
DocType: Training Event,Workshop,কারখানা
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,ক্রয় অর্ডারগুলি সতর্ক করুন
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,আপনার গ্রাহকদের কয়েক তালিকা. তারা সংগঠন বা ব্যক্তি হতে পারে.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,পর্যাপ্ত যন্ত্রাংশ তৈরি করুন
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,পর্যাপ্ত যন্ত্রাংশ তৈরি করুন
DocType: POS Profile User,POS Profile User,পিওএস প্রোফাইল ব্যবহারকারী
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,সরাসরি আয়
DocType: Patient Appointment,Date TIme,তারিখ সময়
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account",অ্যাকাউন্ট দ্বারা গ্রুপকৃত তাহলে অ্যাকাউন্ট উপর ভিত্তি করে ফিল্টার করতে পারবে না
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account",অ্যাকাউন্ট দ্বারা গ্রুপকৃত তাহলে অ্যাকাউন্ট উপর ভিত্তি করে ফিল্টার করতে পারবে না
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,প্রশাসনিক কর্মকর্তা
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,কোম্পানী এবং ট্যাক্স সেট আপ
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,দয়া করে কোর্সের নির্বাচন
@ -643,7 +644,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,পার্থক্য অ্যাকাউন্ট
DocType: Purchase Invoice,Supplier GSTIN,সরবরাহকারী GSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,তার নির্ভরশীল টাস্ক {0} বন্ধ না হয় বন্ধ টাস্ক না পারেন.
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,"উপাদান অনুরোধ উত্থাপিত হবে, যার জন্য গুদাম লিখুন দয়া করে"
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,"উপাদান অনুরোধ উত্থাপিত হবে, যার জন্য গুদাম লিখুন দয়া করে"
DocType: Production Order,Additional Operating Cost,অতিরিক্ত অপারেটিং খরচ
DocType: Lab Test Template,Lab Routine,ল্যাব রাউটিং
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,অঙ্গরাগ
@ -811,7 +812,7 @@ DocType: Employee,Passport Number,পাসপোর্ট নম্বার
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Guardian2 সাথে সর্ম্পক
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,ম্যানেজার
DocType: Payment Entry,Payment From / To,পেমেন্ট থেকে / প্রতি
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},নতুন ক্রেডিট সীমা গ্রাহকের জন্য বর্তমান অসামান্য রাশির চেয়ে কম হয়. ক্রেডিট সীমা অন্তত হতে হয়েছে {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},নতুন ক্রেডিট সীমা গ্রাহকের জন্য বর্তমান অসামান্য রাশির চেয়ে কম হয়. ক্রেডিট সীমা অন্তত হতে হয়েছে {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},গুদামে অ্যাকাউন্ট সেট করুন {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,'গ্রুপ দ্বারা' এবং 'উপর ভিত্তি করে' একই হতে পারে না
DocType: Sales Person,Sales Person Targets,সেলস পারসন লক্ষ্যমাত্রা
@ -822,7 +823,7 @@ DocType: Lab Test Template,Compound,যৌগিক
DocType: Student Batch Name,Batch Name,ব্যাচ নাম
DocType: Fee Validity,Max number of visit,দেখার সর্বাধিক সংখ্যা
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,শ্রমিকের খাটুনিঘণ্টা লিপিবদ্ধ কার্ড তৈরি করা হয়েছে:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},পেমেন্ট মোডে ডিফল্ট ক্যাশ বা ব্যাংক একাউন্ট সেট করুন {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},পেমেন্ট মোডে ডিফল্ট ক্যাশ বা ব্যাংক একাউন্ট সেট করুন {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,নথিভুক্ত করা
DocType: GST Settings,GST Settings,GST সেটিং
DocType: Selling Settings,Customer Naming By,গ্রাহক নেমিং
@ -946,7 +947,7 @@ DocType: Delivery Note,Customer's Purchase Order No,গ্রাহকের ক
DocType: Budget,Budget Against,বাজেট বিরুদ্ধে
DocType: Employee,Cell Number,মোবাইল নম্বর
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,প্রদত্ত মানদণ্ডের জন্য কোনও কর্মচারী নেই। পরীক্ষা করুন যে বেতন স্লিপগুলি ইতিমধ্যে তৈরি করা হয়নি।
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,অটো উপাদান অনুরোধ উত্পন্ন
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,অটো উপাদান অনুরোধ উত্পন্ন
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,নষ্ট
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,আপনি কলাম &#39;জার্নাল এন্ট্রি বিরুদ্ধে&#39; বর্তমান ভাউচার লিখতে পারবেন না
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,উত্পাদন জন্য সংরক্ষিত
@ -954,7 +955,7 @@ DocType: Soil Texture,Sand,বালি
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,শক্তি
DocType: Opportunity,Opportunity From,থেকে সুযোগ
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,মাসিক বেতন বিবৃতি.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,সারি {0}: {1} আইটেমের জন্য প্রয়োজনীয় সিরিয়াল নম্বর {2}। আপনি {3} প্রদান করেছেন।
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,সারি {0}: {1} আইটেমের জন্য প্রয়োজনীয় সিরিয়াল নম্বর {2}। আপনি {3} প্রদান করেছেন।
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,একটি টেবিল নির্বাচন করুন
DocType: BOM,Website Specifications,ওয়েবসাইট উল্লেখ
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} &#39;প্রাপকদের&#39; একটি অবৈধ ইমেল ঠিকানা
@ -1023,7 +1024,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,উদ্ধৃতি অনুরোধ
DocType: Vital Signs,Heart Rate / Pulse,হার্ট রেট / পালস
DocType: Company,Default Bank Account,ডিফল্ট ব্যাঙ্ক অ্যাকাউন্ট
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","পার্টি উপর ভিত্তি করে ফিল্টার করুন, নির্বাচন পার্টি প্রথম টাইপ"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","পার্টি উপর ভিত্তি করে ফিল্টার করুন, নির্বাচন পার্টি প্রথম টাইপ"
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},"আইটেম মাধ্যমে বিতরণ করা হয় না, কারণ &#39;আপডেট স্টক চেক করা যাবে না {0}"
DocType: Vehicle,Acquisition Date,অধিগ্রহণ তারিখ
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,আমরা
@ -1047,7 +1048,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),আপনার চিঠির মাথাটি আপলোড করুন (এটি ওয়েবপৃষ্ঠাটি 900px দ্বারা 100px করে রাখুন)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: অ্যাকাউন্ট {2} একটি গ্রুপ হতে পারে না
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,আইটেম সারি {idx}: {DOCTYPE} {DOCNAME} উপরে বিদ্যমান নেই &#39;{DOCTYPE}&#39; টেবিল
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,শ্রমিকের খাটুনিঘণ্টা লিপিবদ্ধ কার্ড {0} ইতিমধ্যে সম্পন্ন বা বাতিল করা হয়েছে
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,শ্রমিকের খাটুনিঘণ্টা লিপিবদ্ধ কার্ড {0} ইতিমধ্যে সম্পন্ন বা বাতিল করা হয়েছে
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,কোন কর্ম
DocType: Item Variant Settings,Copy Fields to Variant,ক্ষেত্রগুলি থেকে বৈকল্পিক কপি করুন
DocType: Asset,Opening Accumulated Depreciation,খোলা সঞ্চিত অবচয়
@ -1159,9 +1160,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,উপ-সমাহারকে পরিকল্পনা উপাদান
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,সেলস অংশীদার এবং টেরিটরি
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,BOM {0} সক্রিয় হতে হবে
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),বন্ধ (খোলা + মোট)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),বন্ধ (খোলা + মোট)
DocType: Journal Entry,Depreciation Entry,অবচয় এণ্ট্রি
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,প্রথম ডকুমেন্ট টাইপ নির্বাচন করুন
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,অ্যাকাউন্ট মুদ্রা মুদ্রণ করুন
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,এই রক্ষণাবেক্ষণ পরিদর্শন বাতিল আগে বাতিল উপাদান ভিজিট {0}
DocType: Crop Cycle,ISO 8016 standard,আইএসও 8016 স্ট্যান্ডার্ড
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},সিরিয়াল কোন {0} আইটেম অন্তর্গত নয় {1}
@ -1187,7 +1189,7 @@ DocType: Purchase Receipt,Range,পরিসর
DocType: Supplier,Default Payable Accounts,ডিফল্ট পরিশোধযোগ্য অংশ
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,{0} কর্মচারী সক্রিয় নয় বা কোন অস্তিত্ব নেই
DocType: Fee Structure,Components,উপাদান
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},আইটেম মধ্যে লিখুন দয়া করে অ্যাসেট শ্রেণী {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},আইটেম মধ্যে লিখুন দয়া করে অ্যাসেট শ্রেণী {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,আইটেম রুপভেদ {0} আপডেট
DocType: Quality Inspection Reading,Reading 6,6 পঠন
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1239,6 +1241,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,কোমপানির নাম
DocType: SMS Center,Total Message(s),মোট বার্তা (গুলি)
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,স্থানান্তর জন্য নির্বাচন আইটেম
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,{0} সেটআপের মাধ্যমে&gt; সেটিংস&gt; নামকরণ সিরিজ জন্য নামকরণ সিরিজ সেট করুন
DocType: Purchase Invoice,Additional Discount Percentage,অতিরিক্ত ছাড় শতাংশ
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,সব সাহায্য ভিডিওর একটি তালিকা দেখুন
DocType: Agriculture Analysis Criteria,Soil Texture,মৃত্তিকা টেক্সচার
@ -1266,7 +1269,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,BOM ওয়েবসাইট আইটেম
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,আপনার চিঠি মাথা এবং লোগো আপলোড করুন. (আপনি তাদের পরে সম্পাদনা করতে পারেন).
DocType: Timesheet Detail,Bill,বিল
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,পরবর্তী অবচয় তারিখ অতীত তারিখ হিসাবে প্রবেশ করানো হয়
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,পরবর্তী অবচয় তারিখ অতীত তারিখ হিসাবে প্রবেশ করানো হয়
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,সাদা
DocType: SMS Center,All Lead (Open),সব নেতৃত্ব (ওপেন)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),সারি {0}: Qty জন্য পাওয়া যায় না {4} গুদামে {1} এন্ট্রির সময় পোস্টিং এ ({2} {3})
@ -1282,7 +1285,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,পরের যোগাযোগ তারিখ
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,Qty খোলা
DocType: Healthcare Settings,Appointment Reminder,নিয়োগ অনুস্মারক
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,পরিমাণ পরিবর্তন অ্যাকাউন্ট প্রবেশ করুন
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,পরিমাণ পরিবর্তন অ্যাকাউন্ট প্রবেশ করুন
DocType: Program Enrollment Tool Student,Student Batch Name,ছাত্র ব্যাচ নাম
DocType: Consultation,Doctor,ডাক্তার
DocType: Holiday List,Holiday List Name,ছুটির তালিকা নাম
@ -1298,6 +1301,7 @@ DocType: Patient,Patient Relation,রোগীর সম্পর্ক
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,অ্যালোকেশন টুল ত্যাগ
DocType: Item,Hub Category to Publish,হাব বিভাগ প্রকাশ করতে
DocType: Leave Block List,Leave Block List Dates,ব্লক তালিকা তারিখগুলি ছেড়ে
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,অনুগ্রহ করে সেটআপ&gt; নম্বরিং সিরিজ এর মাধ্যমে উপস্থিতি জন্য ধারাবাহিক সংখ্যা নির্ধারণ করুন
DocType: Sales Invoice,Billing Address GSTIN,বিলিং ঠিকানা জিএসটিআইএন
DocType: Assessment Plan,Evaluate,মূল্যনির্ধারণ
DocType: Workstation,Net Hour Rate,নিট ঘন্টা হার
@ -1331,7 +1335,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,কেনার রসিদ আ
DocType: Purchase Receipt,PREC-RET-,PREC-RET-
DocType: POS Profile,Sales Invoice Payment,সেলস চালান পেমেন্ট
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,বিক্রয় আদেশ / সমাপ্ত পণ্য গুদাম সংরক্ষিত ওয়্যারহাউস
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,বিক্রয় পরিমাণ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,বিক্রয় পরিমাণ
DocType: Repayment Schedule,Interest Amount,সুদের পরিমাণ
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,আপনি এই রেকর্ডের জন্য ব্যয় রাজসাক্ষী হয়. ‧- &#39;status&#39; এবং সংরক্ষণ আপডেট করুন
DocType: Serial No,Creation Document No,ক্রিয়েশন ডকুমেন্ট
@ -1422,7 +1426,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,খোলা অ্যাকাউন্টিং ব্যালান্স
,GST Sales Register,GST সেলস নিবন্ধন
DocType: Sales Invoice Advance,Sales Invoice Advance,বিক্রয় চালান অগ্রিম
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,কিছুই অনুরোধ করতে
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,কিছুই অনুরোধ করতে
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,আপনার ডোমেন নির্বাচন করুন
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},আরেকটি বাজেট রেকর্ড &#39;{0}&#39; ইতিমধ্যে বিরুদ্ধে বিদ্যমান {1} &#39;{2}&#39; অর্থবছরের জন্য {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,সৃষ্টির সময় ক্ষেত্রগুলি শুধুমাত্র কপি করা হবে।
@ -1432,11 +1436,11 @@ DocType: Cheque Print Template,Payer Settings,প্রদায়ক সেট
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","এই বৈকল্পিক আইটেম কোড যোগ করা হবে. আপনার সমাহার &quot;এস এম&quot;, এবং উদাহরণস্বরূপ, যদি আইটেমটি কোড &quot;টি-শার্ট&quot;, &quot;টি-শার্ট-এস এম&quot; হতে হবে বৈকল্পিক আইটেমটি কোড"
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,আপনি বেতন স্লিপ সংরক্ষণ একবার (কথায়) নিট পে দৃশ্যমান হবে.
DocType: Purchase Invoice,Is Return,ফিরে যেতে হবে
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,সতর্কতা
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,সতর্কতা
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,রিটার্ন / ডেবিট নোট
DocType: Price List Country,Price List Country,মূল্যতালিকা দেশ
DocType: Item,UOMs,UOMs
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} আইটেম জন্য বৈধ সিরিয়াল আমরা {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} আইটেম জন্য বৈধ সিরিয়াল আমরা {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,আইটেম কোড সিরিয়াল নং জন্য পরিবর্তন করা যাবে না
DocType: Purchase Invoice Item,UOM Conversion Factor,UOM রূপান্তর ফ্যাক্টর
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,ব্যাচ নম্বর পেতে আইটেম কোড লিখুন দয়া করে
@ -1540,7 +1544,7 @@ DocType: Journal Entry,Get Outstanding Invoices,অসামান্য চা
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,বিক্রয় আদেশ {0} বৈধ নয়
DocType: Supplier Scorecard,Warn for new Request for Quotations,উদ্ধৃতি জন্য নতুন অনুরোধের জন্য সতর্কতা
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,ক্রয় আদেশ আপনি পরিকল্পনা সাহায্য এবং আপনার ক্রয়ের উপর ফলোআপ
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","দুঃখিত, কোম্পানি মার্জ করা যাবে না"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","দুঃখিত, কোম্পানি মার্জ করা যাবে না"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,ল্যাব টেস্ট প্রেসক্রিপশন
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",মোট ইস্যু / স্থানান্তর পরিমাণ {0} উপাদান অনুরোধ মধ্যে {1} \ আইটেম জন্য অনুরোধ পরিমাণ {2} তার চেয়ে অনেক বেশী হতে পারে না {3}
@ -1578,7 +1582,6 @@ DocType: Vehicle,Fuel UOM,জ্বালানীর UOM
DocType: Warehouse,Warehouse Contact Info,ওয়ারহাউস যোগাযোগের তথ্য
DocType: Payment Entry,Write Off Difference Amount,বন্ধ লিখতে পার্থক্য পরিমাণ
DocType: Volunteer,Volunteer Name,স্বেচ্ছাসেবক নাম
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,শিক্ষা&gt; শিক্ষা সেটিংস এ প্রশিক্ষক নামকরণ পদ্ধতি স্থাপন করুন
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0}: কর্মচারী ইমেল পাওয়া যায়নি, অত: পর না পাঠানো ই-মেইল"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},দেশের জন্য শপিংয়ের নিয়ম প্রযোজ্য নয় {0}
DocType: Item,Foreign Trade Details,বৈদেশিক বানিজ্য বিবরণ
@ -1590,7 +1593,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,গ্রুপ রোল নম্বর
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry","{0}, শুধুমাত্র ক্রেডিট অ্যাকাউন্ট অন্য ডেবিট এন্ট্রি বিরুদ্ধে সংযুক্ত করা যাবে জন্য"
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,সব কাজের ওজন মোট হওয়া উচিত 1. অনুযায়ী সব প্রকল্পের কাজগুলো ওজন নিয়ন্ত্রন করুন
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,হুণ্ডি {0} দাখিল করা হয় না
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,হুণ্ডি {0} দাখিল করা হয় না
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,আইটেম {0} একটি সাব-সংকুচিত আইটেম হতে হবে
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,ক্যাপিটাল উপকরণ
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","প্রাইসিং রুল প্রথম উপর ভিত্তি করে নির্বাচন করা হয় আইটেম, আইটেম গ্রুপ বা ব্র্যান্ড হতে পারে, যা ক্ষেত্র &#39;প্রয়োগ&#39;."
@ -1615,7 +1618,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,শিশু গুদাম এই গুদাম জন্য বিদ্যমান. আপনি এই গুদাম মুছতে পারবেন না.
DocType: Item,Website Item Groups,ওয়েবসাইট আইটেম গ্রুপ
DocType: Purchase Invoice,Total (Company Currency),মোট (কোম্পানি একক)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,{0} সিরিয়াল নম্বর একবারের বেশি প্রবেশ
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,{0} সিরিয়াল নম্বর একবারের বেশি প্রবেশ
DocType: Journal Entry,Journal Entry,জার্নাল এন্ট্রি
DocType: Expense Claim Advance,Unclaimed amount,নিষিদ্ধ পরিমাণ
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} প্রগতিতে আইটেম
@ -1711,7 +1714,7 @@ DocType: Email Digest,For Company,কোম্পানি জন্য
apps/erpnext/erpnext/config/support.py +17,Communication log.,যোগাযোগ লগ ইন করুন.
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.",উদ্ধৃতি জন্য অনুরোধ আরো চেক পোর্টাল সেটিংস জন্য পোর্টাল থেকে অ্যাক্সেস করতে অক্ষম হয়.
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,সরবরাহকারী স্কোরকার্ড ভেরিয়েবল স্কোরিং
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,রাজধানীতে পরিমাণ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,রাজধানীতে পরিমাণ
DocType: Sales Invoice,Shipping Address Name,শিপিং ঠিকানা নাম
DocType: Material Request,Terms and Conditions Content,শর্তাবলী কনটেন্ট
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,কোর্স সময়সূচী তৈরি ত্রুটি ছিল
@ -1974,7 +1977,7 @@ DocType: Expense Claim,Total Amount Reimbursed,মোট পরিমাণ শ
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,এই যানবাহন বিরুদ্ধে লগ উপর ভিত্তি করে তৈরি. বিস্তারিত জানার জন্য নিচের টাইমলাইনে দেখুন
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},সরবরাহকারী বিরুদ্ধে চালান {0} তারিখের {1}
DocType: Customer,Default Price List,ডিফল্ট মূল্য তালিকা
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,অ্যাসেট আন্দোলন রেকর্ড {0} সৃষ্টি
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,অ্যাসেট আন্দোলন রেকর্ড {0} সৃষ্টি
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,আপনি মুছে ফেলতে পারবেন না অর্থবছরের {0}. অর্থবছরের {0} গ্লোবাল সেটিংস এ ডিফল্ট হিসাবে সেট করা হয়
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,একই নামের একটি গ্রাহক ইতিমধ্যে বিদ্যমান
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,এটি বেতন স্লিপ জমা দেবে এবং জার্নাল এণ্ট্রি তৈরি করবে। আপনি কি এগিয়ে যেতে চান?
@ -1988,6 +1991,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,প্রাইসিং
DocType: Quotation,Term Details,টার্ম বিস্তারিত
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,{0} এই ছাত্র দলের জন্য ছাত্রদের তুলনায় আরো নথিভুক্ত করা যায় না.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),মোট (কর ছাড়)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,লিড কাউন্ট
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,"{0}, 0 থেকে বেশী হতে হবে"
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,পরিমান মত মজুত আছে
@ -2006,7 +2010,6 @@ DocType: Lab Test,Technician Name,প্রযুক্তিবিদ নাম
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,চালান বাতিলের পেমেন্ট লিঙ্কমুক্ত
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},বর্তমান দূরত্বমাপণী পড়া প্রবেশ প্রাথমিক যানবাহন ওডোমিটার চেয়ে বড় হতে হবে {0}
DocType: Restaurant Reservation,No Show,না দেখান
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,{0} সেটআপের মাধ্যমে&gt; সেটিংস&gt; নামকরণ সিরিজ জন্য নামকরণ সিরিজ সেট করুন
DocType: Shipping Rule Country,Shipping Rule Country,শিপিং রুল দেশ
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,ত্যাগ এবং অ্যাটেনডেন্স
DocType: Maintenance Visit,Partially Completed,আংশিকভাবে সম্পন্ন
@ -2097,7 +2100,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,শিক্ষার্থীর গ্রুপ প্রশিক্ষক
DocType: Grant Application,Assessment Mark (Out of 10),মূল্যায়ন মার্ক (10 এর মধ্যে)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 মোবাইল কোন
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,প্রধান
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,প্রধান
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,বৈকল্পিক
DocType: Naming Series,Set prefix for numbering series on your transactions,আপনার লেনদেনের উপর সিরিজ সংখ্যায়ন জন্য সেট উপসর্গ
DocType: Employee Attendance Tool,Employees HTML,এমপ্লয়িজ এইচটিএমএল
@ -2145,7 +2148,7 @@ DocType: Crop,Crop Spacing,ক্রপ স্পেসিং
DocType: Course,Course Abbreviation,কোর্সের সমাহার
DocType: Student Leave Application,Student Leave Application,শিক্ষার্থীর ছুটি আবেদন
DocType: Item,Will also apply for variants,এছাড়াও ভিন্নতা জন্য আবেদন করতে হবে
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","অ্যাসেট, বাতিল করা যাবে না হিসাবে এটি আগে থেকেই {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","অ্যাসেট, বাতিল করা যাবে না হিসাবে এটি আগে থেকেই {0}"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},কর্মচারী {0} হাফ দিনে {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},মোট কাজ ঘন্টা সর্বোচ্চ কর্মঘন্টা চেয়ে বেশী করা উচিত হবে না {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,উপর
@ -2329,9 +2332,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),প্রকৃত শেষ তারিখ (টাইম শিট মাধ্যমে)
DocType: Soil Texture,Soil Type,মৃত্তিকা টাইপ
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},পরিমাণ {0} {1} বিরুদ্ধে {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,নতুন বার্তা
,Quotation Trends,উদ্ধৃতি প্রবণতা
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},আইটেমটি গ্রুপ আইটেমের জন্য আইটেম মাস্টার উল্লেখ না {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,অ্যাকাউন্ট ডেবিট একটি গ্রহনযোগ্য অ্যাকাউন্ট থাকতে হবে
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,অ্যাকাউন্ট ডেবিট একটি গ্রহনযোগ্য অ্যাকাউন্ট থাকতে হবে
DocType: Shipping Rule,Shipping Amount,শিপিং পরিমাণ
DocType: Supplier Scorecard Period,Period Score,সময়কাল স্কোর
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,গ্রাহকরা যোগ করুন
@ -2342,7 +2346,7 @@ DocType: Purchase Order,Delivered,নিষ্কৃত
,Vehicle Expenses,গাড়ির খরচ
DocType: Serial No,Invoice Details,চালান বিস্তারিত
DocType: Grant Application,Show on Website,ওয়েবসাইট দেখান
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},দরকারী জীবন পর প্রত্যাশিত মান এর চেয়ে বড় বা সমান হতে হবে {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},দরকারী জীবন পর প্রত্যাশিত মান এর চেয়ে বড় বা সমান হতে হবে {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,শুরু করা যাক
DocType: Hub Category,Hub Category,হাব বিভাগ
DocType: Purchase Invoice,SEZ,এসইজেড
@ -2373,7 +2377,7 @@ DocType: Patient,Patient Details,রোগীর বিবরণ
DocType: Patient,B Positive,বি ইতিবাচক
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","সারি # {0}: Qty, 1 হবে যেমন আইটেম একটি নির্দিষ্ট সম্পদ. একাধিক Qty এ জন্য পৃথক সারি ব্যবহার করুন."
DocType: Leave Block List Allow,Leave Block List Allow,ব্লক মঞ্জুর তালিকা ত্যাগ
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,সংক্ষিপ্তকরণ ফাঁকা বা স্থান হতে পারে না
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,সংক্ষিপ্তকরণ ফাঁকা বা স্থান হতে পারে না
DocType: Patient Medical Record,Patient Medical Record,রোগীর চিকিৎসা রেকর্ড
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,অ-গ্রুপ গ্রুপ
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,স্পোর্টস
@ -2423,6 +2427,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,কোন উদ্ধৃত কোন প্রাপ্ত RFQ সেট করতে পারবেন না
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,মোট সিদ্ধান্তগ্রহণ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,অ্যাকাউন্ট মুদ্রার মুদ্রণ করতে একটি অ্যাকাউন্ট নির্বাচন করুন
,Production Analytics,উত্পাদনের অ্যানালিটিক্স
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,এই রোগীর বিরুদ্ধে লেনদেনের উপর নির্ভর করে। বিস্তারিত জানার জন্য নীচের টাইমলাইনে দেখুন
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,খরচ আপডেট
@ -2477,7 +2482,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,আ
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,কোম্পানি নির্বাচন ...
DocType: Leave Control Panel,Leave blank if considered for all departments,সব বিভাগের জন্য বিবেচিত হলে ফাঁকা ছেড়ে দিন
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","কর্মসংস্থান প্রকারভেদ (স্থায়ী, চুক্তি, অন্তরীণ ইত্যাদি)."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} আইটেমের জন্য বাধ্যতামূলক {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} আইটেমের জন্য বাধ্যতামূলক {1}
DocType: Payroll Entry,Fortnightly,পাক্ষিক
DocType: Currency Exchange,From Currency,মুদ্রা থেকে
DocType: Vital Signs,Weight (In Kilogram),ওজন (কিলোগ্রামে)
@ -2553,7 +2558,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),বেসিক পর
DocType: Student,Guardians,অভিভাবকরা
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,দাম দেখানো হবে না যদি মূল্য তালিকা নির্ধারণ করা হয় না
DocType: Stock Entry,Total Incoming Value,মোট ইনকামিং মূল্য
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,ডেবিট প্রয়োজন বোধ করা হয়
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,ডেবিট প্রয়োজন বোধ করা হয়
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Timesheets সাহায্য আপনার দলের দ্বারা সম্পন্ন তৎপরতা জন্য সময়, খরচ এবং বিলিং ট্র্যাক রাখতে"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,ক্রয়মূল্য তালিকা
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,সরবরাহকারী স্কোরকার্ড ভেরিয়েবলের টেমপ্লেট
@ -2654,7 +2659,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,শুধুমাত্র রেফারেন্সের জন্য.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},চিকিত্সক {0} {1} এ উপলব্ধ নয়
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,ব্যাচ নির্বাচন কোন
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},অকার্যকর {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},অকার্যকর {0}: {1}
,GSTR-1,GSTR -1
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Fee Validity,Reference Inv,রেফারেন্স INV
@ -2691,8 +2696,8 @@ DocType: Fees,Send Payment Request,অর্থ প্রদানের অন
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","অপারেশন, অপারেটিং খরচ উল্লেখ করুন এবং আপনার কাজকর্মকে কোন একটি অনন্য অপারেশন দিতে."
DocType: Water Analysis,Origin,উত্স
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,এই দস্তাবেজটি দ্বারা সীমা উত্তীর্ণ {0} {1} আইটেমের জন্য {4}. আপনি তৈরি করছেন আরেকটি {3} একই বিরুদ্ধে {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,সংরক্ষণ পরে আবর্তক নির্ধারণ করুন
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,নির্বাচন পরিবর্তনের পরিমাণ অ্যাকাউন্ট
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,সংরক্ষণ পরে আবর্তক নির্ধারণ করুন
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,নির্বাচন পরিবর্তনের পরিমাণ অ্যাকাউন্ট
DocType: Purchase Invoice,Price List Currency,মূল্যতালিকা মুদ্রা
DocType: Naming Series,User must always select,ব্যবহারকারী সবসময় নির্বাচন করতে হবে
DocType: Stock Settings,Allow Negative Stock,নেতিবাচক শেয়ার মঞ্জুরি
@ -2748,7 +2753,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,রক্ষণ
DocType: Supplier Scorecard,Warn for new Purchase Orders,নতুন ক্রয় আদেশের জন্য সতর্ক করুন
DocType: Quality Inspection Reading,Reading 9,9 পঠন
DocType: Supplier,Is Frozen,জমাটবাধা
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,গ্রুপ নোড গুদাম লেনদেনের জন্য নির্বাচন করতে অনুমতি দেওয়া হয় না
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,গ্রুপ নোড গুদাম লেনদেনের জন্য নির্বাচন করতে অনুমতি দেওয়া হয় না
DocType: Buying Settings,Buying Settings,রাজধানীতে সেটিংস
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,একটি সমাপ্ত ভাল আইটেম জন্য BOM নং
DocType: Upload Attendance,Attendance To Date,তারিখ উপস্থিতি
@ -2762,6 +2767,7 @@ DocType: Offer Letter,Accepted,গৃহীত
DocType: Grant Application,Organization,সংগঠন
DocType: BOM Update Tool,BOM Update Tool,BOM আপডেট সরঞ্জাম
DocType: SG Creation Tool Course,Student Group Name,স্টুডেন্ট গ্রুপের নাম
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,বিস্ফোরক দেখুন দেখান
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,ফি তৈরি করা
apps/erpnext/erpnext/setup/doctype/company/company.js +91,Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone.,"আপনি কি সত্যিই এই কোম্পানির জন্য সব লেনদেন মুছে ফেলতে চান, নিশ্চিত করুন. হিসাবে এটা আপনার মাস্টার ডেটা থাকবে. এই ক্রিয়াটি পূর্বাবস্থায় ফেরানো যাবে না."
DocType: Room,Room Number,রুম নম্বর
@ -2772,7 +2778,7 @@ DocType: Journal Entry Account,Payroll Entry,পেরোল এণ্ট্র
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,ট্যাক্স টেমপ্লেট তৈরি করুন
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,ব্যবহারকারী ফোরাম
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,কাঁচামালের ফাঁকা থাকতে পারে না.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","স্টক আপডেট করা যায়নি, চালান ড্রপ শিপিং আইটেমটি রয়েছে."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","স্টক আপডেট করা যায়নি, চালান ড্রপ শিপিং আইটেমটি রয়েছে."
DocType: Lab Test Sample,Lab Test Sample,ল্যাব পরীক্ষার নমুনা
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,দ্রুত জার্নাল এন্ট্রি
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,BOM কোন আইটেম agianst উল্লেখ তাহলে আপনি হার পরিবর্তন করতে পারবেন না
@ -2843,7 +2849,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,আমেরিকান ডলার
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,চালান করুন
DocType: Selling Settings,Auto close Opportunity after 15 days,15 দিন পর অটো বন্ধ সুযোগ
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,{1} এর স্কোরকার্ড স্থানের কারণে {0} জন্য ক্রয় অর্ডার অনুমোদিত নয়।
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,{1} এর স্কোরকার্ড স্থানের কারণে {0} জন্য ক্রয় অর্ডার অনুমোদিত নয়।
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,শেষ বছর
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Quot / লিড%
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,চুক্তি শেষ তারিখ যোগদান তারিখ থেকে বড় হওয়া উচিত
@ -2934,7 +2940,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90-উপরে
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,সারি # {0}: জার্নাল এন্ট্রি {1} অ্যাকাউন্ট নেই {2} বা ইতিমধ্যেই অন্য ভাউচার বিরুদ্ধে মিলেছে
DocType: Supplier Scorecard Criteria,Criteria Weight,মাপদণ্ড ওজন
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,সরবরাহকারী&gt; সরবরাহকারী প্রকার
DocType: Buying Settings,Default Buying Price List,ডিফল্ট ক্রয় মূল্য তালিকা
DocType: Payroll Entry,Salary Slip Based on Timesheet,বেতন স্লিপ শ্রমিকের খাটুনিঘণ্টা লিপিবদ্ধ কার্ড উপর ভিত্তি করে
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,কেনা দর
@ -3022,7 +3027,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,ট্র্যাক শিল্প টাইপ দ্বারা অনুসন্ধান.
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,লেটার হেডসে যান
DocType: Item Supplier,Item Supplier,আইটেম সরবরাহকারী
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,ব্যাচ কোন পেতে আইটেম কোড প্রবেশ করুন
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,ব্যাচ কোন পেতে আইটেম কোড প্রবেশ করুন
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},{0} quotation_to জন্য একটি মান নির্বাচন করুন {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,সব ঠিকানাগুলি.
DocType: Company,Stock Settings,স্টক সেটিংস
@ -3199,6 +3204,7 @@ DocType: Employee Loan,Loan Details,ঋণ বিবরণ
DocType: Company,Default Inventory Account,ডিফল্ট পরিসংখ্যা অ্যাকাউন্ট
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,সারি {0}: সমাপ্ত Qty শূন্য অনেক বেশী হতে হবে.
DocType: Antibiotic,Antibiotic Name,অ্যান্টিবায়োটিক নাম
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,আইটেম কোড&gt; আইটেম গ্রুপ&gt; ব্র্যান্ড
DocType: Purchase Invoice,Apply Additional Discount On,অতিরিক্ত ডিসকাউন্ট উপর প্রয়োগ
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,প্রকার নির্বাচন করুন ...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,সমস্ত জমি ইউনিট যা ফসল ক্রমবর্ধমান হয় একটি লিঙ্ক
@ -3391,6 +3397,7 @@ DocType: Guardian Student,Guardian Student,গার্ডিয়ান স্
DocType: Supplier,Credit Limit,ক্রেডিট সীমা
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,গড়। মূল্য তালিকা হার বিক্রি
DocType: Production Plan Sales Order,Salse Order Date,কর্দমস্রাবক আগ্নেয়গিরি ক্রম তারিখের
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,সরবরাহকারী&gt; সরবরাহকারী প্রকার
DocType: Salary Component,Salary Component,বেতন কম্পোনেন্ট
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,পেমেন্ট দাখিলা {0} উন-লিঙ্ক আছে
DocType: GL Entry,Voucher No,ভাউচার কোন
@ -3399,7 +3406,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,সবচেয
DocType: Leave Allocation,Leave Allocation,অ্যালোকেশন ত্যাগ
DocType: Payment Request,Recipient Message And Payment Details,প্রাপক বার্তা এবং পেমেন্ট বিবরণ
DocType: Training Event,Trainer Email,প্রশিক্ষকদের ইমেইল
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,তৈরি উপাদান অনুরোধ {0}
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,তৈরি উপাদান অনুরোধ {0}
DocType: Restaurant Reservation,No of People,মানুষের সংখ্যা
DocType: Production Planning Tool,Include sub-contracted raw materials,উপ-সংকুচিত কাঁচামাল অন্তর্ভুক্ত
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,পদ বা চুক্তি টেমপ্লেট.
@ -3463,7 +3470,7 @@ DocType: Landed Cost Item,Receipt Document,রশিদ ডকুমেন্ট
DocType: Production Planning Tool,Create Material Requests,উপাদান অনুরোধ করুন
DocType: Employee Education,School/University,স্কুল / বিশ্ববিদ্যালয়
DocType: Payment Request,Reference Details,রেফারেন্স বিস্তারিত
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,প্রত্যাশিত মান দরকারী জীবন পর গ্রস ক্রয়ের পরিমাণ কম হওয়া আবশ্যক
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,প্রত্যাশিত মান দরকারী জীবন পর গ্রস ক্রয়ের পরিমাণ কম হওয়া আবশ্যক
DocType: Sales Invoice Item,Available Qty at Warehouse,ওয়্যারহাউস এ উপলব্ধ Qty
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,বিলের পরিমাণ
DocType: Asset,Double Declining Balance,ডাবল পড়ন্ত ব্যালেন্স
@ -3475,7 +3482,7 @@ DocType: Attendance,On Leave,ছুটিতে
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,আপডেট পান
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: অ্যাকাউন্ট {2} কোম্পানির অন্তর্গত নয় {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,প্রতিটি গুণাবলী থেকে কমপক্ষে একটি মান নির্বাচন করুন
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,উপাদানের জন্য অনুরোধ {0} বাতিল বা বন্ধ করা হয়
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,উপাদানের জন্য অনুরোধ {0} বাতিল বা বন্ধ করা হয়
apps/erpnext/erpnext/config/hr.py +310,Leave Management,ম্যানেজমেন্ট ত্যাগ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,অ্যাকাউন্ট দ্বারা গ্রুপ
DocType: Sales Order,Fully Delivered,সম্পূর্ণ বিতরণ
@ -3486,14 +3493,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},বিতরণ পরিমাণ ঋণ পরিমাণ তার চেয়ে অনেক বেশী হতে পারে না {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,প্রোগ্রামে যান
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},সারি {0} # বরাদ্দকৃত পরিমাণ {1} দাবি না করা পরিমাণের চেয়ে বড় হতে পারে না {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,অনুগ্রহ করে সেটআপ&gt; নম্বরিং সিরিজ এর মাধ্যমে উপস্থিতি জন্য ধারাবাহিক সংখ্যা নির্ধারণ করুন
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},আইটেম জন্য প্রয়োজন ক্রম সংখ্যা ক্রয় {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,উত্পাদনের অর্ডার তৈরি করা না
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','তারিখ থেকে' অবশ্যই 'তারিখ পর্যন্ত' এর পরে হতে হবে
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},ছাত্র হিসাবে অবস্থা পরিবর্তন করা যাবে না {0} ছাত্র আবেদনপত্রের সাথে সংযুক্ত করা হয় {1}
DocType: Asset,Fully Depreciated,সম্পূর্ণরূপে মূল্যমান হ্রাস
,Stock Projected Qty,স্টক Qty অনুমিত
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},অন্তর্গত নয় {0} গ্রাহক প্রকল্পের {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},অন্তর্গত নয় {0} গ্রাহক প্রকল্পের {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,চিহ্নিত এ্যাটেনডেন্স এইচটিএমএল
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers","উদ্ধৃতি প্রস্তাব, দর আপনি আপনার গ্রাহকদের কাছে পাঠানো হয়েছে"
DocType: Sales Order,Customer's Purchase Order,গ্রাহকের ক্রয় আদেশ
@ -3577,7 +3583,7 @@ DocType: Salary Slip,Hour Rate,ঘন্টা হার
DocType: Stock Settings,Item Naming By,দফে নামকরণ
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},অন্য সময়ের সমাপ্তি এন্ট্রি {0} পরে তৈরি করা হয়েছে {1}
DocType: Production Order,Material Transferred for Manufacturing,উপাদান উৎপাদন জন্য বদলিকৃত
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,অ্যাকাউন্ট {0} না বিদ্যমান
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,অ্যাকাউন্ট {0} না বিদ্যমান
DocType: Project,Project Type,প্রকল্প ধরন
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,এই টাস্কের জন্য শিশু টাস্ক বিদ্যমান। আপনি এই টাস্কটি মুছতে পারবেন না।
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,উভয় ক্ষেত্রেই লক্ষ্য Qty বা টার্গেট পরিমাণ বাধ্যতামূলক.
@ -3679,11 +3685,11 @@ DocType: C-Form,I,আমি
DocType: Company,Asset Depreciation Cost Center,অ্যাসেট অবচয় মূল্য কেন্দ্র
DocType: Sales Order Item,Sales Order Date,বিক্রয় আদেশ তারিখ
DocType: Sales Invoice Item,Delivered Qty,বিতরিত Qty
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,মোট Excl। কর
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","যদি চেক করা, প্রতিটি উৎপাদন আইটেমের সব শিশুদের উপাদান অনুরোধ অন্তর্ভুক্ত করা হবে."
DocType: Assessment Plan,Assessment Plan,অ্যাসেসমেন্ট প্ল্যান
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,গ্রাহক {0} তৈরি করা হয়।
DocType: Stock Settings,Limit Percent,সীমা শতকরা
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,শিক্ষা&gt; শিক্ষা সেটিংস এ প্রশিক্ষক নামকরণ পদ্ধতি স্থাপন করুন
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,বর্তমানে কোন গুদামে পন্য উপলব্ধ নেই
,Payment Period Based On Invoice Date,চালান তারিখ উপর ভিত্তি করে পরিশোধ সময়সীমার
DocType: Sample Collection,No. of print,মুদ্রণের সংখ্যা
@ -3699,12 +3705,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),ঋণ গ্রহিতা ({0})
DocType: Pricing Rule,Margin,মার্জিন
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,নতুন গ্রাহকরা
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,পুরো লাভ %
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,পুরো লাভ %
DocType: Appraisal Goal,Weightage (%),গুরুত্ব (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,পিওএস প্রোফাইল পরিবর্তন করুন
DocType: Bank Reconciliation Detail,Clearance Date,পরিস্কারের তারিখ
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,মূল্যায়ন প্রতিবেদন
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,গ্রস ক্রয়ের পরিমাণ বাধ্যতামূলক
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,গ্রস ক্রয়ের পরিমাণ বাধ্যতামূলক
DocType: Lead,Address Desc,নিম্নক্রমে ঠিকানার
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,পার্টির বাধ্যতামূলক
DocType: Journal Entry,JV-,JV-
@ -3736,7 +3742,6 @@ DocType: Account,Accumulated Depreciation,সঞ্চিত অবচয়
DocType: Supplier Scorecard Scoring Standing,Standing Name,স্থায়ী নাম
DocType: Stock Entry,Customer or Supplier Details,গ্রাহক বা সরবরাহকারী
DocType: Employee Loan Application,Required by Date,তারিখ দ্বারা প্রয়োজনীয়
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),ক্লোজিং ব্যালেন্স (ডঃ - সিআর)
DocType: Lead,Lead Owner,লিড মালিক
DocType: Bin,Requested Quantity,অনুরোধ পরিমাণ
DocType: Patient,Marital Status,বৈবাহিক অবস্থা
@ -3750,7 +3755,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,একাধিক বৈকল্পিক
DocType: Sales Invoice,Against Income Account,আয় অ্যাকাউন্টের বিরুদ্ধে
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% বিতরণ করা হয়েছে
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,আইটেম {0}: আদেশ Qty {1} সর্বনিম্ন ক্রম Qty {2} (আইটেমটি সংজ্ঞায়িত) কম হতে পারে না.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,আইটেম {0}: আদেশ Qty {1} সর্বনিম্ন ক্রম Qty {2} (আইটেমটি সংজ্ঞায়িত) কম হতে পারে না.
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,মাসিক বন্টন শতকরা
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,অন্য ব্যবহারকারী হিসাবে লগইন করুন দয়া করে
DocType: Territory,Territory Targets,টেরিটরি লক্ষ্যমাত্রা
@ -3849,7 +3854,7 @@ DocType: Program Enrollment,School House,স্কুল হাউস
DocType: Serial No,Out of AMC,এএমসি আউট
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,বুক Depreciations সংখ্যা মোট Depreciations সংখ্যা তার চেয়ে অনেক বেশী হতে পারে না
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,রক্ষণাবেক্ষণ দর্শন করা
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,সেলস মাস্টার ম্যানেজার {0} ভূমিকা আছে যারা ব্যবহারকারীর সাথে যোগাযোগ করুন
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,সেলস মাস্টার ম্যানেজার {0} ভূমিকা আছে যারা ব্যবহারকারীর সাথে যোগাযোগ করুন
DocType: Company,Default Cash Account,ডিফল্ট নগদ অ্যাকাউন্ট
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,কোম্পানি (না গ্রাহক বা সরবরাহকারীর) মাস্টার.
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,এই শিক্ষার্থী উপস্থিতির উপর ভিত্তি করে
@ -3999,7 +4004,6 @@ DocType: Delivery Note Item,From Warehouse,গুদাম থেকে
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,উল্লিখিত মানদণ্ড জন্য কোন কর্মচারী
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,সামগ্রী বিল দিয়ে কোন সামগ্রী উত্পাদনপ্রণালী
DocType: Restaurant,Default Customer,ডিফল্ট গ্রাহক
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,মানব সম্পদে কর্মচারী নেমিং সিস্টেম&gt; এইচআর সেটিংস সেট আপ করুন
DocType: Assessment Plan,Supervisor Name,সুপারভাইজার নাম
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,একই দিনের জন্য অ্যাপয়েন্টমেন্ট তৈরি করা হয় কিনা তা নিশ্চিত করবেন না
DocType: Program Enrollment Course,Program Enrollment Course,প্রোগ্রাম তালিকাভুক্তি কোর্সের
@ -4117,7 +4121,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,ওয়েবসাইট বর্ণনা
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,ইক্যুইটি মধ্যে নিট পরিবর্তন
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,নতুন
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,ক্রয় চালান {0} বাতিল অনুগ্রহ প্রথম
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,ক্রয় চালান {0} বাতিল অনুগ্রহ প্রথম
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","ই-মেইল ঠিকানা অবশ্যই ইউনিক হতে হবে, ইতিমধ্যে অস্তিত্বমান {0}"
DocType: Serial No,AMC Expiry Date,এএমসি মেয়াদ শেষ হওয়ার তারিখ
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,প্রাপ্তি
@ -4134,7 +4138,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,এখনও
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,ক্যাশ ফ্লো বিবৃতি
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},ঋণের পরিমাণ সর্বোচ্চ ঋণের পরিমাণ বেশি হতে পারে না {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,লাইসেন্স
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},সি-ফরম থেকে এই চালান {0} মুছে ফেলুন দয়া করে {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},সি-ফরম থেকে এই চালান {0} মুছে ফেলুন দয়া করে {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,এছাড়াও আপনি আগের অর্থবছরের ভারসাম্য এই অর্থবছরের ছেড়ে অন্তর্ভুক্ত করতে চান তাহলে এগিয়ে দয়া করে নির্বাচন করুন
DocType: GL Entry,Against Voucher Type,ভাউচার টাইপ বিরুদ্ধে
DocType: Physician,Phone (R),ফোন (আর)
@ -4146,7 +4150,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,বি নেতিবাচক
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,রক্ষণাবেক্ষণ স্থিতি বাতিল বা জমা দিতে সম্পন্ন করা হয়েছে
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},অ্যাকাউন্ট {0} আছে কোম্পানীর জন্যে না {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,{0} সারিতে সিরিয়াল নম্বর দিয়ে ডেলিভারি নোট মেলে না
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,{0} সারিতে সিরিয়াল নম্বর দিয়ে ডেলিভারি নোট মেলে না
DocType: Student,Guardian Details,গার্ডিয়ান বিবরণ
DocType: C-Form,C-Form,সি-ফরম
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,একাধিক কর্মীদের জন্য মার্ক এ্যাটেনডেন্স
@ -4188,7 +4192,7 @@ DocType: Opening Invoice Creation Tool,Sales,সেলস
DocType: Stock Entry Detail,Basic Amount,বেসিক পরিমাণ
DocType: Training Event,Exam,পরীক্ষা
DocType: Complaint,Complaint,অভিযোগ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},গুদাম স্টক আইটেম জন্য প্রয়োজন {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},গুদাম স্টক আইটেম জন্য প্রয়োজন {0}
DocType: Leave Allocation,Unused leaves,অব্যবহৃত পাতার
DocType: Patient,Alcohol Past Use,অ্যালকোহল অতীত ব্যবহার
DocType: Fertilizer Content,Fertilizer Content,সার কনটেন্ট
@ -4312,6 +4316,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,সূত্র
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,সিরিয়াল #
DocType: Lab Test Template,Lab Test Template,ল্যাব টেস্ট টেমপ্লেট
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,বিক্রয় অ্যাকাউন্ট
DocType: Purchase Invoice Item,Total Weight,সম্পূর্ণ ওজন
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,বিক্রয় কমিশনের
DocType: Offer Letter Term,Value / Description,মূল্য / বিবরণ:
@ -4468,7 +4473,7 @@ Updated via 'Time Log'",মিনিটের মধ্যে &#39;টাইম
DocType: Customer,From Lead,লিড
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,আদেশ উৎপাদনের জন্য মুক্তি.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,ফিস্ক্যাল বছর নির্বাচন ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,পিওএস প্রোফাইল পিওএস এন্ট্রি করতে প্রয়োজন
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,পিওএস প্রোফাইল পিওএস এন্ট্রি করতে প্রয়োজন
DocType: Program Enrollment Tool,Enroll Students,শিক্ষার্থীরা তালিকাভুক্ত
DocType: Lab Test,Approved Date,অনুমোদিত তারিখ
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,স্ট্যান্ডার্ড বিক্রি
@ -4544,7 +4549,7 @@ DocType: Employee,Held On,অনুষ্ঠিত
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,উত্পাদনের আইটেম
,Employee Information,কর্মচারী তথ্য
DocType: Stock Entry Detail,Additional Cost,অতিরিক্ত খরচ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","ভাউচার কোন উপর ভিত্তি করে ফিল্টার করতে পারবে না, ভাউচার দ্বারা গ্রুপকৃত যদি"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","ভাউচার কোন উপর ভিত্তি করে ফিল্টার করতে পারবে না, ভাউচার দ্বারা গ্রুপকৃত যদি"
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,সরবরাহকারী উদ্ধৃতি করা
DocType: Quality Inspection,Incoming,ইনকামিং
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,বিক্রয় এবং ক্রয় জন্য ডিফল্ট ট্যাক্স টেমপ্লেট তৈরি করা হয়।
@ -4561,7 +4566,7 @@ DocType: Batch,Batch ID,ব্যাচ আইডি
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},উল্লেখ্য: {0}
,Delivery Note Trends,হুণ্ডি প্রবণতা
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,এই সপ্তাহের সংক্ষিপ্ত
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,স্টক Qty ইন
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,স্টক Qty ইন
DocType: Delivery Trip,Calculate Estimated Arrival Times,আনুমানিক আসন্ন টাইমস হিসাব করুন
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,অ্যাকাউন্ট: {0} শুধুমাত্র স্টক লেনদেনের মাধ্যমে আপডেট করা যাবে
DocType: Student Group Creation Tool,Get Courses,কোর্স করুন
@ -4577,7 +4582,7 @@ DocType: Purchase Order,To Bill,বিল
DocType: Material Request,% Ordered,% আদেশ
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.","কোর্সের ভিত্তিক স্টুডেন্ট গ্রুপের জন্য, কোর্স প্রোগ্রাম তালিকাভুক্তি মধ্যে নাম নথিভুক্ত কোর্স থেকে শিক্ষার্থীর জন্য যাচাই করা হবে না।"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,ফুরণ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,গড়. রাজধানীতে হার
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,গড়. রাজধানীতে হার
DocType: Task,Actual Time (in Hours),(ঘন্টায়) প্রকৃত সময়
DocType: Employee,History In Company,কোম্পানি ইন ইতিহাস
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},{প্রেরক} থেকে নতুন বার্তা
@ -4625,7 +4630,7 @@ DocType: Asset Repair,Asset Repair,সম্পদ মেরামত
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},সারি {0}: BOM # মুদ্রা {1} নির্বাচিত মুদ্রার সমান হতে হবে {2}
DocType: Journal Entry Account,Exchange Rate,বিনিময় হার
DocType: Patient,Additional information regarding the patient,রোগীর সম্পর্কে অতিরিক্ত তথ্য
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,বিক্রয় আদেশ {0} দাখিল করা হয় না
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,বিক্রয় আদেশ {0} দাখিল করা হয় না
DocType: Homepage,Tag Line,ট্যাগ লাইন
DocType: Fee Component,Fee Component,ফি কম্পোনেন্ট
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,দ্রুতগামী ব্যবস্থাপনা
@ -4837,7 +4842,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,অ্যাসেস
DocType: Employee Education,Employee Education,কর্মচারী শিক্ষা
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,ডুপ্লিকেট আইটেম গ্রুপ আইটেম গ্রুপ টেবিল অন্তর্ভুক্ত
DocType: Land Unit,Parent Land Unit,প্যারেন্ট ল্যান্ড ইউনিট
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,এটি একটি আইটেম বিবরণ পেতে প্রয়োজন হয়.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,এটি একটি আইটেম বিবরণ পেতে প্রয়োজন হয়.
DocType: Fertilizer,Fertilizer Name,সারের নাম
DocType: Salary Slip,Net Pay,নেট বেতন
DocType: Account,Account,হিসাব
@ -4916,7 +4921,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),(উৎস / লক্
DocType: Item Customer Detail,Ref Code,সুত্র কোড
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,গ্রাহক গোষ্ঠী পিওএস প্রোফাইলে প্রয়োজনীয়
apps/erpnext/erpnext/config/hr.py +12,Employee records.,কর্মচারী রেকর্ড.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,নির্ধারণ করুন পরবর্তী অবচয় তারিখ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,নির্ধারণ করুন পরবর্তী অবচয় তারিখ
DocType: HR Settings,Payroll Settings,বেতনের সেটিংস
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,অ লিঙ্ক চালান এবং পেমেন্টস্ মেলে.
DocType: POS Settings,POS Settings,পিওএস সেটিংস
@ -5083,7 +5088,7 @@ DocType: Item,Customer Code,গ্রাহক কোড
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},জন্য জন্মদিনের স্মারক {0}
DocType: Asset Maintenance Task,Last Completion Date,শেষ সমাপ্তি তারিখ
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,শেষ আদেশ থেকে দিনের
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,অ্যাকাউন্ট ডেবিট একটি ব্যালান্স শিটের অ্যাকাউন্ট থাকতে হবে
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,অ্যাকাউন্ট ডেবিট একটি ব্যালান্স শিটের অ্যাকাউন্ট থাকতে হবে
DocType: Buying Settings,Naming Series,নামকরণ সিরিজ
DocType: Leave Block List,Leave Block List Name,ব্লক তালিকা নাম
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,বীমা তারিখ শুরু তুলনায় বীমা শেষ তারিখ কম হওয়া উচিত
@ -5209,6 +5214,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,পেমেন্ট দাখিলা করুন
DocType: Quotation Item,Against Docname,Docname বিরুদ্ধে
DocType: SMS Center,All Employee (Active),সকল কর্মচারী (অনলাইনে)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,গ্রাহক&gt; গ্রাহক গোষ্ঠী&gt; টেরিটরি
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,এখন দেখুন
DocType: BOM,Raw Material Cost,কাঁচামাল খরচ
DocType: Item Reorder,Re-Order Level,পুনর্বিন্যাস স্তর
@ -5307,7 +5313,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,আসন ধারন ক্ষমতা
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,ল্যাব টেস্ট গ্রুপ
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,গ্রাহক&gt; গ্রাহক গোষ্ঠী&gt; টেরিটরি
DocType: Project,Total Expense Claim (via Expense Claims),মোট ব্যয় দাবি (ব্যয় দাবি মাধ্যমে)
DocType: GST Settings,GST Summary,GST সারাংশ
DocType: Assessment Result,Total Score,সম্পূর্ণ ফলাফল
@ -5320,7 +5325,7 @@ DocType: Batch,Source Document Type,উত্স ডকুমেন্ট টা
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,নিম্নলিখিত কোর্স সময়সূচী তৈরি করা হয়েছিল
DocType: Journal Entry,Total Debit,খরচের অঙ্ক
DocType: Manufacturing Settings,Default Finished Goods Warehouse,ডিফল্ট তৈরি পণ্য গুদাম
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,সেলস পারসন
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,সেলস পারসন
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,বাজেট এবং খরচ কেন্দ্র
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,পেমেন্ট একাধিক ডিফল্ট মোড অনুমতি দেওয়া হয় না
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,জন্য
@ -5493,7 +5498,7 @@ DocType: Program,Program Name,প্রোগ্রাম নাম
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,জন্য ট্যাক্স বা চার্জ ধরে নেবেন
DocType: Driver,Driving License Category,ড্রাইভিং লাইসেন্স বিভাগ
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,প্রকৃত স্টক বাধ্যতামূলক
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} বর্তমানে একটি {1} সরবরাহকারী স্কোরকার্ড দাঁড়িয়ে আছে, এবং এই সরবরাহকারীকে ক্রয় আদেশগুলি সতর্কতার সাথে জারি করা উচিত।"
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} বর্তমানে একটি {1} সরবরাহকারী স্কোরকার্ড দাঁড়িয়ে আছে, এবং এই সরবরাহকারীকে ক্রয় আদেশগুলি সতর্কতার সাথে জারি করা উচিত।"
DocType: Asset Maintenance Team,Asset Maintenance Team,সম্পদ রক্ষণাবেক্ষণ টিম
DocType: Employee Loan,Loan Type,ঋণ প্রকার
DocType: Scheduling Tool,Scheduling Tool,পূর্বপরিকল্পনা টুল

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,Lab recept
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,Sortiraj po cijeni
,Delay Days,Dani odlaganja
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,Servis rashodi
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},Serijski broj: {0} je već spomenut u prodaje Faktura: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},Serijski broj: {0} je već spomenut u prodaje Faktura: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,Faktura
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,Napravite zadržavanje zaliha zaliha
DocType: Purchase Invoice Item,Item Weight Details,Detaljna težina stavke
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,Roditelj Detalj docname
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","Referenca: {0}, Šifra: {1} i kupaca: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,kg
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,Otvaranje za posao.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},BOM nije naveden za stavku podizvođača {0} na redu {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},BOM nije naveden za stavku podizvođača {0} na redu {1}
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} Rezultat je podnet
DocType: Item Attribute,Increment,Prirast
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,Vremenski razmak
@ -150,7 +150,7 @@ DocType: Patient,Married,Oženjen
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},Nije dozvoljeno za {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,Get stavke iz
DocType: Price List,Price Not UOM Dependant,Cena nije UOM zavisna
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},Dionica ne može biti obnovljeno protiv isporuke Napomena {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},Dionica ne može biti obnovljeno protiv isporuke Napomena {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},Proizvod {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,No stavke navedene
DocType: Asset Repair,Error Description,Opis greške
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,pomiriti
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,Trgovina prehrambenom robom
DocType: Quality Inspection Reading,Reading 1,Čitanje 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,mirovinskim fondovima
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,Sljedeća Amortizacija datum ne može biti prije Datum kupovine
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,Sljedeća Amortizacija datum ne može biti prije Datum kupovine
DocType: Crop,Perennial,Višegodišnje
DocType: Consultation,Consultation Date,Datum konsultacije
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,Spisak proizvoda i otkrivanje za korisnike ERPNext
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,Otpis troška
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""",npr &quot;Osnovna škola&quot; ili &quot;Univerzitet&quot;
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,Stock Izvještaji
DocType: Warehouse,Warehouse Detail,Detalji o skladištu
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},Kreditni limit je prešla za kupca {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},Kreditni limit je prešla za kupca {0} {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,Termin Završni datum ne može biti kasnije od kraja godine Datum akademske godine za koji je vezana pojam (akademska godina {}). Molimo ispravite datume i pokušajte ponovo.
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","&quot;Da li je osnovno sredstvo&quot; ne može biti označeno, kao rekord imovine postoji u odnosu na stavku"
DocType: Delivery Trip,Departure Time,Vrijeme odlaska
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,student Prijavite
DocType: Quality Inspection,Get Specification Details,Kreiraj detalje specifikacija
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,Šabloni pozicija dobavljača.
DocType: Lead,Interested,Zainteresovan
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,Otvaranje
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,Otvaranje
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},Od {0} do {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,Neuspešno podešavanje poreza
DocType: Item,Copy From Item Group,Primjerak iz točke Group
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,Olakšavanja Datum mora biti veći od dana ulaska u
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,Ostavlja per Godina
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,"Row {0}: Molimo provjerite 'Je li Advance ""protiv Account {1} ako je to unaprijed unos."
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},Skladište {0} ne pripada tvrtki {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},Skladište {0} ne pripada tvrtki {1}
DocType: Email Digest,Profit & Loss,Dobiti i gubitka
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,Litre
DocType: Task,Total Costing Amount (via Time Sheet),Ukupno Costing Iznos (preko Time Sheet)
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,Stopa i količina
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,Ovo se zasniva na transakcijama protiv ove kompanije. Pogledajte detalje u nastavku
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Obavijesti putem e-pošte na stvaranje automatskog Materijal Zahtjeva
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,Otporno
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Consultationt
DocType: Journal Entry,Multi Currency,Multi valuta
DocType: Opening Invoice Creation Tool,Invoice Type,Tip fakture
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,Otpremnica
@ -528,7 +529,6 @@ DocType: Email Digest,Credit Balance,Credit Balance
DocType: Employee,Widowed,Udovički
DocType: Request for Quotation,Request for Quotation,Zahtjev za ponudu
DocType: Healthcare Settings,Require Lab Test Approval,Zahtevati odobrenje za testiranje laboratorija
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Šifra proizvoda&gt; Grupa proizvoda&gt; Marka
DocType: Salary Slip Timesheet,Working Hours,Radno vrijeme
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,Total Outstanding
DocType: Naming Series,Change the starting / current sequence number of an existing series.,Promjena polaznu / tekući redni broj postojeće serije.
@ -557,7 +557,7 @@ DocType: Subscription,Yearly,Godišnji
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,Unesite troška
DocType: Drug Prescription,Dosage,Doziranje
DocType: Journal Entry Account,Sales Order,Narudžbe kupca
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,Prosj. Prodaja Rate
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,Prosj. Prodaja Rate
DocType: Assessment Plan,Examiner Name,Examiner Naziv
DocType: Lab Test Template,No Result,Bez rezultata
DocType: Purchase Invoice Item,Quantity and Rate,Količina i stopa
@ -605,6 +605,7 @@ DocType: Employee,Health Concerns,Zdravlje Zabrinutost
DocType: Payroll Entry,Select Payroll Period,Odaberite perioda isplate
DocType: Purchase Invoice,Unpaid,Neplaćeno
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,Rezervirano za prodaju
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Molimo da podesite sistem imenovanja zaposlenih u ljudskim resursima&gt; HR Settings
DocType: Packing Slip,From Package No.,Iz paketa broj
DocType: Item Attribute,To Range,U rasponu
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,Vrijednosni papiri i depoziti
@ -629,11 +630,11 @@ DocType: Pricing Rule,Valid Upto,Vrijedi Upto
DocType: Training Event,Workshop,radionica
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,Upozoravajte narudžbenice
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,Navedite nekoliko svojih kupaca. Oni mogu biti tvrtke ili fizičke osobe.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,Dosta dijelova za izgradnju
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,Dosta dijelova za izgradnju
DocType: POS Profile User,POS Profile User,POS korisnik profila
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,Direktni prihodi
DocType: Patient Appointment,Date TIme,Date TIme
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","Ne možete filtrirati na temelju računa , ako grupirani po računu"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","Ne možete filtrirati na temelju računa , ako grupirani po računu"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,Administrativni službenik
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,Osnivanje preduzeća i porezi
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,Molimo odaberite predmeta
@ -643,7 +644,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,Konto razlike
DocType: Purchase Invoice,Supplier GSTIN,dobavljač GSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,Ne možete zatvoriti zadatak kao zavisne zadatak {0} nije zatvoren.
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,Unesite skladište za koje Materijal Zahtjev će biti podignuta
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,Unesite skladište za koje Materijal Zahtjev će biti podignuta
DocType: Production Order,Additional Operating Cost,Dodatni operativnih troškova
DocType: Lab Test Template,Lab Routine,Lab Routine
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,kozmetika
@ -811,7 +812,7 @@ DocType: Employee,Passport Number,Putovnica Broj
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Odnos sa Guardian2
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,menadžer
DocType: Payment Entry,Payment From / To,Plaćanje Od / Do
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Novi kreditni limit je manje od trenutne preostali iznos za kupca. Kreditni limit mora biti atleast {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Novi kreditni limit je manje od trenutne preostali iznos za kupca. Kreditni limit mora biti atleast {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},Molimo postavite nalog u skladištu {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,' Temelji se na' i 'Grupisanje po ' ne mogu biti isti
DocType: Sales Person,Sales Person Targets,Prodaje osobi Mete
@ -822,7 +823,7 @@ DocType: Lab Test Template,Compound,Jedinjenje
DocType: Student Batch Name,Batch Name,Batch ime
DocType: Fee Validity,Max number of visit,Maksimalan broj poseta
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,Timesheet created:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},Molimo postavite zadanu gotovinom ili banka računa u načinu plaćanja {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},Molimo postavite zadanu gotovinom ili banka računa u načinu plaćanja {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,upisati
DocType: GST Settings,GST Settings,PDV Postavke
DocType: Selling Settings,Customer Naming By,Kupac Imenovanje By
@ -946,7 +947,7 @@ DocType: Delivery Note,Customer's Purchase Order No,Kupca Narudžbenica br
DocType: Budget,Budget Against,budžet protiv
DocType: Employee,Cell Number,Mobitel Broj
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,Za određene kriterijume nema zaposlenika. Proverite da li su listovi plata još uvek nisu kreirani.
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,Auto materijala Zahtjevi Generirano
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,Auto materijala Zahtjevi Generirano
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,Izgubljen
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,Ne možete ući trenutni voucher u 'Protiv Journal Entry' koloni
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,Rezervirano za proizvodnju
@ -954,7 +955,7 @@ DocType: Soil Texture,Sand,Pesak
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,energija
DocType: Opportunity,Opportunity From,Prilika od
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,Mjesečna plaća izjava.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Red {0}: {1} Serijski brojevi potrebni za stavku {2}. Proveli ste {3}.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Red {0}: {1} Serijski brojevi potrebni za stavku {2}. Proveli ste {3}.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,Izaberite tabelu
DocType: BOM,Website Specifications,Web Specifikacije
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} je nevažeća adresa e-pošte u &#39;Primaocima&#39;
@ -1042,7 +1043,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,Citiraj zatraženo
DocType: Vital Signs,Heart Rate / Pulse,Srčana brzina / impuls
DocType: Company,Default Bank Account,Zadani bankovni račun
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","Da biste filtrirali na osnovu stranke, izaberite Party prvog tipa"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","Da biste filtrirali na osnovu stranke, izaberite Party prvog tipa"
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},'Azuriranje zalihe' se ne može provjeriti jer artikli nisu dostavljeni putem {0}
DocType: Vehicle,Acquisition Date,akvizicija Datum
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,Nos
@ -1066,7 +1067,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),Otpremite svoju pismo glavom (Držite ga na webu kao 900px po 100px)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: Račun {2} ne može biti Group
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,Stavka Row {idx}: {doctype} {docname} ne postoji u gore &#39;{doctype}&#39; sto
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,Timesheet {0} je već završen ili otkazan
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,Timesheet {0} je već završen ili otkazan
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,No zadataka
DocType: Item Variant Settings,Copy Fields to Variant,Kopiraj polja na varijantu
DocType: Asset,Opening Accumulated Depreciation,Otvaranje Ispravka vrijednosti
@ -1178,9 +1179,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,Plan materijal za podsklopove
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,Prodaja Partneri i teritorija
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,BOM {0} mora biti aktivna
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),Zatvaranje (otvaranje + ukupno)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),Zatvaranje (otvaranje + ukupno)
DocType: Journal Entry,Depreciation Entry,Amortizacija Entry
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Molimo odaberite vrstu dokumenta prvi
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,Ispis u valuti računa
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Odustani Posjeta materijala {0} prije otkazivanja ovog održavanja pohod
DocType: Crop Cycle,ISO 8016 standard,ISO 8016 standard
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},Serijski Ne {0} ne pripada točki {1}
@ -1206,7 +1208,7 @@ DocType: Purchase Receipt,Range,Domet
DocType: Supplier,Default Payable Accounts,Uobičajeno Računi dobavljača
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,Radnik {0} nije aktivan ili ne postoji
DocType: Fee Structure,Components,komponente
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},Molimo vas da unesete imovine Kategorija tačke {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},Molimo vas da unesete imovine Kategorija tačke {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,Stavka Varijante {0} ažurirani
DocType: Quality Inspection Reading,Reading 6,Čitanje 6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1258,6 +1260,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,Naziv preduzeća
DocType: SMS Center,Total Message(s),Ukupno poruka ( i)
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,Izaberite Stavka za transfer
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Molimo postavite Naming Series za {0} preko Setup&gt; Settings&gt; Series Naming
DocType: Purchase Invoice,Additional Discount Percentage,Dodatni popust Procenat
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,Pogledaj listu svih snimke Pomoć
DocType: Agriculture Analysis Criteria,Soil Texture,Tekstura tla
@ -1285,7 +1288,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,BOM Web Stavka
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,Unos glavu pismo i logo. (Možete ih kasnije uređivanje).
DocType: Timesheet Detail,Bill,račun
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,Sljedeća Amortizacija datum se unosi kao proteklih dana
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,Sljedeća Amortizacija datum se unosi kao proteklih dana
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,Bijel
DocType: SMS Center,All Lead (Open),Svi potencijalni kupci (aktualni)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),Red {0}: Količina nije dostupan za {4} u skladištu {1} na postavljanje trenutku stupanja ({2} {3})
@ -1301,7 +1304,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,Datum sledeceg kontaktiranja
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,Otvaranje Kol
DocType: Healthcare Settings,Appointment Reminder,Pamćenje imenovanja
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,Unesite račun za promjene Iznos
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,Unesite račun za promjene Iznos
DocType: Program Enrollment Tool Student,Student Batch Name,Student Batch Ime
DocType: Consultation,Doctor,Doktor
DocType: Holiday List,Holiday List Name,Naziv liste odmora
@ -1317,6 +1320,7 @@ DocType: Patient,Patient Relation,Relacija pacijenta
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,Ostavite raspodjele alat
DocType: Item,Hub Category to Publish,Glavna kategorija za objavljivanje
DocType: Leave Block List,Leave Block List Dates,Ostavite datumi lista blokiranih
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Molimo da podesite serije brojeva za prisustvo preko Setup&gt; Serija numeracije
DocType: Sales Invoice,Billing Address GSTIN,Adresa za obračun GSTIN
DocType: Assessment Plan,Evaluate,Procijenite
DocType: Workstation,Net Hour Rate,Neto Hour Rate
@ -1350,7 +1354,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,Kupnja Potvrda predmet
DocType: Purchase Receipt,PREC-RET-,PREC-RET-
DocType: POS Profile,Sales Invoice Payment,Prodaja fakture za plaćanje
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,Rezervirano Warehouse u prodajni nalog / skladišta gotovih proizvoda
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,Prodaja Iznos
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,Prodaja Iznos
DocType: Repayment Schedule,Interest Amount,Iznos kamata
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,"Vi steRashodi Odobritelj za ovaj rekord . Molimo Ažuriranje "" status"" i Save"
DocType: Serial No,Creation Document No,Stvaranje dokumenata nema
@ -1441,7 +1445,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,Otvaranje Računovodstvo Balance
,GST Sales Register,PDV prodaje Registracija
DocType: Sales Invoice Advance,Sales Invoice Advance,Predujam prodajnog računa
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,Ništa se zatražiti
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,Ništa se zatražiti
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,Izaberite svoje domene
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},Još jedan budžet rekord &#39;{0}&#39; već postoji protiv {1} &#39;{2}&#39; za fiskalnu godinu {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,Polja će se kopirati samo u trenutku kreiranja.
@ -1451,11 +1455,11 @@ DocType: Cheque Print Template,Payer Settings,Payer Postavke
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","Ovo će biti dodan na Šifra za varijantu. Na primjer, ako je vaš skraćenica ""SM"", a stavka kod je ""T-SHIRT"", stavka kod varijante će biti ""T-SHIRT-SM"""
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,Neto plaća (riječima) će biti vidljiva nakon što spremite klizne plaće.
DocType: Purchase Invoice,Is Return,Je li povratak
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,Oprez
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,Oprez
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,Povratak / Debit Napomena
DocType: Price List Country,Price List Country,Cijena Lista država
DocType: Item,UOMs,UOMs
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} valjani serijski broj za artikal {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} valjani serijski broj za artikal {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Kod artikla ne može se mijenjati za serijski broj.
DocType: Purchase Invoice Item,UOM Conversion Factor,UOM konverzijski faktor
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,Unesite Šifra da Batch Broj
@ -1559,7 +1563,7 @@ DocType: Journal Entry,Get Outstanding Invoices,Kreiraj neplaćene račune
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,Prodajnog naloga {0} nije ispravan
DocType: Supplier Scorecard,Warn for new Request for Quotations,Upozorite na novi zahtev za citate
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,Narudžbenice vam pomoći planirati i pratiti na kupovinu
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","Žao nam je , tvrtke ne mogu spojiti"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","Žao nam je , tvrtke ne mogu spojiti"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,Testiranje laboratorijskih testova
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",Ukupne emisije / Transfer količina {0} u Industrijska Zahtjev {1} \ ne može biti veća od tražene količine {2} za Stavka {3}
@ -1597,7 +1601,6 @@ DocType: Vehicle,Fuel UOM,gorivo UOM
DocType: Warehouse,Warehouse Contact Info,Kontakt informacije skladišta
DocType: Payment Entry,Write Off Difference Amount,Otpis Razlika Iznos
DocType: Volunteer,Volunteer Name,Ime volontera
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Molimo vas da podesite sistem imenovanja instruktora u obrazovanju&gt; Obrazovne postavke
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent",{0}: e-mail nije poslat jer e-mail zaposlenog nije pronađen
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},Pravilo o isporuci ne važi za zemlju {0}
DocType: Item,Foreign Trade Details,Vanjske trgovine Detalji
@ -1609,7 +1612,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,Grupa Roll Broj
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry","Za {0}, samo kredit računa može biti povezan protiv drugog ulaska debit"
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,Ukupno sve težine zadatka treba da bude 1. Molimo prilagodite težine svih zadataka projekta u skladu s tim
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,Otpremnica {0} nije potvrđena
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,Otpremnica {0} nije potvrđena
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,Stavka {0} mora bitisklopljen ugovor artikla
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,Kapitalni oprema
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Cijene Pravilo prvo se bira na temelju 'Nanesite na' terenu, koji može biti točka, točka Grupa ili Brand."
@ -1634,7 +1637,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,skladište dijete postoji za to skladište. Ne možete brisati ovo skladište.
DocType: Item,Website Item Groups,Website Stavka Grupe
DocType: Purchase Invoice,Total (Company Currency),Ukupno (Company valuta)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,Serijski broj {0} ušao više puta
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,Serijski broj {0} ušao više puta
DocType: Journal Entry,Journal Entry,Časopis Stupanje
DocType: Expense Claim Advance,Unclaimed amount,Neobjavljeni iznos
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} stavke u tijeku
@ -1730,7 +1733,7 @@ DocType: Email Digest,For Company,Za tvrtke
apps/erpnext/erpnext/config/support.py +17,Communication log.,Dnevni pregled komunikacije
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.","Zahtjev za ponudu je onemogućen pristup iz portala, za više postavki portal ček."
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,Dobavljač Scorecard Scoring Variable
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,Iznos nabavke
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,Iznos nabavke
DocType: Sales Invoice,Shipping Address Name,Dostava adresa Ime
DocType: Material Request,Terms and Conditions Content,Uvjeti sadržaj
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,Bilo je grešaka u kreiranju rasporeda kursa
@ -1994,7 +1997,7 @@ DocType: Expense Claim,Total Amount Reimbursed,Ukupan iznos nadoknađeni
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,Ovo se zasniva na rezanje protiv ovog vozila. Pogledajte vremenski okvir ispod za detalje
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},Protiv Dobavljač fakture {0} od {1}
DocType: Customer,Default Price List,Zadani cjenik
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,rekord Asset pokret {0} stvorio
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,rekord Asset pokret {0} stvorio
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,Ne možete izbrisati fiskalnu godinu {0}. Fiskalna godina {0} je postavljen kao zadani u Globalne postavke
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,Kupac sa istim imenom već postoji
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,Ovo će poslati naknade za plate i kreirati obračunski dnevnik. Da li želite da nastavite?
@ -2008,6 +2011,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,cijene
DocType: Quotation,Term Details,Oročeni Detalji
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,Ne može upisati više od {0} studenata za ovu grupa studenata.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),Ukupno (bez poreza)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,Lead Count
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} mora biti veći od 0
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,Stock Available
@ -2026,7 +2030,6 @@ DocType: Lab Test,Technician Name,Ime tehničara
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,Odvajanje Plaćanje o otkazivanju fakture
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},Trenutno čitanje Odometar ušli bi trebao biti veći od početnog kilometraže vozila {0}
DocType: Restaurant Reservation,No Show,Ne Show
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Molimo postavite Naming Series za {0} preko Setup&gt; Settings&gt; Series Naming
DocType: Shipping Rule Country,Shipping Rule Country,Dostava Pravilo Country
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,Ostavite i posjećenost
DocType: Maintenance Visit,Partially Completed,Djelomično Završeni
@ -2117,7 +2120,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,Student Group Instruktor
DocType: Grant Application,Assessment Mark (Out of 10),Oznaka ocene (od 10)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 Mobile Nema
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,Glavni
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,Glavni
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,Varijanta
DocType: Naming Series,Set prefix for numbering series on your transactions,Postavite prefiks za numeriranje niza na svoje transakcije
DocType: Employee Attendance Tool,Employees HTML,Zaposleni HTML
@ -2165,7 +2168,7 @@ DocType: Crop,Crop Spacing,Rastojanje usjeva
DocType: Course,Course Abbreviation,Skraćenica za golf
DocType: Student Leave Application,Student Leave Application,Student Leave aplikacije
DocType: Item,Will also apply for variants,Primjenjivat će se i za varijante
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","Imovine ne može biti otkazan, jer je već {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","Imovine ne može biti otkazan, jer je već {0}"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},Zaposlenik {0} na Poludnevni na {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},Ukupno radnog vremena ne smije biti veća od max radnog vremena {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,na
@ -2350,9 +2353,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),Stvarni Završni datum (preko Time Sheet)
DocType: Soil Texture,Soil Type,Vrsta zemljišta
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},Broj {0} {1} protiv {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,Nova poruka
,Quotation Trends,Trendovi ponude
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},Stavka artikla se ne spominje u master artiklu za artikal {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,Debit na račun mora biti potraživanja računa
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,Debit na račun mora biti potraživanja računa
DocType: Shipping Rule,Shipping Amount,Iznos transporta
DocType: Supplier Scorecard Period,Period Score,Ocena perioda
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,Dodaj Kupci
@ -2363,7 +2367,7 @@ DocType: Purchase Order,Delivered,Isporučeno
,Vehicle Expenses,Troškovi vozila
DocType: Serial No,Invoice Details,Račun Detalji
DocType: Grant Application,Show on Website,Show on Website
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},Očekivana vrijednost nakon koristan život mora biti veći ili jednak {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},Očekivana vrijednost nakon koristan život mora biti veći ili jednak {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,Počnite
DocType: Hub Category,Hub Category,Glavna kategorija
DocType: Purchase Invoice,SEZ,SEZ
@ -2394,7 +2398,7 @@ DocType: Patient,Patient Details,Detalji pacijenta
DocType: Patient,B Positive,B Pozitivan
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","Row # {0}: Količina mora biti 1, kao stavka je osnovno sredstvo. Molimo koristite posebnom redu za više kom."
DocType: Leave Block List Allow,Leave Block List Allow,Ostavite Blok Popis Dopustite
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,Skraćeno ne može biti prazan ili prostora
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,Skraćeno ne može biti prazan ili prostora
DocType: Patient Medical Record,Patient Medical Record,Medicinski zapis pacijenta
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,Grupa Non-grupa
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,sportovi
@ -2444,6 +2448,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,Ne možete postaviti primljeni RFQ na No Quote
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,Ukupno Odbitak
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,Izaberite nalog za štampanje u valuti računa
,Production Analytics,proizvodnja Analytics
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,Ovo se zasniva na transakcijama protiv ovog pacijenta. Za detalje pogledajte vremenski okvir ispod
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,Troškova Ažurirano
@ -2498,7 +2503,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,Posta
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,Odaberite preduzeće...
DocType: Leave Control Panel,Leave blank if considered for all departments,Ostavite prazno ako smatra za sve odjele
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","Vrste zapošljavanja ( trajni ugovor , pripravnik i sl. ) ."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} je obavezno za tu stavku {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} je obavezno za tu stavku {1}
DocType: Payroll Entry,Fortnightly,četrnaestodnevni
DocType: Currency Exchange,From Currency,Od novca
DocType: Vital Signs,Weight (In Kilogram),Težina (u kilogramu)
@ -2574,7 +2579,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),Osnovni Iznos (Company V
DocType: Student,Guardians,čuvari
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,Cijene neće biti prikazan ako nije postavljena Cjenik
DocType: Stock Entry,Total Incoming Value,Ukupna vrijednost Incoming
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,To je potrebno Debit
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,To je potrebno Debit
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Timesheets pomoći pratiti vremena, troškova i naplate za aktivnostima obavlja svoj tim"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,Kupoprodajna cijena List
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,Šabloni varijabli indeksa dobavljača.
@ -2675,7 +2680,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,Za referencu samo.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},Lekar {0} nije dostupan na {1}
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,Izaberite serijski br
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},{1}: Invalid {0}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},{1}: Invalid {0}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Fee Validity,Reference Inv,Reference Inv
@ -2712,8 +2717,8 @@ DocType: Fees,Send Payment Request,Pošaljite zahtev za plaćanje
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Navedite operacija, operativni troškovi i dati jedinstven radom najkasnije do svojih operacija ."
DocType: Water Analysis,Origin,Poreklo
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,Ovaj dokument je preko granice po {0} {1} za stavku {4}. Da li što još {3} u odnosu na isti {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,Molimo podesite ponavljaju nakon spremanja
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,Izaberite promjene iznos računa
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,Molimo podesite ponavljaju nakon spremanja
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,Izaberite promjene iznos računa
DocType: Purchase Invoice,Price List Currency,Cjenik valuta
DocType: Naming Series,User must always select,Korisničko uvijek mora odabrati
DocType: Stock Settings,Allow Negative Stock,Dopustite negativnu zalihu
@ -2769,7 +2774,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,Raspored održa
DocType: Supplier Scorecard,Warn for new Purchase Orders,Upozoriti na nova narudžbina
DocType: Quality Inspection Reading,Reading 9,Čitanje 9
DocType: Supplier,Is Frozen,Je zamrznut
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,skladište Group čvor nije dozvoljeno da izaberete za transakcije
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,skladište Group čvor nije dozvoljeno da izaberete za transakcije
DocType: Buying Settings,Buying Settings,Podešavanja nabavke
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,BOM broj za Gotovi Dobar točki
DocType: Upload Attendance,Attendance To Date,Gledatelja do danas
@ -2783,6 +2788,7 @@ DocType: Offer Letter,Accepted,Prihvaćeno
DocType: Grant Application,Organization,organizacija
DocType: BOM Update Tool,BOM Update Tool,Alat za ažuriranje BOM
DocType: SG Creation Tool Course,Student Group Name,Student Ime grupe
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,Pokažite eksplodiran pogled
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,Kreiranje naknada
apps/erpnext/erpnext/setup/doctype/company/company.js +91,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.,Molimo Vas da proverite da li ste zaista želite izbrisati sve transakcije za ovu kompaniju. Tvoj gospodar podaci će ostati kao što je to. Ova akcija se ne može poništiti.
DocType: Room,Room Number,Broj sobe
@ -2793,7 +2799,7 @@ DocType: Journal Entry Account,Payroll Entry,Unos plata
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,Napravite poreznu šemu
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,User Forum
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,Sirovine ne može biti prazan.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","Nije mogao ažurirati zaliha, faktura sadrži drop shipping stavke."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","Nije mogao ažurirati zaliha, faktura sadrži drop shipping stavke."
DocType: Lab Test Sample,Lab Test Sample,Primjer laboratorijskog testa
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,Brzi unos u dnevniku
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,Ne možete promijeniti brzinu ako BOM spomenuo agianst bilo predmet
@ -2864,7 +2870,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,Američki dolar
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,Napravite fakturu
DocType: Selling Settings,Auto close Opportunity after 15 days,Auto blizu Opportunity nakon 15 dana
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Narudžbe za kupovinu nisu dozvoljene za {0} zbog stanja kartice koja se nalazi na {1}.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Narudžbe za kupovinu nisu dozvoljene za {0} zbog stanja kartice koja se nalazi na {1}.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,do kraja godine
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Quot / Lead%
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,Ugovor Datum završetka mora biti veći od dana ulaska u
@ -2976,7 +2982,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,Iznad 90
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,Row # {0}: Journal Entry {1} nema nalog {2} ili već usklađeni protiv drugog vaučer
DocType: Supplier Scorecard Criteria,Criteria Weight,Kriterij Težina
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Dobavljač&gt; Tip dobavljača
DocType: Buying Settings,Default Buying Price List,Zadani cjenik kupnje
DocType: Payroll Entry,Salary Slip Based on Timesheet,Plaća za klađenje na Timesheet osnovu
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,Procenat kupovine
@ -3064,7 +3069,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,Pratite Potencijalnog kupca prema tip industrije .
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,Idite u Letterheads
DocType: Item Supplier,Item Supplier,Dobavljač artikla
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,Unesite kod Predmeta da se hrpa nema
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,Unesite kod Predmeta da se hrpa nema
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},Molimo odabir vrijednosti za {0} quotation_to {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,Sve adrese.
DocType: Company,Stock Settings,Stock Postavke
@ -3253,6 +3258,7 @@ DocType: Employee Loan,Loan Details,kredit Detalji
DocType: Company,Default Inventory Account,Uobičajeno zaliha računa
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,Red {0}: Završena Količina mora biti veća od nule.
DocType: Antibiotic,Antibiotic Name,Antibiotički naziv
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Šifra proizvoda&gt; Grupa proizvoda&gt; Marka
DocType: Purchase Invoice,Apply Additional Discount On,Nanesite dodatni popust na
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,Izaberite Tip ...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,Veza sa svim zemljišnim jedinicama u kojima rastu usevi
@ -3446,6 +3452,7 @@ DocType: Guardian Student,Guardian Student,Guardian Student
DocType: Supplier,Credit Limit,Kreditni limit
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,Avg. Prodajna cijena cena
DocType: Production Plan Sales Order,Salse Order Date,Salse Order Datum
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Dobavljač&gt; Tip dobavljača
DocType: Salary Component,Salary Component,Plaća Komponenta
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,Plaćanje Unosi {0} su un-povezani
DocType: GL Entry,Voucher No,Bon Ne
@ -3454,7 +3461,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,Najpopularniji
DocType: Leave Allocation,Leave Allocation,Ostavite Raspodjela
DocType: Payment Request,Recipient Message And Payment Details,Primalac poruka i plaćanju
DocType: Training Event,Trainer Email,trener-mail
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,Materijalni Zahtjevi {0} stvorio
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,Materijalni Zahtjevi {0} stvorio
DocType: Restaurant Reservation,No of People,Broj ljudi
DocType: Production Planning Tool,Include sub-contracted raw materials,Uključiti pod ugovorom sirovina
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,Predložak termina ili ugovor.
@ -3518,7 +3525,7 @@ DocType: Landed Cost Item,Receipt Document,dokument o prijemu
DocType: Production Planning Tool,Create Material Requests,Stvaranje materijalni zahtijevi
DocType: Employee Education,School/University,Škola / Univerzitet
DocType: Payment Request,Reference Details,Reference Detalji
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,Očekivana vrijednost Nakon Korisni Život mora biti manja od bruto Kupovina Iznos
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,Očekivana vrijednost Nakon Korisni Život mora biti manja od bruto Kupovina Iznos
DocType: Sales Invoice Item,Available Qty at Warehouse,Dostupna količina na skladištu
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,Naplaćeni iznos
DocType: Asset,Double Declining Balance,Double degresivne
@ -3530,7 +3537,7 @@ DocType: Attendance,On Leave,Na odlasku
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,Get Updates
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: Račun {2} ne pripada kompaniji {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,Izaberite najmanje jednu vrijednost od svakog atributa.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,Materijal Zahtjev {0} je otkazan ili zaustavljen
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,Materijal Zahtjev {0} je otkazan ili zaustavljen
apps/erpnext/erpnext/config/hr.py +310,Leave Management,Ostavite Management
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,Grupa po računu
DocType: Sales Order,Fully Delivered,Potpuno Isporučeno
@ -3541,14 +3548,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},Isplaćeni iznos ne može biti veći od Iznos kredita {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,Idi na programe
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},Red {0} # Raspodijeljena količina {1} ne može biti veća od nezadovoljne količine {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Molimo da podesite serije brojeva za prisustvo preko Setup&gt; Serija numeracije
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},Broj narudžbenice kupnje je potreban za artikal {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,Proizvodnog naloga kreiranu
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"' Od datuma ' mora biti poslije ' Do datuma"""
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},Ne može promijeniti status studenta {0} je povezana s primjenom student {1}
DocType: Asset,Fully Depreciated,potpuno je oslabio
,Stock Projected Qty,Projektovana kolicina na zalihama
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},Kupac {0} ne pripada projektu {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},Kupac {0} ne pripada projektu {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,Označena Posjećenost HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers","Citati su prijedlozi, ponude koje ste poslali svojim kupcima"
DocType: Sales Order,Customer's Purchase Order,Narudžbenica kupca
@ -3632,7 +3638,7 @@ DocType: Salary Slip,Hour Rate,Cijena sata
DocType: Stock Settings,Item Naming By,Artikal imenovan po
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},Drugi period Zatvaranje Stupanje {0} je postignut nakon {1}
DocType: Production Order,Material Transferred for Manufacturing,Materijal Prebačen za izradu
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,Račun {0} ne postoji
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,Račun {0} ne postoji
DocType: Project,Project Type,Vrsta projekta
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,Zadatak za djecu postoji za ovaj zadatak. Ne možete da izbrišete ovaj zadatak.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,Ili meta Količina ili ciljani iznos je obavezna .
@ -3734,11 +3740,11 @@ DocType: C-Form,I,ja
DocType: Company,Asset Depreciation Cost Center,Asset Amortizacija troškova Center
DocType: Sales Order Item,Sales Order Date,Datum narudžbe kupca
DocType: Sales Invoice Item,Delivered Qty,Isporučena količina
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,Total Excl. Porez
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","Ako je označeno, sva djeca svake proizvodne artikl će biti uključeni u Industrijska zahtjevima."
DocType: Assessment Plan,Assessment Plan,plan procjene
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,Klijent {0} je kreiran.
DocType: Stock Settings,Limit Percent,limit Procenat
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Molimo vas da podesite sistem imenovanja instruktora u obrazovanju&gt; Obrazovne postavke
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,Trenutno nema dostupnih trgovina na zalihama
,Payment Period Based On Invoice Date,Razdoblje za naplatu po Datum fakture
DocType: Sample Collection,No. of print,Broj otiska
@ -3754,12 +3760,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),Dužnici ({0})
DocType: Pricing Rule,Margin,Marža
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,Novi Kupci
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,Bruto dobit%
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,Bruto dobit%
DocType: Appraisal Goal,Weightage (%),Weightage (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,Promenite POS profil
DocType: Bank Reconciliation Detail,Clearance Date,Razmak Datum
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,Izveštaj o proceni
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,Bruto Kupovina Iznos je obavezno
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,Bruto Kupovina Iznos je obavezno
DocType: Lead,Address Desc,Adresa silazno
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,Party je obavezno
DocType: Journal Entry,JV-,JV-
@ -3791,7 +3797,6 @@ DocType: Account,Accumulated Depreciation,Akumuliranu amortizaciju
DocType: Supplier Scorecard Scoring Standing,Standing Name,Stalno ime
DocType: Stock Entry,Customer or Supplier Details,Detalji o Kupcu ili Dobavljacu
DocType: Employee Loan Application,Required by Date,Potreban po datumu
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),Zatvaranje bilansa (Dr - Cr)
DocType: Lead,Lead Owner,Vlasnik Lead-a
DocType: Bin,Requested Quantity,Tražena količina
DocType: Patient,Marital Status,Bračni status
@ -3805,7 +3810,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,Višestruke varijante
DocType: Sales Invoice,Against Income Account,Protiv računu dohotka
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% Isporučeno
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Stavka {0}: {1} Naručena količina ne može biti manji od minimalnog bi Količina {2} (iz točke).
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Stavka {0}: {1} Naručena količina ne može biti manji od minimalnog bi Količina {2} (iz točke).
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,Mjesečni Distribucija Postotak
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,Molimo prijavite se kao drugi korisnik.
DocType: Territory,Territory Targets,Teritorij Mete
@ -3904,7 +3909,7 @@ DocType: Program Enrollment,School House,School House
DocType: Serial No,Out of AMC,Od AMC
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,Broj Amortizacija Booked ne može biti veća od Ukupan broj Amortizacija
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,Provjerite održavanja Posjetite
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,Molimo kontaktirajte za korisnike koji imaju Sales Manager Master {0} ulogu
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,Molimo kontaktirajte za korisnike koji imaju Sales Manager Master {0} ulogu
DocType: Company,Default Cash Account,Zadani novčani račun
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,Društvo ( ne kupaca i dobavljača ) majstor .
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,To se temelji na prisustvo ovog Student
@ -4054,7 +4059,6 @@ DocType: Delivery Note Item,From Warehouse,Od Skladište
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,Nema zaposlenih po navedenim kriterijumima
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,Nema artikala sa Bill materijala za proizvodnju
DocType: Restaurant,Default Customer,Podrazumevani korisnik
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Molimo da podesite sistem imenovanja zaposlenih u ljudskim resursima&gt; HR Settings
DocType: Assessment Plan,Supervisor Name,Supervizor ime
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,Ne potvrdite da li je zakazan termin za isti dan
DocType: Program Enrollment Course,Program Enrollment Course,Program Upis predmeta
@ -4172,7 +4176,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,Web stranica Opis
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,Neto promjena u kapitalu
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,Najnoviji
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,Molimo vas da otkaže fakturi {0} prvi
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,Molimo vas da otkaže fakturi {0} prvi
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","E-mail adresa mora biti jedinstvena, već postoji za {0}"
DocType: Serial No,AMC Expiry Date,AMC Datum isteka
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,priznanica
@ -4189,7 +4193,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,Ne Kupci još!
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,Izvještaj o novčanim tokovima
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},Iznos kredita ne može biti veći od Maksimalni iznos kredita od {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,Licenca
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},Molimo vas da uklonite ovu fakture {0} iz C-Form {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},Molimo vas da uklonite ovu fakture {0} iz C-Form {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,Molimo odaberite prenositi ako želite uključiti prethodnoj fiskalnoj godini je ravnoteža ostavlja na ovoj fiskalnoj godini
DocType: GL Entry,Against Voucher Type,Protiv voucher vrsti
DocType: Physician,Phone (R),Telefon (R)
@ -4201,7 +4205,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,B Negativno
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,Status održavanja mora biti poništen ili završen za slanje
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},Računa {0} ne pripada kompaniji {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,Serijski brojevi u nizu {0} ne odgovara otpremnica
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,Serijski brojevi u nizu {0} ne odgovara otpremnica
DocType: Student,Guardian Details,Guardian Detalji
DocType: C-Form,C-Form,C-Form
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,Mark Prisustvo za više zaposlenih
@ -4243,7 +4247,7 @@ DocType: Opening Invoice Creation Tool,Sales,Prodaja
DocType: Stock Entry Detail,Basic Amount,Osnovni iznos
DocType: Training Event,Exam,ispit
DocType: Complaint,Complaint,Žalba
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},Skladište je potrebno za skladišne proizvode {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},Skladište je potrebno za skladišne proizvode {0}
DocType: Leave Allocation,Unused leaves,Neiskorišteni lišće
DocType: Patient,Alcohol Past Use,Upotreba alkohola u prošlosti
DocType: Fertilizer Content,Fertilizer Content,Sadržaj đubriva
@ -4367,6 +4371,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,formula
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,Serial #
DocType: Lab Test Template,Lab Test Template,Lab test šablon
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,Račun prodaje
DocType: Purchase Invoice Item,Total Weight,Ukupna tezina
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,Komisija za prodaju
DocType: Offer Letter Term,Value / Description,Vrijednost / Opis
@ -4524,7 +4529,7 @@ Updated via 'Time Log'","u minutama
DocType: Customer,From Lead,Od Lead-a
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,Narudžbe objavljen za proizvodnju.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,Odaberite fiskalnu godinu ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,POS Profil potrebno da bi POS upis
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,POS Profil potrebno da bi POS upis
DocType: Program Enrollment Tool,Enroll Students,upisati studenti
DocType: Lab Test,Approved Date,Odobreni datum
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,Standardna prodaja
@ -4600,7 +4605,7 @@ DocType: Employee,Held On,Održanoj
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,Proizvodnja Item
,Employee Information,Informacija o zaposlenom
DocType: Stock Entry Detail,Additional Cost,Dodatni trošak
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","Ne možete filtrirati na temelju vaučer No , ako grupirani po vaučer"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","Ne možete filtrirati na temelju vaučer No , ako grupirani po vaučer"
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,Provjerite Supplier kotaciji
DocType: Quality Inspection,Incoming,Dolazni
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,Osnovani porezni predlošci za prodaju i kupovinu su stvoreni.
@ -4617,7 +4622,7 @@ DocType: Batch,Batch ID,ID serije
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},Napomena : {0}
,Delivery Note Trends,Trendovi otpremnica
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,Ovonedeljnom Pregled
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,Na skladištu Količina
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,Na skladištu Količina
DocType: Delivery Trip,Calculate Estimated Arrival Times,Izračunajte procenjene vremenske prilike
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,Račun: {0} može ažurirati samo preko Stock Transakcije
DocType: Student Group Creation Tool,Get Courses,Get kursevi
@ -4633,7 +4638,7 @@ DocType: Purchase Order,To Bill,To Bill
DocType: Material Request,% Ordered,% Poruceno
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.","Za studentske grupe na osnovu Naravno, kurs će biti potvrđeni za svakog studenta iz upisao jezika u upisu Programa."
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,rad plaćen na akord
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,Prosj. Buying Rate
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,Prosj. Buying Rate
DocType: Task,Actual Time (in Hours),Stvarno vrijeme (u satima)
DocType: Employee,History In Company,Povijest tvrtke
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},Nova poruka od {pošiljaoca}
@ -4681,7 +4686,7 @@ DocType: Asset Repair,Asset Repair,Popravka imovine
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},Red {0}: Valuta sastavnicu # {1} treba da bude jednaka odabrane valute {2}
DocType: Journal Entry Account,Exchange Rate,Tečaj
DocType: Patient,Additional information regarding the patient,Dodatne informacije o pacijentu
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,Prodajnog naloga {0} nije podnesen
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,Prodajnog naloga {0} nije podnesen
DocType: Homepage,Tag Line,Tag Line
DocType: Fee Component,Fee Component,naknada Komponenta
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,Fleet Management
@ -4893,7 +4898,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,Procjena Rezultat Det
DocType: Employee Education,Employee Education,Obrazovanje zaposlenog
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,Duplikat stavka grupa naći u tabeli stavka grupa
DocType: Land Unit,Parent Land Unit,Roditeljska jedinica
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,Potrebno je da se donese Stavka Detalji.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,Potrebno je da se donese Stavka Detalji.
DocType: Fertilizer,Fertilizer Name,Ime đubriva
DocType: Salary Slip,Net Pay,Neto plaća
DocType: Account,Account,Konto
@ -4972,7 +4977,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),Stvarna kol (na izvoru
DocType: Item Customer Detail,Ref Code,Ref. Šifra
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,Korisnička grupa je potrebna u POS profilu
apps/erpnext/erpnext/config/hr.py +12,Employee records.,Zaposlenih evidencija.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,Molimo podesite Sljedeća Amortizacija Datum
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,Molimo podesite Sljedeća Amortizacija Datum
DocType: HR Settings,Payroll Settings,Postavke plaće
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,Klađenje na ne-povezane faktura i plaćanja.
DocType: POS Settings,POS Settings,POS Settings
@ -5139,7 +5144,7 @@ DocType: Item,Customer Code,Kupac Šifra
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},Rođendan Podsjetnik za {0}
DocType: Asset Maintenance Task,Last Completion Date,Zadnji datum završetka
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,Dana od posljednje narudžbe
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,Zaduženja na račun mora biti bilans stanja računa
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,Zaduženja na račun mora biti bilans stanja računa
DocType: Buying Settings,Naming Series,Imenovanje serije
DocType: Leave Block List,Leave Block List Name,Ostavite popis imena Block
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,Datum osiguranje Početak bi trebao biti manji od datuma osiguranje Kraj
@ -5266,6 +5271,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,Get plaćanja unosi
DocType: Quotation Item,Against Docname,Protiv Docname
DocType: SMS Center,All Employee (Active),Svi zaposleni (aktivni)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Klijent&gt; Grupa klijenata&gt; Teritorija
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,Pregled Sada
DocType: BOM,Raw Material Cost,Troškovi sirovina
DocType: Item Reorder,Re-Order Level,Re-order Level
@ -5364,7 +5370,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,Broj sjedećih mjesta
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,Laboratorijske grupe
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Klijent&gt; Grupa klijenata&gt; Teritorija
DocType: Project,Total Expense Claim (via Expense Claims),Ukupni rashodi potraživanja (preko rashodi potraživanja)
DocType: GST Settings,GST Summary,PDV Pregled
DocType: Assessment Result,Total Score,Ukupni rezultat
@ -5377,7 +5382,7 @@ DocType: Batch,Source Document Type,Izvor Document Type
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,Stvoreni su sledeći planovi kursa
DocType: Journal Entry,Total Debit,Ukupno zaduženje
DocType: Manufacturing Settings,Default Finished Goods Warehouse,Uobičajeno Gotovi proizvodi skladište
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,Referent prodaje
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,Referent prodaje
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,Budžet i troškova Center
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,Višestruki način plaćanja nije dozvoljen
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,za
@ -5550,7 +5555,7 @@ DocType: Program,Program Name,Naziv programa
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Razmislite poreza ili pristojbi za
DocType: Driver,Driving License Category,Kategorija vozačke dozvole
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,Stvarni Qty je obavezno
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} trenutno ima {1} Scorecard stava, a narudžbine za ovaj dobavljač treba izdati oprezno."
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} trenutno ima {1} Scorecard stava, a narudžbine za ovaj dobavljač treba izdati oprezno."
DocType: Asset Maintenance Team,Asset Maintenance Team,Tim za održavanje imovine
DocType: Employee Loan,Loan Type,Vrsta kredita
DocType: Scheduling Tool,Scheduling Tool,zakazivanje alata

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,Prescripció del laboratori
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,Ordena per Preu
,Delay Days,Dies de retard
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,despesa servei
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},Número de sèrie: {0} ja es fa referència en factura de venda: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},Número de sèrie: {0} ja es fa referència en factura de venda: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,Factura
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,Feu l&#39;entrada d&#39;existències de retenció
DocType: Purchase Invoice Item,Item Weight Details,Detalls del pes de l&#39;element
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,Docname Detall de Pares
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","Referència: {0}, Codi de l&#39;article: {1} i el Client: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,Kg
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,L'obertura per a una ocupació.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},La BOM no està especificada per subcontractar l&#39;element {0} a la fila {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},La BOM no està especificada per subcontractar l&#39;element {0} a la fila {1}
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} Resultat enviat
DocType: Item Attribute,Increment,Increment
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,Lapse de temps
@ -150,7 +150,7 @@ DocType: Patient,Married,Casat
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},No està permès per {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,Obtenir articles de
DocType: Price List,Price Not UOM Dependant,Preu no dependent de l&#39;UOM
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},L'estoc no es pot actualitzar contra la Nota de Lliurament {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},L'estoc no es pot actualitzar contra la Nota de Lliurament {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},Producte {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,No hi ha elements que s&#39;enumeren
DocType: Asset Repair,Error Description,Descripció de l&#39;error
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,Conciliar
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,Botiga
DocType: Quality Inspection Reading,Reading 1,Lectura 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,Fons de Pensions
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,Següent Depreciació La data no pot ser anterior a la data de compra
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,Següent Depreciació La data no pot ser anterior a la data de compra
DocType: Crop,Perennial,Perenne
DocType: Consultation,Consultation Date,Data de consulta
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,Llistat de productes i descobriment per als usuaris d&#39;ERPNext
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,Escriu Off Centre de Cost
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""","per exemple, &quot;escola primària&quot; o &quot;Universitat&quot;"
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,Informes d&#39;arxiu
DocType: Warehouse,Warehouse Detail,Detall Magatzem
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},Límit de crèdit s'ha creuat pel client {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},Límit de crèdit s'ha creuat pel client {0} {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,"La data final de durada no pot ser posterior a la data de cap d&#39;any de l&#39;any acadèmic a què està vinculat el terme (any acadèmic {}). Si us plau, corregeixi les dates i torna a intentar-ho."
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","""És actiu fix"" no pot estar sense marcar, ja que hi ha registre d'actius contra l'element"
DocType: Delivery Trip,Departure Time,Hora de sortida
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,Inicia estudiant
DocType: Quality Inspection,Get Specification Details,Obtenir Detalls d'Especificacions
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,Plantilles de classificació dels proveïdors.
DocType: Lead,Interested,Interessat
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,Obertura
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,Obertura
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},Des {0} a {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,No s&#39;ha pogut configurar els impostos
DocType: Item,Copy From Item Group,Copiar del Grup d'Articles
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,Alleujar data ha de ser major que la data de Unir
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,Deixa per any
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,"Fila {0}: Si us plau, vegeu ""És Avanç 'contra el Compte {1} si es tracta d'una entrada amb antelació."
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},Magatzem {0} no pertany a l'empresa {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},Magatzem {0} no pertany a l'empresa {1}
DocType: Email Digest,Profit & Loss,D&#39;pèrdues i guanys
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,litre
DocType: Task,Total Costing Amount (via Time Sheet),Càlcul del cost total Monto (a través de fulla d&#39;hores)
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,Preu i quantitat
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,Això es basa en operacions contra aquesta empresa. Vegeu la línia de temps a continuació per obtenir detalls
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Notificació per correu electrònic a la creació de la Sol·licitud de materials automàtica
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,Resistent
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Consultationt
DocType: Journal Entry,Multi Currency,Multi moneda
DocType: Opening Invoice Creation Tool,Invoice Type,Tipus de Factura
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,Nota de lliurament
@ -528,7 +529,6 @@ DocType: Email Digest,Credit Balance,Saldo creditor
DocType: Employee,Widowed,Vidu
DocType: Request for Quotation,Request for Quotation,Sol · licitud de pressupost
DocType: Healthcare Settings,Require Lab Test Approval,Requereix aprovació de la prova de laboratori
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Codi d&#39;article&gt; Grup d&#39;elements&gt; Marca
DocType: Salary Slip Timesheet,Working Hours,Hores de Treball
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,Total pendent
DocType: Naming Series,Change the starting / current sequence number of an existing series.,Canviar el número de seqüència inicial/actual d'una sèrie existent.
@ -557,7 +557,7 @@ DocType: Subscription,Yearly,Anual
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,Si us plau entra el centre de cost
DocType: Drug Prescription,Dosage,Dosificació
DocType: Journal Entry Account,Sales Order,Ordre de Venda
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,Avg. La venda de Tarifa
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,Avg. La venda de Tarifa
DocType: Assessment Plan,Examiner Name,Nom de l&#39;examinador
DocType: Lab Test Template,No Result,sense Resultat
DocType: Purchase Invoice Item,Quantity and Rate,Quantitat i taxa
@ -605,6 +605,7 @@ DocType: Employee,Health Concerns,Problemes de Salut
DocType: Payroll Entry,Select Payroll Period,Seleccioneu el període de nòmina
DocType: Purchase Invoice,Unpaid,No pagat
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,Mantinguts per a la venda
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Configureu el sistema de nomenclatura d&#39;empleats en recursos humans&gt; Configuració de recursos humans
DocType: Packing Slip,From Package No.,Del paquet número
DocType: Item Attribute,To Range,Per Abast
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,Valors i Dipòsits
@ -629,11 +630,11 @@ DocType: Pricing Rule,Valid Upto,Vàlid Fins
DocType: Training Event,Workshop,Taller
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,Aviseu comandes de compra
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,Enumerar alguns dels seus clients. Podrien ser les organitzacions o individus.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,Peces suficient per construir
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,Peces suficient per construir
DocType: POS Profile User,POS Profile User,Usuari de perfil de TPV
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,Ingrés Directe
DocType: Patient Appointment,Date TIme,Data i hora
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","No es pot filtrar en funció del compte, si agrupats per Compte"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","No es pot filtrar en funció del compte, si agrupats per Compte"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,Oficial Administratiu
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,Creació d&#39;empreses i impostos
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,Seleccioneu de golf
@ -643,7 +644,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,Compte de diferències
DocType: Purchase Invoice,Supplier GSTIN,GSTIN proveïdor
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,No es pot tancar tasca com no tanca la seva tasca depèn {0}.
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,Si us plau indica el Magatzem en què es faràa la Sol·licitud de materials
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,Si us plau indica el Magatzem en què es faràa la Sol·licitud de materials
DocType: Production Order,Additional Operating Cost,Cost addicional de funcionament
DocType: Lab Test Template,Lab Routine,Rutina de laboratori
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,Productes cosmètics
@ -811,7 +812,7 @@ DocType: Employee,Passport Number,Nombre de Passaport
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Relació amb Guardian2
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,Gerent
DocType: Payment Entry,Payment From / To,El pagament de / a
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Nou límit de crèdit és menor que la quantitat pendent actual per al client. límit de crèdit ha de ser almenys {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Nou límit de crèdit és menor que la quantitat pendent actual per al client. límit de crèdit ha de ser almenys {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},Establiu el compte a Magatzem {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,'Basat En' i 'Agrupar Per' no pot ser el mateix
DocType: Sales Person,Sales Person Targets,Objectius persona de vendes
@ -822,7 +823,7 @@ DocType: Lab Test Template,Compound,Compòsit
DocType: Student Batch Name,Batch Name,Nom del lot
DocType: Fee Validity,Max number of visit,Nombre màxim de visites
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,Part d&#39;hores de creació:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},"Si us plau, estableix pagament en efectiu o Compte bancari predeterminat a la Forma de pagament {0}"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},"Si us plau, estableix pagament en efectiu o Compte bancari predeterminat a la Forma de pagament {0}"
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,inscriure
DocType: GST Settings,GST Settings,ajustaments GST
DocType: Selling Settings,Customer Naming By,Customer Naming By
@ -946,7 +947,7 @@ DocType: Delivery Note,Customer's Purchase Order No,Del client Ordre de Compra N
DocType: Budget,Budget Against,contra pressupost
DocType: Employee,Cell Number,Número de cel·la
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,No hi ha cap empleat per als criteris establerts. Comproveu que ja no s&#39;hagin creat salaris.
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,Les sol·licituds de material auto generada
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,Les sol·licituds de material auto generada
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,Perdut
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,Vostè no pot entrar bo actual a 'Contra entrada de diari' columna
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,Reservat per a la fabricació
@ -954,7 +955,7 @@ DocType: Soil Texture,Sand,Sorra
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,Energia
DocType: Opportunity,Opportunity From,Oportunitat De
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,Nòmina mensual.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Fila {0}: {1} Nombres de sèrie obligatoris per a l&#39;element {2}. Heu proporcionat {3}.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Fila {0}: {1} Nombres de sèrie obligatoris per a l&#39;element {2}. Heu proporcionat {3}.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,Seleccioneu una taula
DocType: BOM,Website Specifications,Especificacions del lloc web
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} és una adreça electrònica no vàlida a &quot;Destinataris&quot;
@ -1042,7 +1043,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,Cita sol·licitada
DocType: Vital Signs,Heart Rate / Pulse,Taxa / pols del cor
DocType: Company,Default Bank Account,Compte bancari per defecte
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","Per filtrar la base de la festa, seleccioneu Partit Escrigui primer"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","Per filtrar la base de la festa, seleccioneu Partit Escrigui primer"
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},"""Actualització d'Estoc""no es pot comprovar perquè els articles no es lliuren a través de {0}"
DocType: Vehicle,Acquisition Date,Data d&#39;adquisició
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,Ens
@ -1066,7 +1067,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),Carregueu el vostre capçal de lletra (manteniu-lo web a 900px per 100px)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: Compte {2} no pot ser un grup
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,Element Fila {} idx: {} {DOCTYPE docname} no existeix en l&#39;anterior &#39;{} tipus de document&#39; taula
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,Part d&#39;hores {0} ja s&#39;hagi completat o cancel·lat
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,Part d&#39;hores {0} ja s&#39;hagi completat o cancel·lat
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,No hi ha tasques
DocType: Item Variant Settings,Copy Fields to Variant,Copia els camps a la variant
DocType: Asset,Opening Accumulated Depreciation,L&#39;obertura de la depreciació acumulada
@ -1178,9 +1179,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,Material de Pla de subconjunts
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,Punts de venda i Territori
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,BOM {0} ha d'estar activa
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),Tancament (obertura + total)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),Tancament (obertura + total)
DocType: Journal Entry,Depreciation Entry,Entrada depreciació
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Si us plau. Primer seleccioneu el tipus de document
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,Impressió en moneda de compte
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Cancel·la Visites Materials {0} abans de cancel·lar aquesta visita de manteniment
DocType: Crop Cycle,ISO 8016 standard,Norma ISO 8016
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},El número de Sèrie {0} no pertany a l'article {1}
@ -1206,7 +1208,7 @@ DocType: Purchase Receipt,Range,Abast
DocType: Supplier,Default Payable Accounts,Comptes per Pagar per defecte
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,L'Empleat {0} no està actiu o no existeix
DocType: Fee Structure,Components,components
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},"Si us plau, introdueixi categoria d&#39;actius en el punt {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},"Si us plau, introdueixi categoria d&#39;actius en el punt {0}"
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,Article Variants {0} actualitza
DocType: Quality Inspection Reading,Reading 6,Lectura 6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1258,6 +1260,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,Nom de l'Empresa
DocType: SMS Center,Total Message(s),Total Missatge(s)
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,Seleccionar element de Transferència
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Estableix la sèrie de noms per a {0} mitjançant la configuració&gt; Configuració&gt; Sèrie de nomenclatura
DocType: Purchase Invoice,Additional Discount Percentage,Percentatge de descompte addicional
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,Veure una llista de tots els vídeos d&#39;ajuda
DocType: Agriculture Analysis Criteria,Soil Texture,Textura del sòl
@ -1285,7 +1288,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,BOM lloc web d&#39;articles
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,Puja el teu cap lletra i logotip. (Pots editar més tard).
DocType: Timesheet Detail,Bill,projecte de llei
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,La depreciació propera data s&#39;introdueix com a data passada
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,La depreciació propera data s&#39;introdueix com a data passada
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,Blanc
DocType: SMS Center,All Lead (Open),Tots els clients potencials (Obert)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),Fila {0}: Quantitat no està disponible per {4} al magatzem {1} a publicar moment de l&#39;entrada ({2} {3})
@ -1301,7 +1304,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,Data del següent contacte
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,Quantitat d'obertura
DocType: Healthcare Settings,Appointment Reminder,Recordatori de cites
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,"Si us plau, introdueixi el compte per al Canvi Monto"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,"Si us plau, introdueixi el compte per al Canvi Monto"
DocType: Program Enrollment Tool Student,Student Batch Name,Lot Nom de l&#39;estudiant
DocType: Consultation,Doctor,Doctor
DocType: Holiday List,Holiday List Name,Nom de la Llista de vacances
@ -1317,6 +1320,7 @@ DocType: Patient,Patient Relation,Relació del pacient
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,Deixa Eina d'Assignació
DocType: Item,Hub Category to Publish,Categoria de concentradora per publicar
DocType: Leave Block List,Leave Block List Dates,Deixa llista de blocs dates
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Configureu la sèrie de numeració per assistència mitjançant la configuració&gt; Sèrie de numeració
DocType: Sales Invoice,Billing Address GSTIN,Adreça de facturació GSTIN
DocType: Assessment Plan,Evaluate,Avaluar
DocType: Workstation,Net Hour Rate,Hora taxa neta
@ -1350,7 +1354,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,Rebut de compra d'articles
DocType: Purchase Receipt,PREC-RET-,PREC-RET-
DocType: POS Profile,Sales Invoice Payment,El pagament de factures de vendes
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,Magatzem Reservat a Ordres de venda / Magatzem de productes acabats
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,Quantitat de Venda
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,Quantitat de Venda
DocType: Repayment Schedule,Interest Amount,Suma d&#39;interès
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,"Ets l'aprovador de despeses per a aquest registre. Actualitza l '""Estat"" i Desa"
DocType: Serial No,Creation Document No,Creació document nº
@ -1441,7 +1445,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,Obertura de Balanç de Comptabilitat
,GST Sales Register,GST Registre de Vendes
DocType: Sales Invoice Advance,Sales Invoice Advance,Factura proforma
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,Res per sol·licitar
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,Res per sol·licitar
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,Seleccioneu els vostres dominis
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},Un altre rècord Pressupost &#39;{0}&#39; ja existeix en contra {1} &#39;{2}&#39; per a l&#39;any fiscal {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,Els camps es copiaran només en el moment de la creació.
@ -1451,11 +1455,11 @@ DocType: Cheque Print Template,Payer Settings,Configuració del pagador
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","Això s'afegeix al Codi de l'article de la variant. Per exemple, si la seva abreviatura és ""SM"", i el codi de l'article és ""samarreta"", el codi de l'article de la variant serà ""SAMARRETA-SM"""
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,El sou net (en paraules) serà visible un cop que es guardi la nòmina.
DocType: Purchase Invoice,Is Return,És la tornada
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,Precaució
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,Precaució
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,Retorn / dèbit Nota
DocType: Price List Country,Price List Country,Preu de llista País
DocType: Item,UOMs,UOMS
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} amb números de sèrie vàlids per Punt {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} amb números de sèrie vàlids per Punt {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,El Codi de l'article no es pot canviar de número de sèrie
DocType: Purchase Invoice Item,UOM Conversion Factor,UOM factor de conversió
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,"Si us plau, introdueixi el codi d&#39;article per obtenir el nombre de lot"
@ -1559,7 +1563,7 @@ DocType: Journal Entry,Get Outstanding Invoices,Rep les factures pendents
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,Vendes Sol·licitar {0} no és vàlid
DocType: Supplier Scorecard,Warn for new Request for Quotations,Adverteu una nova sol·licitud de pressupostos
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,Les ordres de compra li ajudarà a planificar i donar seguiment a les seves compres
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","Ho sentim, les empreses no poden fusionar-"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","Ho sentim, les empreses no poden fusionar-"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,Prescripcions de proves de laboratori
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",La quantitat total d&#39;emissió / Transferència {0} en la Sol·licitud de material {1} \ no pot ser major que la quantitat sol·licitada {2} per a l&#39;article {3}
@ -1597,7 +1601,6 @@ DocType: Vehicle,Fuel UOM,UOM de combustible
DocType: Warehouse,Warehouse Contact Info,Informació del contacte del magatzem
DocType: Payment Entry,Write Off Difference Amount,Amortitzar import de la diferència
DocType: Volunteer,Volunteer Name,Nom del voluntari
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Configureu el sistema de nomenclatura d&#39;instructor a l&#39;educació&gt; Configuració de l&#39;educació
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0}: No s&#39;ha trobat el correu electrònic dels empleats, per tant, no correu electrònic enviat"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},La regla d&#39;enviament no és aplicable al país {0}
DocType: Item,Foreign Trade Details,Detalls estrangera Comerç
@ -1609,7 +1612,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,Nombre Rotllo Grup
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry","Per {0}, només els comptes de crèdit es poden vincular amb un altre seient de dèbit"
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,Total de tots els pesos de tasques ha de ser 1. Si us plau ajusta els pesos de totes les tasques del projecte en conseqüència
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,La Nota de lliurament {0} no està presentada
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,La Nota de lliurament {0} no està presentada
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,Article {0} ha de ser un subcontractada article
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,Capital Equipments
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Regla preus es selecciona per primera basada en 'Aplicar On' camp, que pot ser d'article, grup d'articles o Marca."
@ -1634,7 +1637,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,existeix magatzem nen per a aquest magatzem. No es pot eliminar aquest magatzem.
DocType: Item,Website Item Groups,Grups d'article del Web
DocType: Purchase Invoice,Total (Company Currency),Total (Companyia moneda)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,Nombre de sèrie {0} va entrar més d'una vegada
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,Nombre de sèrie {0} va entrar més d'una vegada
DocType: Journal Entry,Journal Entry,Entrada de diari
DocType: Expense Claim Advance,Unclaimed amount,Quantitat no reclamada
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} articles en procés
@ -1730,7 +1733,7 @@ DocType: Email Digest,For Company,Per a l'empresa
apps/erpnext/erpnext/config/support.py +17,Communication log.,Registre de Comunicació.
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.","Sol·licitud de Cotització es desactiva amb l&#39;accés des del portal, per més ajustos del portal de verificació."
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,Quadre de puntuació de proveïdors Variable
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,Import Comprar
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,Import Comprar
DocType: Sales Invoice,Shipping Address Name,Nom de l'Adreça d'enviament
DocType: Material Request,Terms and Conditions Content,Contingut de Termes i Condicions
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,S&#39;ha produït un error en crear un calendari de cursos
@ -1994,7 +1997,7 @@ DocType: Expense Claim,Total Amount Reimbursed,Suma total reemborsat
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,Això es basa en els registres contra aquest vehicle. Veure cronologia avall per saber més
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},Contra Proveïdor Factura {0} {1} datat
DocType: Customer,Default Price List,Llista de preus per defecte
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,registrar el moviment d&#39;actius {0} creat
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,registrar el moviment d&#39;actius {0} creat
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,No es pot eliminar l&#39;any fiscal {0}. Any fiscal {0} s&#39;estableix per defecte en la configuració global
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,Ja existeix un client amb el mateix nom
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,Això enviarà Slips salarials i crear ingressos de periodificació acumulats. Voleu continuar?
@ -2008,6 +2011,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,la fixació de preus
DocType: Quotation,Term Details,Detalls termini
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,No es pot inscriure més de {0} estudiants d&#39;aquest grup d&#39;estudiants.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),Total (sense impostos)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,Comptador de plom
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} ha de ser més gran que 0
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,Stock disponible
@ -2026,7 +2030,6 @@ DocType: Lab Test,Technician Name,Tècnic Nom
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,Desvinculació de Pagament a la cancel·lació de la factura
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},Lectura actual del odòmetre entrat ha de ser més gran que el comptaquilòmetres inicial {0}
DocType: Restaurant Reservation,No Show,No hi ha espectacle
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Estableix la sèrie de noms per a {0} mitjançant la configuració&gt; Configuració&gt; Sèrie de nomenclatura
DocType: Shipping Rule Country,Shipping Rule Country,Regla País d&#39;enviament
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,Deixa i Assistència
DocType: Maintenance Visit,Partially Completed,Va completar parcialment
@ -2117,7 +2120,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,Instructor grup d&#39;alumnes
DocType: Grant Application,Assessment Mark (Out of 10),Marc d&#39;avaluació (de 10)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Sense Guardian2 mòbil
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,Inici
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,Inici
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,Variant
DocType: Naming Series,Set prefix for numbering series on your transactions,Establir prefix de numeracions seriades a les transaccions
DocType: Employee Attendance Tool,Employees HTML,Els empleats HTML
@ -2165,7 +2168,7 @@ DocType: Crop,Crop Spacing,Espaiat de cultiu
DocType: Course,Course Abbreviation,Abreviatura de golf
DocType: Student Leave Application,Student Leave Application,Aplicació Deixar estudiant
DocType: Item,Will also apply for variants,També s'aplicarà per a les variants
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","Actiu no es pot cancel·lar, com ja ho és {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","Actiu no es pot cancel·lar, com ja ho és {0}"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},Empleat {0} del mig dia del {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},Total d&#39;hores de treball no han de ser més grans que les hores de treball max {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,En
@ -2350,9 +2353,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),Data de finalització real (a través de fulla d&#39;hores)
DocType: Soil Texture,Soil Type,Tipus de sòl
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},Suma {0} {1} {2} contra {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,Nou missatge
,Quotation Trends,Quotation Trends
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},Grup L'article no esmenta en mestre d'articles per a l'article {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,Dèbit al compte ha de ser un compte per cobrar
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,Dèbit al compte ha de ser un compte per cobrar
DocType: Shipping Rule,Shipping Amount,Total de l'enviament
DocType: Supplier Scorecard Period,Period Score,Puntuació de períodes
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,Afegir Clients
@ -2363,7 +2367,7 @@ DocType: Purchase Order,Delivered,Alliberat
,Vehicle Expenses,Les despeses de vehicles
DocType: Serial No,Invoice Details,Detalls de la factura
DocType: Grant Application,Show on Website,Mostra al lloc web
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},Valor esperat després de la vida útil ha de ser major o igual a {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},Valor esperat després de la vida útil ha de ser major o igual a {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,Comença
DocType: Hub Category,Hub Category,Categoria de concentrador
DocType: Purchase Invoice,SEZ,SEZ
@ -2394,7 +2398,7 @@ DocType: Patient,Patient Details,Detalls del pacient
DocType: Patient,B Positive,B Positiu
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","Fila # {0}: Quantitat ha de ser 1, com a element és un actiu fix. Si us plau, utilitzeu fila separada per al qty múltiple."
DocType: Leave Block List Allow,Leave Block List Allow,Leave Block List Allow
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,Abbr no pot estar en blanc o l&#39;espai
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,Abbr no pot estar en blanc o l&#39;espai
DocType: Patient Medical Record,Patient Medical Record,Registre mèdic del pacient
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,Grup de No-Grup
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,Esports
@ -2444,6 +2448,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,No es pot establir una RFQ rebuda a cap quota
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,Deducció total
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,Seleccioneu un compte per imprimir a la moneda del compte
,Production Analytics,Anàlisi de producció
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,Això es basa en operacions contra aquest pacient. Vegeu la línia de temps a continuació per obtenir detalls
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,Cost Actualitzat
@ -2498,7 +2503,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,Confi
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,Seleccioneu l'empresa ...
DocType: Leave Control Panel,Leave blank if considered for all departments,Deixar en blanc si es considera per a tots els departaments
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","Tipus d'ocupació (permanent, contractats, intern etc.)."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} és obligatori per l'article {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} és obligatori per l'article {1}
DocType: Payroll Entry,Fortnightly,quinzenal
DocType: Currency Exchange,From Currency,De la divisa
DocType: Vital Signs,Weight (In Kilogram),Pes (en quilogram)
@ -2574,7 +2579,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),Import de base (Companyi
DocType: Student,Guardians,guardians
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,Els preus no es mostren si la llista de preus no s&#39;ha establert
DocType: Stock Entry,Total Incoming Value,Valor Total entrant
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,Es requereix dèbit per
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,Es requereix dèbit per
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Taula de temps ajuden a mantenir la noció del temps, el cost i la facturació d&#39;activitats realitzades pel seu equip"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,Llista de preus de Compra
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,Plantilles de variables de quadre de comandament de proveïdors.
@ -2675,7 +2680,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,Només de referència.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},El metge {0} no està disponible a {1}
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,Seleccioneu Lot n
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},No vàlida {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},No vàlida {0}: {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Fee Validity,Reference Inv,Referència Inv
@ -2712,8 +2717,8 @@ DocType: Fees,Send Payment Request,Enviar sol·licitud de pagament
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Especifiqueu les operacions, el cost d'operació i dona una número d'operació únic a les operacions."
DocType: Water Analysis,Origin,Origen
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,Aquest document està per sobre del límit de {0} {1} per a l&#39;element {4}. Estàs fent una altra {3} contra el mateix {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,Si us plau conjunt recurrent després de guardar
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,Seleccioneu el canvi import del compte
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,Si us plau conjunt recurrent després de guardar
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,Seleccioneu el canvi import del compte
DocType: Purchase Invoice,Price List Currency,Price List Currency
DocType: Naming Series,User must always select,Usuari sempre ha de seleccionar
DocType: Stock Settings,Allow Negative Stock,Permetre existències negatives
@ -2769,7 +2774,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,Detall del Prog
DocType: Supplier Scorecard,Warn for new Purchase Orders,Adverteix noves comandes de compra
DocType: Quality Inspection Reading,Reading 9,Lectura 9
DocType: Supplier,Is Frozen,Està Congelat
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,magatzem node de grup no se li permet seleccionar per a les transaccions
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,magatzem node de grup no se li permet seleccionar per a les transaccions
DocType: Buying Settings,Buying Settings,Ajustaments de compra
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,BOM No. de producte acabat d'article
DocType: Upload Attendance,Attendance To Date,Assistència fins a la Data
@ -2783,6 +2788,7 @@ DocType: Offer Letter,Accepted,Acceptat
DocType: Grant Application,Organization,organització
DocType: BOM Update Tool,BOM Update Tool,Eina d&#39;actualització de la BOM
DocType: SG Creation Tool Course,Student Group Name,Nom del grup d&#39;estudiant
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,Mostra la vista desplegada
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,Creació de tarifes
apps/erpnext/erpnext/setup/doctype/company/company.js +91,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.,"Si us plau, assegureu-vos que realment voleu esborrar totes les transaccions d&#39;aquesta empresa. Les seves dades mestres romandran tal com és. Aquesta acció no es pot desfer."
DocType: Room,Room Number,Número d&#39;habitació
@ -2793,7 +2799,7 @@ DocType: Journal Entry Account,Payroll Entry,Entrada de nòmina
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,Feu la plantilla fiscal
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,Fòrum d&#39;Usuaris
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,Matèries primeres no poden estar en blanc.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","No s&#39;ha pogut actualitzar valors, factura conté els articles de l&#39;enviament de la gota."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","No s&#39;ha pogut actualitzar valors, factura conté els articles de l&#39;enviament de la gota."
DocType: Lab Test Sample,Lab Test Sample,Exemple de prova de laboratori
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,Seient Ràpida
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,No es pot canviar la tarifa si el BOM va cap a un article
@ -2864,7 +2870,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,USD
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,Fer Factura
DocType: Selling Settings,Auto close Opportunity after 15 days,Tancament automàtic després de 15 dies d&#39;Oportunitats
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Les ordres de compra no estan permeses per {0} a causa d&#39;un quadre de comandament de peu de {1}.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Les ordres de compra no estan permeses per {0} a causa d&#39;un quadre de comandament de peu de {1}.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,De cap d&#39;any
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Quot /% Plom
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,La Data de finalització del contracte ha de ser major que la data d'inici
@ -2976,7 +2982,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,Per sobre de 90-
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,Fila # {0}: Seient {1} no té en compte {2} o ja compara amb un altre bo
DocType: Supplier Scorecard Criteria,Criteria Weight,Criteris de pes
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Proveïdor&gt; Tipus de proveïdor
DocType: Buying Settings,Default Buying Price List,Llista de preus per defecte
DocType: Payroll Entry,Salary Slip Based on Timesheet,Sobre la base de nòmina de part d&#39;hores
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,Tarifa de compra
@ -3064,7 +3069,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,Seguiment dels clients potencials per tipus d'indústria.
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,Aneu als membres
DocType: Item Supplier,Item Supplier,Article Proveïdor
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,"Si us plau, introduïu el codi d'article per obtenir lots no"
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,"Si us plau, introduïu el codi d'article per obtenir lots no"
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},Please select a value for {0} quotation_to {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,Totes les direccions.
DocType: Company,Stock Settings,Ajustaments d'estocs
@ -3253,6 +3258,7 @@ DocType: Employee Loan,Loan Details,Detalls de préstec
DocType: Company,Default Inventory Account,Compte d&#39;inventari per defecte
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,Fila {0}: Complet Quantitat ha de ser més gran que zero.
DocType: Antibiotic,Antibiotic Name,Nom antibiòtic
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Codi d&#39;article&gt; Grup d&#39;elements&gt; Marca
DocType: Purchase Invoice,Apply Additional Discount On,Aplicar addicional de descompte en les
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,Selecciona el tipus ...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,Un enllaç a totes les Unitats de Terres en les quals el Cultiu creix
@ -3446,6 +3452,7 @@ DocType: Guardian Student,Guardian Student,guardià de l&#39;Estudiant
DocType: Supplier,Credit Limit,Límit de Crèdit
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,Mitjana Preu de la venda de tarifes
DocType: Production Plan Sales Order,Salse Order Date,Salse Data de la comanda
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Proveïdor&gt; Tipus de proveïdor
DocType: Salary Component,Salary Component,component salari
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,Les entrades de pagament {0} són no-relacionat
DocType: GL Entry,Voucher No,Número de comprovant
@ -3454,7 +3461,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,El més popular
DocType: Leave Allocation,Leave Allocation,Assignació d'absència
DocType: Payment Request,Recipient Message And Payment Details,Missatge receptor i formes de pagament
DocType: Training Event,Trainer Email,entrenador correu electrònic
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,Sol·licituds de material {0} creats
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,Sol·licituds de material {0} creats
DocType: Restaurant Reservation,No of People,No de la gent
DocType: Production Planning Tool,Include sub-contracted raw materials,Inclogui matèries primeres subcontractats
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,Plantilla de termes o contracte.
@ -3518,7 +3525,7 @@ DocType: Landed Cost Item,Receipt Document,la recepció de documents
DocType: Production Planning Tool,Create Material Requests,Crear sol·licituds de materials
DocType: Employee Education,School/University,Escola / Universitat
DocType: Payment Request,Reference Details,Detalls Referència
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,Valor esperat després de la vida útil ha de ser inferior a l&#39;import brut de compra
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,Valor esperat després de la vida útil ha de ser inferior a l&#39;import brut de compra
DocType: Sales Invoice Item,Available Qty at Warehouse,Disponible Quantitat en magatzem
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,Quantitat facturada
DocType: Asset,Double Declining Balance,Doble saldo decreixent
@ -3530,7 +3537,7 @@ DocType: Attendance,On Leave,De baixa
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,Obtenir actualitzacions
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: Compte {2} no pertany a l&#39;empresa {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,Seleccioneu com a mínim un valor de cadascun dels atributs.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,Material de Sol·licitud {0} es cancel·la o s'atura
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,Material de Sol·licitud {0} es cancel·la o s'atura
apps/erpnext/erpnext/config/hr.py +310,Leave Management,Deixa Gestió
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,Agrupa Per Comptes
DocType: Sales Order,Fully Delivered,Totalment Lliurat
@ -3541,14 +3548,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},Suma desemborsat no pot ser més gran que Suma del préstec {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,Vés als programes
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},La fila {0} # quantitat assignada {1} no pot ser major que la quantitat no reclamada {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Configureu la sèrie de numeració per assistència mitjançant la configuració&gt; Sèrie de numeració
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},Número d'ordre de Compra per {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,Ordre de producció no s&#39;ha creat
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','Des de la data' ha de ser després de 'A data'
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},No es pot canviar l&#39;estat d&#39;estudiant {0} està vinculada amb l&#39;aplicació de l&#39;estudiant {1}
DocType: Asset,Fully Depreciated,Estant totalment amortitzats
,Stock Projected Qty,Quantitat d'estoc previst
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},Client {0} no pertany a projectar {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},Client {0} no pertany a projectar {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,Assistència marcat HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers","Les cites són propostes, les ofertes que ha enviat als seus clients"
DocType: Sales Order,Customer's Purchase Order,Àrea de clients Ordre de Compra
@ -3632,7 +3638,7 @@ DocType: Salary Slip,Hour Rate,Hour Rate
DocType: Stock Settings,Item Naming By,Article Naming Per
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},Una altra entrada Període de Tancament {0} s'ha fet després de {1}
DocType: Production Order,Material Transferred for Manufacturing,Material transferit per a la Fabricació
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,{0} no existeix Compte
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,{0} no existeix Compte
DocType: Project,Project Type,Tipus de Projecte
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,Existeix una tasca infantil per a aquesta tasca. No podeu suprimir aquesta tasca.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,Tan quantitat destí com Quantitat són obligatoris.
@ -3734,11 +3740,11 @@ DocType: C-Form,I,jo
DocType: Company,Asset Depreciation Cost Center,Centre de l&#39;amortització del cost dels actius
DocType: Sales Order Item,Sales Order Date,Sol·licitar Sales Data
DocType: Sales Invoice Item,Delivered Qty,Quantitat lliurada
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,Excl. Total Impost
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","Si se selecciona, tots els fills de cada element de la producció s&#39;inclouran en les sol·licituds de materials."
DocType: Assessment Plan,Assessment Plan,pla d&#39;avaluació
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,S&#39;ha creat el client {0}.
DocType: Stock Settings,Limit Percent,límit de percentatge
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Configureu el sistema de nomenclatura d&#39;instructor a l&#39;educació&gt; Configuració de l&#39;educació
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,Actualment no hi ha existències disponibles en cap magatzem
,Payment Period Based On Invoice Date,Període de pagament basat en Data de la factura
DocType: Sample Collection,No. of print,Nº d&#39;impressió
@ -3754,12 +3760,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),Deutors ({0})
DocType: Pricing Rule,Margin,Marge
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,Clients Nous
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,Benefici Brut%
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,Benefici Brut%
DocType: Appraisal Goal,Weightage (%),Ponderació (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,Canvieu el perfil de POS
DocType: Bank Reconciliation Detail,Clearance Date,Data Liquidació
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,Informe d&#39;avaluació
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,Compra import brut és obligatori
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,Compra import brut és obligatori
DocType: Lead,Address Desc,Descripció de direcció
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,Part és obligatòria
DocType: Journal Entry,JV-,JV-
@ -3791,7 +3797,6 @@ DocType: Account,Accumulated Depreciation,Depreciació acumulada
DocType: Supplier Scorecard Scoring Standing,Standing Name,Nom estable
DocType: Stock Entry,Customer or Supplier Details,Client o proveïdor Detalls
DocType: Employee Loan Application,Required by Date,Requerit per Data
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),Equilibri de tancament (Dr - Cr)
DocType: Lead,Lead Owner,Responsable del client potencial
DocType: Bin,Requested Quantity,quantitat sol·licitada
DocType: Patient,Marital Status,Estat Civil
@ -3805,7 +3810,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,Variants múltiples
DocType: Sales Invoice,Against Income Account,Contra el Compte d'Ingressos
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% Lliurat
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Article {0}: Quantitat ordenada {1} no pot ser menor que el qty comanda mínima {2} (definit en l&#39;article).
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Article {0}: Quantitat ordenada {1} no pot ser menor que el qty comanda mínima {2} (definit en l&#39;article).
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,Mensual Distribució percentual
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,Inicieu sessió com un altre usuari.
DocType: Territory,Territory Targets,Objectius Territori
@ -3904,7 +3909,7 @@ DocType: Program Enrollment,School House,Casa de l&#39;escola
DocType: Serial No,Out of AMC,Fora d'AMC
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,Nombre de Depreciacions reserva no pot ser més gran que el nombre total d&#39;amortitzacions
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,Feu Manteniment Visita
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,"Si us plau, poseu-vos en contacte amb l'usuari que té vendes Mestre Director de {0} paper"
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,"Si us plau, poseu-vos en contacte amb l'usuari que té vendes Mestre Director de {0} paper"
DocType: Company,Default Cash Account,Compte de Tresoreria predeterminat
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,Companyia (no client o proveïdor) mestre.
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,Això es basa en la presència d&#39;aquest Estudiant
@ -4055,7 +4060,6 @@ DocType: Delivery Note Item,From Warehouse,De Magatzem
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,Cap empleat pels criteris esmentats
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,No hi ha articles amb la llista de materials per a la fabricació de
DocType: Restaurant,Default Customer,Client per defecte
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Configureu el sistema de nomenclatura d&#39;empleats en recursos humans&gt; Configuració de recursos humans
DocType: Assessment Plan,Supervisor Name,Nom del supervisor
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,No confirmeu si es crea una cita per al mateix dia
DocType: Program Enrollment Course,Program Enrollment Course,I matrícula Programa
@ -4173,7 +4177,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,Descripció del lloc web
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,Canvi en el Patrimoni Net
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,El més nou
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,"Si us plau, cancel·lar Factura de Compra {0} primera"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,"Si us plau, cancel·lar Factura de Compra {0} primera"
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","Adreça de correu electrònic ha de ser únic, ja existeix per {0}"
DocType: Serial No,AMC Expiry Date,AMC Data de caducitat
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,rebut
@ -4190,7 +4194,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,Els clients no
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,Estat de fluxos d&#39;efectiu
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},Suma del préstec no pot excedir quantitat màxima del préstec de {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,llicència
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},"Si us plau, elimini aquest Factura {0} de C-Form {1}"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},"Si us plau, elimini aquest Factura {0} de C-Form {1}"
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,Seleccioneu Carry Forward si també voleu incloure el balanç de l'any fiscal anterior deixa a aquest any fiscal
DocType: GL Entry,Against Voucher Type,Contra el val tipus
DocType: Physician,Phone (R),Telèfon (R)
@ -4202,7 +4206,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,B negatiu
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,L&#39;estat de manteniment s&#39;ha de cancel·lar o completar per enviar
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},Compte {0} no pertany a la companyia de {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,Números de sèrie en fila {0} no coincideix amb la nota de lliurament
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,Números de sèrie en fila {0} no coincideix amb la nota de lliurament
DocType: Student,Guardian Details,guardià detalls
DocType: C-Form,C-Form,C-Form
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,Marc d&#39;Assistència per a diversos empleats
@ -4244,7 +4248,7 @@ DocType: Opening Invoice Creation Tool,Sales,Venda
DocType: Stock Entry Detail,Basic Amount,Suma Bàsic
DocType: Training Event,Exam,examen
DocType: Complaint,Complaint,Queixa
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},Magatzem necessari per a l'article d'estoc {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},Magatzem necessari per a l'article d'estoc {0}
DocType: Leave Allocation,Unused leaves,Fulles no utilitzades
DocType: Patient,Alcohol Past Use,Ús del passat alcohòlic
DocType: Fertilizer Content,Fertilizer Content,Contingut d&#39;abonament
@ -4368,6 +4372,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,fórmula
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,Serial #
DocType: Lab Test Template,Lab Test Template,Plantilla de prova de laboratori
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,Compte de vendes
DocType: Purchase Invoice Item,Total Weight,Pes total
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,Comissió de Vendes
DocType: Offer Letter Term,Value / Description,Valor / Descripció
@ -4525,7 +4530,7 @@ Updated via 'Time Log'","en minuts
DocType: Customer,From Lead,De client potencial
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,Comandes llançades per a la producció.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,Seleccioneu l'Any Fiscal ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,POS perfil requerit per fer l&#39;entrada POS
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,POS perfil requerit per fer l&#39;entrada POS
DocType: Program Enrollment Tool,Enroll Students,inscriure els estudiants
DocType: Lab Test,Approved Date,Data aprovada
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,Standard Selling
@ -4601,7 +4606,7 @@ DocType: Employee,Held On,Held On
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,Element Producció
,Employee Information,Informació de l'empleat
DocType: Stock Entry Detail,Additional Cost,Cost addicional
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","Can not filter based on Voucher No, if grouped by Voucher"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","Can not filter based on Voucher No, if grouped by Voucher"
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,Fer Oferta de Proveïdor
DocType: Quality Inspection,Incoming,Entrant
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,Es creen plantilles d&#39;impostos predeterminades per a vendes i compra.
@ -4618,7 +4623,7 @@ DocType: Batch,Batch ID,Identificació de lots
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},Nota: {0}
,Delivery Note Trends,Nota de lliurament Trends
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,Resum de la setmana
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,En estoc Quantitat
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,En estoc Quantitat
DocType: Delivery Trip,Calculate Estimated Arrival Times,Calcular els temps estimats d&#39;arribada
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,El compte: {0} només pot ser actualitzat a través de transaccions d'estoc
DocType: Student Group Creation Tool,Get Courses,obtenir Cursos
@ -4634,7 +4639,7 @@ DocType: Purchase Order,To Bill,Per Bill
DocType: Material Request,% Ordered,Demanem%
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.","Per grup d&#39;alumnes basat curs, aquest serà validat per cada estudiant dels cursos matriculats en el Programa d&#39;Inscripció."
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,Treball a preu fet
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,Quota de compra mitja
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,Quota de compra mitja
DocType: Task,Actual Time (in Hours),Temps real (en hores)
DocType: Employee,History In Company,Història a la Companyia
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},Nou missatge de {sender}
@ -4682,7 +4687,7 @@ DocType: Asset Repair,Asset Repair,Reparació d&#39;actius
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},Fila {0}: Divisa de la llista de materials # {1} ha de ser igual a la moneda seleccionada {2}
DocType: Journal Entry Account,Exchange Rate,Tipus De Canvi
DocType: Patient,Additional information regarding the patient,Informació addicional sobre el pacient
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,Comanda de client {0} no es presenta
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,Comanda de client {0} no es presenta
DocType: Homepage,Tag Line,tag Line
DocType: Fee Component,Fee Component,Quota de components
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,Gestió de Flotes
@ -4894,7 +4899,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,Avaluació de Resulta
DocType: Employee Education,Employee Education,Formació Empleat
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,grup d&#39;articles duplicat trobat en la taula de grup d&#39;articles
DocType: Land Unit,Parent Land Unit,Unitat de terres primàries
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,Es necessita a cercar Detalls de l&#39;article.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,Es necessita a cercar Detalls de l&#39;article.
DocType: Fertilizer,Fertilizer Name,Nom del fertilitzant
DocType: Salary Slip,Net Pay,Pay Net
DocType: Account,Account,Compte
@ -4973,7 +4978,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),Actual Quantitat (en o
DocType: Item Customer Detail,Ref Code,Codi de Referència
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,El Grup de clients es requereix en el perfil de POS
apps/erpnext/erpnext/config/hr.py +12,Employee records.,Registres d'empleats.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,"Si us plau, estableix Següent Depreciació Data"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,"Si us plau, estableix Següent Depreciació Data"
DocType: HR Settings,Payroll Settings,Ajustaments de Nòmines
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,Coincideixen amb les factures i pagaments no vinculats.
DocType: POS Settings,POS Settings,Configuració de la TPV
@ -5140,7 +5145,7 @@ DocType: Item,Customer Code,Codi de Client
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},Recordatori d'aniversari per {0}
DocType: Asset Maintenance Task,Last Completion Date,Última data de finalització
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,Dies des de l'última comanda
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,Dèbit al compte ha de ser un compte de Balanç
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,Dèbit al compte ha de ser un compte de Balanç
DocType: Buying Settings,Naming Series,Sèrie de nomenclatura
DocType: Leave Block List,Leave Block List Name,Deixa Nom Llista de bloqueig
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,data d&#39;inici d&#39;assegurança ha de ser inferior a la data d&#39;Assegurances Fi
@ -5266,6 +5271,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,Obtenir registres de pagament
DocType: Quotation Item,Against Docname,Contra DocName
DocType: SMS Center,All Employee (Active),Tot Empleat (Actiu)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Client&gt; Grup de clients&gt; Territori
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,Veure ara
DocType: BOM,Raw Material Cost,Matèria primera Cost
DocType: Item Reorder,Re-Order Level,Re-Order Nivell
@ -5364,7 +5370,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,nombre de places
DocType: Issue,ISS-,ISS
DocType: Lab Test Groups,Lab Test Groups,Grups de prova de laboratori
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Client&gt; Grup de clients&gt; Territori
DocType: Project,Total Expense Claim (via Expense Claims),Reclamació de Despeses totals (a través de reclamacions de despeses)
DocType: GST Settings,GST Summary,Resum GST
DocType: Assessment Result,Total Score,Puntuació total
@ -5377,7 +5382,7 @@ DocType: Batch,Source Document Type,Font de Tipus de Document
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,Es van crear els horaris dels cursos següents
DocType: Journal Entry,Total Debit,Dèbit total
DocType: Manufacturing Settings,Default Finished Goods Warehouse,Defecte Acabat Productes Magatzem
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,Sales Person
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,Sales Person
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,Pressupost i de centres de cost
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,No es permet el mode de pagament múltiple per defecte
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,per a la
@ -5550,7 +5555,7 @@ DocType: Program,Program Name,Nom del programa
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Consider Tax or Charge for
DocType: Driver,Driving License Category,Categoria de llicència de conducció
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,La quantitat actual és obligatòria
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} té actualment un {1} Quadre de comandament del proveïdor en peu, i les ordres de compra d&#39;aquest proveïdor s&#39;han de fer amb precaució."
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} té actualment un {1} Quadre de comandament del proveïdor en peu, i les ordres de compra d&#39;aquest proveïdor s&#39;han de fer amb precaució."
DocType: Asset Maintenance Team,Asset Maintenance Team,Equip de manteniment d&#39;actius
DocType: Employee Loan,Loan Type,Tipus de préstec
DocType: Scheduling Tool,Scheduling Tool,Eina de programació

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,Lab Předpis
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,Seřadit podle ceny
,Delay Days,Delay Dny
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,Service Expense
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},Sériové číslo: {0} je již uvedeno v prodejní faktuře: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},Sériové číslo: {0} je již uvedeno v prodejní faktuře: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,Faktura
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,Zadejte retenční položku
DocType: Purchase Invoice Item,Item Weight Details,Položka podrobnosti o hmotnosti
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,Parent Detail docname
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","Odkaz: {0}, kód položky: {1} a zákazník: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,Kg
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,Otevření o zaměstnání.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},Kusovník není zadán pro subdodavatelskou položku {0} na řádku {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},Kusovník není zadán pro subdodavatelskou položku {0} na řádku {1}
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} Výsledek byl předložen
DocType: Item Attribute,Increment,Přírůstek
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,Časové rozpětí
@ -150,7 +150,7 @@ DocType: Patient,Married,Ženatý
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},Není dovoleno {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,Položka získaná z
DocType: Price List,Price Not UOM Dependant,Cena není závislá na UOM
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},Sklad nelze aktualizovat na dodací list {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},Sklad nelze aktualizovat na dodací list {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},Produkt {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,Žádné položky nejsou uvedeny
DocType: Asset Repair,Error Description,Popis chyby
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,Srovnat
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,Potraviny
DocType: Quality Inspection Reading,Reading 1,Čtení 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,Penzijní fondy
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,Vedle Odpisy datum nemůže být před zakoupením Datum
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,Vedle Odpisy datum nemůže být před zakoupením Datum
DocType: Crop,Perennial,Trvalka
DocType: Consultation,Consultation Date,Datum konzultace
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,Výpis produktů a objevy pro uživatele ERPNext
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,Odepsat nákladové středisko
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""",například &quot;Základní škola&quot; nebo &quot;univerzita&quot;
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,Stock Reports
DocType: Warehouse,Warehouse Detail,Sklad Detail
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},Úvěrový limit byla překročena o zákazníka {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},Úvěrový limit byla překročena o zákazníka {0} {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,"Termínovaný Datum ukončení nemůže být později než v roce Datum ukončení akademického roku, ke kterému termín je spojena (akademický rok {}). Opravte data a zkuste to znovu."
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","""Je dlouhodobý majetek"" nemůže být nezaškrtnutý protože existuje zápis aktiva oproti této položce"
DocType: Delivery Trip,Departure Time,Čas odjezdu
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,Student Log
DocType: Quality Inspection,Get Specification Details,Získat Specifikace Podrobnosti
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,Šablony dodavatelů.
DocType: Lead,Interested,Zájemci
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,Otvor
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,Otvor
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},Od {0} do {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,Nepodařilo se nastavit daně
DocType: Item,Copy From Item Group,Kopírovat z bodu Group
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,Uvolnění Datum musí být větší než Datum spojování
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,Dovolených za rok
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,"Row {0}: Zkontrolujte ""Je Advance"" proti účtu {1}, pokud je to záloha záznam."
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},Sklad {0} nepatří ke společnosti {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},Sklad {0} nepatří ke společnosti {1}
DocType: Email Digest,Profit & Loss,Ztráta zisku
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,Litr
DocType: Task,Total Costing Amount (via Time Sheet),Celková kalkulace Částka (přes Time Sheet)
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,Cena a částka
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,Toto je založeno na transakcích proti této společnosti. Více informací naleznete v časové ose níže
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Upozornit e-mailem na tvorbu automatických Materiál Poptávka
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,Odolný
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Konzultace
DocType: Journal Entry,Multi Currency,Více měn
DocType: Opening Invoice Creation Tool,Invoice Type,Typ faktury
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,Dodací list
@ -528,7 +529,6 @@ DocType: Email Digest,Credit Balance,Credit Balance
DocType: Employee,Widowed,Ovdovělý
DocType: Request for Quotation,Request for Quotation,Žádost o cenovou nabídku
DocType: Healthcare Settings,Require Lab Test Approval,Požadovat schválení testu laboratoře
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Kód položky&gt; Skupina položek&gt; Značka
DocType: Salary Slip Timesheet,Working Hours,Pracovní doba
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,Naprosto vynikající
DocType: Naming Series,Change the starting / current sequence number of an existing series.,Změnit výchozí / aktuální pořadové číslo existujícího série.
@ -557,7 +557,7 @@ DocType: Subscription,Yearly,Ročně
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,"Prosím, zadejte nákladové středisko"
DocType: Drug Prescription,Dosage,Dávkování
DocType: Journal Entry Account,Sales Order,Prodejní objednávky
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,Avg. Prodej Rate
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,Avg. Prodej Rate
DocType: Assessment Plan,Examiner Name,Jméno Examiner
DocType: Lab Test Template,No Result,Žádný výsledek
DocType: Purchase Invoice Item,Quantity and Rate,Množství a cena
@ -605,6 +605,7 @@ DocType: Employee,Health Concerns,Zdravotní Obavy
DocType: Payroll Entry,Select Payroll Period,Vyberte mzdové
DocType: Purchase Invoice,Unpaid,Nezaplacený
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,Vyhrazeno pro prodej
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,"Prosím, nastavte systém pro pojmenování zaměstnanců v oblasti lidských zdrojů&gt; Nastavení HR"
DocType: Packing Slip,From Package No.,Od č balíčku
DocType: Item Attribute,To Range,K Rozsah
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,Cenné papíry a vklady
@ -629,11 +630,11 @@ DocType: Pricing Rule,Valid Upto,Valid aľ
DocType: Training Event,Workshop,Dílna
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,Upozornění na nákupní objednávky
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,Seznam několik svých zákazníků. Ty by mohly být organizace nebo jednotlivci.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,Dost Části vybudovat
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,Dost Části vybudovat
DocType: POS Profile User,POS Profile User,Uživatel profilu POS
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,Přímý příjmů
DocType: Patient Appointment,Date TIme,Čas schůzky
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","Nelze filtrovat na základě účtu, pokud seskupeny podle účtu"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","Nelze filtrovat na základě účtu, pokud seskupeny podle účtu"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,Správní ředitel
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,Založení společnosti a daně
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,Vyberte možnost Kurz
@ -643,7 +644,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,Rozdíl účtu
DocType: Purchase Invoice,Supplier GSTIN,Dodavatel GSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,"Nelze zavřít úkol, jak jeho závislý úkol {0} není uzavřen."
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,"Prosím, zadejte sklad, který bude materiál žádosti předložené"
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,"Prosím, zadejte sklad, který bude materiál žádosti předložené"
DocType: Production Order,Additional Operating Cost,Další provozní náklady
DocType: Lab Test Template,Lab Routine,Lab Rutine
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,Kosmetika
@ -811,7 +812,7 @@ DocType: Employee,Passport Number,Číslo pasu
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Souvislost s Guardian2
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,Manažer
DocType: Payment Entry,Payment From / To,Platba z / do
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Nový úvěrový limit je nižší než aktuální dlužné částky za zákazníka. Úvěrový limit musí být aspoň {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Nový úvěrový limit je nižší než aktuální dlužné částky za zákazníka. Úvěrový limit musí být aspoň {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},Nastavte prosím účet ve skladu {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,"""Založeno na"" a ""Seskupeno podle"", nemůže být stejné"
DocType: Sales Person,Sales Person Targets,Obchodník cíle
@ -822,7 +823,7 @@ DocType: Lab Test Template,Compound,Sloučenina
DocType: Student Batch Name,Batch Name,Batch Name
DocType: Fee Validity,Max number of visit,Maximální počet návštěv
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,Časového rozvrhu vytvoření:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},Prosím nastavte výchozí v hotovosti nebo bankovním účtu v způsob platby {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},Prosím nastavte výchozí v hotovosti nebo bankovním účtu v způsob platby {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,Zapsat
DocType: GST Settings,GST Settings,Nastavení GST
DocType: Selling Settings,Customer Naming By,Zákazník Pojmenování By
@ -946,7 +947,7 @@ DocType: Delivery Note,Customer's Purchase Order No,Zákazníka Objednávka No
DocType: Budget,Budget Against,rozpočet Proti
DocType: Employee,Cell Number,Číslo buňky
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,"Pro daná kritéria neexistuje žádný zaměstnanec. Zkontrolujte, zda nebyly dosud vytvořeny platové kursy."
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,Žádosti Auto materiál vygenerovaný
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,Žádosti Auto materiál vygenerovaný
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,Ztracený
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,"Nelze zadat aktuální poukaz v ""Proti Zápis do deníku"" sloupci"
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,Vyhrazeno pro výrobu
@ -954,7 +955,7 @@ DocType: Soil Texture,Sand,Písek
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,Energie
DocType: Opportunity,Opportunity From,Příležitost Z
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,Měsíční plat prohlášení.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Řádek {0}: {1} Sériová čísla vyžadovaná pro položku {2}. Poskytli jste {3}.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Řádek {0}: {1} Sériová čísla vyžadovaná pro položku {2}. Poskytli jste {3}.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,Vyberte prosím tabulku
DocType: BOM,Website Specifications,Webových stránek Specifikace
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} je neplatná e-mailová adresa v adresáři &quot;Příjemci&quot;
@ -1042,7 +1043,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,Požadovaná citace
DocType: Vital Signs,Heart Rate / Pulse,Srdeční frekvence / puls
DocType: Company,Default Bank Account,Výchozí Bankovní účet
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","Chcete-li filtrovat na základě Party, vyberte typ Party první"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","Chcete-li filtrovat na základě Party, vyberte typ Party první"
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},"""Aktualizovat sklad' nemůže být zaškrtnuto, protože položky nejsou dodány přes {0}"
DocType: Vehicle,Acquisition Date,akvizice Datum
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,Nos
@ -1066,7 +1067,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),Nahrajte své písmeno hlava (Udržujte web přátelský jako 900 x 100 pixelů)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: Účet {2} nemůže být skupina
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,Položka Row {idx}: {typ_dokumentu} {} DOCNAME neexistuje v předchozím &#39;{typ_dokumentu}&#39; tabulka
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,Časového rozvrhu {0} je již dokončena nebo zrušena
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,Časového rozvrhu {0} je již dokončena nebo zrušena
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,žádné úkoly
DocType: Item Variant Settings,Copy Fields to Variant,Kopírování polí na variantu
DocType: Asset,Opening Accumulated Depreciation,Otevření Oprávky
@ -1178,9 +1179,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,Plán materiál pro podsestavy
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,Obchodní partneři a teritoria
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,BOM {0} musí být aktivní
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),Uzavření (otevření + celkem)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),Uzavření (otevření + celkem)
DocType: Journal Entry,Depreciation Entry,odpisy Entry
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Vyberte první typ dokumentu
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,Tisk v měně účtu
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Zrušit Materiál Návštěvy {0} před zrušením tohoto návštěv údržby
DocType: Crop Cycle,ISO 8016 standard,ISO 8016 standard
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},Pořadové číslo {0} nepatří k bodu {1}
@ -1206,7 +1208,7 @@ DocType: Purchase Receipt,Range,Rozsah
DocType: Supplier,Default Payable Accounts,Výchozí úplatu účty
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,Zaměstnanec {0} není aktivní nebo neexistuje
DocType: Fee Structure,Components,Komponenty
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},"Prosím, zadejte Kategorie majetku v položce {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},"Prosím, zadejte Kategorie majetku v položce {0}"
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,Bod Varianty {0} aktualizováno
DocType: Quality Inspection Reading,Reading 6,Čtení 6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1258,6 +1260,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,Název společnosti
DocType: SMS Center,Total Message(s),Celkem zpráv (y)
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,Vybrat položku pro převod
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Nastavte prosím jmenovací řadu pro {0} přes Nastavení&gt; Nastavení&gt; Pojmenování
DocType: Purchase Invoice,Additional Discount Percentage,Další slevy Procento
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,Zobrazit seznam všech nápovědy videí
DocType: Agriculture Analysis Criteria,Soil Texture,Půdní textury
@ -1285,7 +1288,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,BOM Website Item
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,Nahrajte svůj dopis hlavu a logo. (Můžete je upravit později).
DocType: Timesheet Detail,Bill,Účet
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,Vedle Odpisy Datum se zadává jako uplynulém dni
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,Vedle Odpisy Datum se zadává jako uplynulém dni
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,Bílá
DocType: SMS Center,All Lead (Open),Všechny Lead (Otevřeny)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),Řádek {0}: Množství není k dispozici pro {4} ve skladu {1} při účtování čas vložení údajů ({2} {3})
@ -1301,7 +1304,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,Další Kontakt Datum
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,Otevření POČET
DocType: Healthcare Settings,Appointment Reminder,Připomenutí pro jmenování
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,"Prosím, zadejte účet pro změnu Částka"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,"Prosím, zadejte účet pro změnu Částka"
DocType: Program Enrollment Tool Student,Student Batch Name,Student Batch Name
DocType: Consultation,Doctor,Doktor
DocType: Holiday List,Holiday List Name,Název seznamu dovolené
@ -1317,6 +1320,7 @@ DocType: Patient,Patient Relation,Vztah pacienta
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,Nástroj pro přidělování dovolených
DocType: Item,Hub Category to Publish,Kategorie Hubu k publikování
DocType: Leave Block List,Leave Block List Dates,Nechte Block List termíny
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,"Prosím, nastavte číselnou sérii pro Účast přes Nastavení&gt; Číslovací série"
DocType: Sales Invoice,Billing Address GSTIN,Fakturační adresa GSTIN
DocType: Assessment Plan,Evaluate,Vyhodnoťte
DocType: Workstation,Net Hour Rate,Net Hour Rate
@ -1350,7 +1354,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,Položka příjemky
DocType: Purchase Receipt,PREC-RET-,PREC-RET-
DocType: POS Profile,Sales Invoice Payment,Prodejní faktury Platba
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,Vyhrazeno Warehouse v prodejní objednávky / hotových výrobků Warehouse
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,Prodejní Částka
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,Prodejní Částka
DocType: Repayment Schedule,Interest Amount,Zájem Částka
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,"Jste Expense schvalujícím pro tento záznam. Prosím aktualizujte ""stavu"" a Uložit"
DocType: Serial No,Creation Document No,Tvorba dokument č
@ -1441,7 +1445,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,Otevření účetnictví Balance
,GST Sales Register,Obchodní registr GST
DocType: Sales Invoice Advance,Sales Invoice Advance,Prodejní faktury Advance
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,Nic požadovat
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,Nic požadovat
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,Vyberte své domény
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},Další rekord Rozpočet &#39;{0}&#39; již existuje proti {1} &#39;{2}&#39; za fiskální rok {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,Pole budou kopírovány pouze v době vytváření.
@ -1451,11 +1455,11 @@ DocType: Cheque Print Template,Payer Settings,Nastavení plátce
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","To bude připojen na položku zákoníku varianty. Například, pokud vaše zkratka je ""SM"", a položka je kód ""T-SHIRT"", položka kód varianty bude ""T-SHIRT-SM"""
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,"Čistá Pay (slovy) budou viditelné, jakmile uložíte výplatní pásce."
DocType: Purchase Invoice,Is Return,Je Return
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,Pozor
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,Pozor
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,Return / vrubopis
DocType: Price List Country,Price List Country,Ceník Země
DocType: Item,UOMs,UOMs
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} platí pořadová čísla pro položky {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} platí pořadová čísla pro položky {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Kód položky nemůže být změněn pro Serial No.
DocType: Purchase Invoice Item,UOM Conversion Factor,UOM Conversion Factor
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,"Prosím, zadejte kód položky se dostat číslo šarže"
@ -1559,7 +1563,7 @@ DocType: Journal Entry,Get Outstanding Invoices,Získat neuhrazených faktur
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,Prodejní objednávky {0} není platný
DocType: Supplier Scorecard,Warn for new Request for Quotations,Upozornit na novou žádost o nabídky
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,Objednávky pomohou při plánování a navázat na vašich nákupech
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","Je nám líto, společnosti nemohou být sloučeny"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","Je nám líto, společnosti nemohou být sloučeny"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,Předpisy pro laboratorní testy
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",Celkové emise / přenosu množství {0} v hmotné Request {1} \ nemůže být vyšší než požadované množství {2} pro položku {3}
@ -1597,7 +1601,6 @@ DocType: Vehicle,Fuel UOM,palivo UOM
DocType: Warehouse,Warehouse Contact Info,Sklad Kontaktní informace
DocType: Payment Entry,Write Off Difference Amount,Odepsat Difference Částka
DocType: Volunteer,Volunteer Name,Jméno dobrovolníka
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,"Prosím, nastavte systém pro pojmenování instruktorů ve vzdělání&gt; Nastavení vzdělávání"
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0}: e-mail zaměstnanec nebyl nalezen, a proto je pošta neposlal"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},Pravidlo odeslání se nevztahuje na zemi {0}
DocType: Item,Foreign Trade Details,Zahraniční obchod Podrobnosti
@ -1609,7 +1612,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,Číslo role skupiny
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry","Pro {0}, tak úvěrové účty mohou být propojeny na jinou položku debetní"
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,Součet všech vah úkol by měl být 1. Upravte váhy všech úkolů projektu v souladu
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,Delivery Note {0} není předložena
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,Delivery Note {0} není předložena
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,Položka {0} musí být Subdodavatelské Item
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,Kapitálové Vybavení
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Ceny Pravidlo je nejprve vybrána na základě ""Použít na"" oblasti, které mohou být položky, položky skupiny nebo značky."
@ -1634,7 +1637,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,Dítě sklad existuje pro tento sklad. Nemůžete odstranit tento sklad.
DocType: Item,Website Item Groups,Webové stránky skupiny položek
DocType: Purchase Invoice,Total (Company Currency),Total (Company měny)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,Výrobní číslo {0} přihlášeno více než jednou
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,Výrobní číslo {0} přihlášeno více než jednou
DocType: Journal Entry,Journal Entry,Zápis do deníku
DocType: Expense Claim Advance,Unclaimed amount,Nevyžádaná částka
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} položky v probíhající
@ -1730,7 +1733,7 @@ DocType: Email Digest,For Company,Pro Společnost
apps/erpnext/erpnext/config/support.py +17,Communication log.,Komunikační protokol.
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.",Žádost o cenovou nabídku je zakázán přístup z portálu pro více Zkontrolujte nastavení portálu.
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,Variabilní skóre skóre dodavatele skóre
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,Nákup Částka
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,Nákup Částka
DocType: Sales Invoice,Shipping Address Name,Název dodací adresy
DocType: Material Request,Terms and Conditions Content,Podmínky Content
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,Došlo k chybám při vytváření plánu rozvrhů
@ -1994,7 +1997,7 @@ DocType: Expense Claim,Total Amount Reimbursed,Celkové částky proplacené
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,To je založeno na protokolech proti tomuto vozidlu. Viz časovou osu níže podrobnosti
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},Proti faktuře dodavatele {0} ze dne {1}
DocType: Customer,Default Price List,Výchozí Ceník
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,Záznam Asset Pohyb {0} vytvořil
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,Záznam Asset Pohyb {0} vytvořil
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,Nelze odstranit fiskální rok {0}. Fiskální rok {0} je nastaven jako výchozí v globálním nastavení
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,Zákazník se stejným jménem již existuje
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,Tím bude předkládán výplatní pásky a vytvářet záznamy časového rozvrhu. Chcete pokračovat?
@ -2008,6 +2011,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,Stanovení ceny
DocType: Quotation,Term Details,Termín Podrobnosti
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,Nemůže přihlásit více než {0} studentů na této studentské skupiny.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),Celkem (bez daně)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,Počet vedoucích
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} musí být větší než 0
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,Skladem k dispozici
@ -2026,7 +2030,6 @@ DocType: Lab Test,Technician Name,Jméno technika
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,Odpojit Platba o zrušení faktury
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},Aktuální stavu km vstoupil by měla být větší než počáteční měřiče ujeté vzdálenosti {0}
DocType: Restaurant Reservation,No Show,Žádné vystoupení
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Nastavte prosím jmenovací řadu pro {0} přes Nastavení&gt; Nastavení&gt; Pojmenování
DocType: Shipping Rule Country,Shipping Rule Country,Přepravní Pravidlo Země
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,Nechat docházky
DocType: Maintenance Visit,Partially Completed,Částečně Dokončeno
@ -2117,7 +2120,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,Instruktor skupiny studentů
DocType: Grant Application,Assessment Mark (Out of 10),Známka hodnocení (z 10)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 Mobile Žádné
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,Hlavní
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,Hlavní
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,Varianta
DocType: Naming Series,Set prefix for numbering series on your transactions,Nastavit prefix pro číslování série na vašich transakcí
DocType: Employee Attendance Tool,Employees HTML,zaměstnanci HTML
@ -2165,7 +2168,7 @@ DocType: Crop,Crop Spacing,Rozdělení oříznutí
DocType: Course,Course Abbreviation,Zkratka hřiště
DocType: Student Leave Application,Student Leave Application,Student nechat aplikaci
DocType: Item,Will also apply for variants,Bude platit i pro varianty
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","Asset nelze zrušit, protože je již {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","Asset nelze zrušit, protože je již {0}"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},Zaměstnanec {0} na půl dne na {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},Celkem pracovní doba by neměla být větší než maximální pracovní doby {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,Kdy
@ -2350,9 +2353,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),Skutečné datum ukončení (přes Time Sheet)
DocType: Soil Texture,Soil Type,Typ půdy
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},Množství {0} {1} na {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,Nová zpráva
,Quotation Trends,Uvozovky Trendy
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},Položka Group není uvedeno v položce mistra na položku {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,"Debetní Chcete-li v úvahu, musí být pohledávka účet"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,"Debetní Chcete-li v úvahu, musí být pohledávka účet"
DocType: Shipping Rule,Shipping Amount,Částka - doprava
DocType: Supplier Scorecard Period,Period Score,Skóre období
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,Přidat zákazníky
@ -2363,7 +2367,7 @@ DocType: Purchase Order,Delivered,Dodává
,Vehicle Expenses,Náklady pro auta
DocType: Serial No,Invoice Details,Podrobnosti faktury
DocType: Grant Application,Show on Website,Zobrazit na webu
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},"Očekávané hodnoty po celou dobu životnosti, musí být větší než nebo rovna {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},"Očekávané hodnoty po celou dobu životnosti, musí být větší než nebo rovna {0}"
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,Začněte dál
DocType: Hub Category,Hub Category,Kategorie Hubu
DocType: Purchase Invoice,SEZ,SEZ
@ -2394,7 +2398,7 @@ DocType: Patient,Patient Details,Podrobnosti pacienta
DocType: Patient,B Positive,B Pozitivní
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","Řádek # {0}: Množství musí být 1, když je položka investičního majetku. Prosím použít samostatný řádek pro vícenásobné Mn."
DocType: Leave Block List Allow,Leave Block List Allow,Nechte Block List Povolit
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,Zkratka nemůže být prázdný znak nebo mezera
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,Zkratka nemůže být prázdný znak nebo mezera
DocType: Patient Medical Record,Patient Medical Record,Záznam pacienta
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,Skupina na Non-Group
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,Sportovní
@ -2444,6 +2448,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,Nelze nastavit přijatou RFQ na Žádnou nabídku
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,Celkem Odpočet
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,"Vyberte účet, který chcete vytisknout v měně účtu"
,Production Analytics,výrobní Analytics
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,To je založeno na transakcích proti tomuto pacientovi. Podrobnosti viz časová osa níže
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,Náklady Aktualizováno
@ -2498,7 +2503,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,Nasta
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,Vyberte společnost ...
DocType: Leave Control Panel,Leave blank if considered for all departments,"Ponechte prázdné, pokud se to považuje za všechna oddělení"
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","Druhy pracovního poměru (trvalý, smluv, stážista atd.)"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} je povinná k položce {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} je povinná k položce {1}
DocType: Payroll Entry,Fortnightly,Čtrnáctidenní
DocType: Currency Exchange,From Currency,Od Měny
DocType: Vital Signs,Weight (In Kilogram),Hmotnost (v kilogramech)
@ -2574,7 +2579,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),Základní částka (Com
DocType: Student,Guardians,Guardians
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,"Ceny nebude zobrazeno, pokud Ceník není nastaven"
DocType: Stock Entry,Total Incoming Value,Celková hodnota Příchozí
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,Debetní K je vyžadováno
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,Debetní K je vyžadováno
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Timesheets pomůže udržet přehled o času, nákladů a účtování pro aktivit hotový svého týmu"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,Nákupní Ceník
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,Šablony proměnných tabulky dodavatelů dodavatelů.
@ -2675,7 +2680,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,Pouze orientační.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},Lékař {0} není dostupný v {1}
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,Vyberte číslo šarže
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},Neplatný {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},Neplatný {0}: {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PInv-RET-
DocType: Fee Validity,Reference Inv,Odkaz Inv
@ -2712,8 +2717,8 @@ DocType: Fees,Send Payment Request,Odeslat žádost o platbu
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Zadejte operací, provozní náklady a dávají jedinečnou operaci ne své operace."
DocType: Water Analysis,Origin,Původ
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,Tento dokument je nad hranicí {0} {1} pro položku {4}. Děláte si jiný {3} proti stejné {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,Prosím nastavte opakující se po uložení
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,Vybrat změna výše účet
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,Prosím nastavte opakující se po uložení
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,Vybrat změna výše účet
DocType: Purchase Invoice,Price List Currency,Ceník Měna
DocType: Naming Series,User must always select,Uživatel musí vždy vybrat
DocType: Stock Settings,Allow Negative Stock,Povolit Negativní Sklad
@ -2769,7 +2774,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,Plán údržby
DocType: Supplier Scorecard,Warn for new Purchase Orders,Upozornit na nové nákupní objednávky
DocType: Quality Inspection Reading,Reading 9,Čtení 9
DocType: Supplier,Is Frozen,Je Frozen
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,Uzel skupina sklad není dovoleno vybrat pro transakce
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,Uzel skupina sklad není dovoleno vybrat pro transakce
DocType: Buying Settings,Buying Settings,Nákup Nastavení
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,BOM Ne pro hotový dobré položce
DocType: Upload Attendance,Attendance To Date,Účast na data
@ -2783,6 +2788,7 @@ DocType: Offer Letter,Accepted,Přijato
DocType: Grant Application,Organization,Organizace
DocType: BOM Update Tool,BOM Update Tool,Nástroj pro aktualizaci kusovníku
DocType: SG Creation Tool Course,Student Group Name,Jméno Student Group
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,Zobrazit rozložený pohled
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,Vytváření poplatků
apps/erpnext/erpnext/setup/doctype/company/company.js +91,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.,"Ujistěte se, že opravdu chcete vymazat všechny transakce pro tuto společnost. Vaše kmenová data zůstanou, jak to je. Tuto akci nelze vrátit zpět."
DocType: Room,Room Number,Číslo pokoje
@ -2793,7 +2799,7 @@ DocType: Journal Entry Account,Payroll Entry,Příspěvek mzdy
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,Vytvořte šablonu daní
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,User Forum
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,Suroviny nemůže být prázdný.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","Nelze aktualizovat zásob, faktura obsahuje pokles lodní dopravy zboží."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","Nelze aktualizovat zásob, faktura obsahuje pokles lodní dopravy zboží."
DocType: Lab Test Sample,Lab Test Sample,Laboratorní testovací vzorek
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,Rychlý vstup Journal
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,"Nemůžete změnit sazbu, kdyby BOM zmínil agianst libovolné položky"
@ -2864,7 +2870,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,americký dolar
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,Proveďte faktury
DocType: Selling Settings,Auto close Opportunity after 15 days,Auto v blízkosti Příležitost po 15 dnech
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Příkazy na nákup nejsou pro {0} povoleny kvůli postavení skóre {1}.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Příkazy na nákup nejsou pro {0} povoleny kvůli postavení skóre {1}.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,konec roku
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Quot / Lead%
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,Smlouva Datum ukončení musí být větší než Datum spojování
@ -2976,7 +2982,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90 Nad
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,Řádek # {0}: Journal Entry {1} nemá účet {2} nebo již uzavřeno proti jinému poukazu
DocType: Supplier Scorecard Criteria,Criteria Weight,Kritéria Váha
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Dodavatel&gt; Typ dodavatele
DocType: Buying Settings,Default Buying Price List,Výchozí Nákup Ceník
DocType: Payroll Entry,Salary Slip Based on Timesheet,Plat Slip na základě časového rozvrhu
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,Rychlost nákupu
@ -3064,7 +3069,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,Trasa vede od průmyslu typu.
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,Přejděte na Letterheads
DocType: Item Supplier,Item Supplier,Položka Dodavatel
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,"Prosím, zadejte kód položky se dostat dávku no"
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,"Prosím, zadejte kód položky se dostat dávku no"
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},Vyberte prosím hodnotu pro {0} quotation_to {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,Všechny adresy.
DocType: Company,Stock Settings,Stock Nastavení
@ -3253,6 +3258,7 @@ DocType: Employee Loan,Loan Details,půjčka Podrobnosti
DocType: Company,Default Inventory Account,Výchozí účet inventáře
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,Řádek {0}: Dokončené množství musí být větší než nula.
DocType: Antibiotic,Antibiotic Name,Název antibiotika
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Kód položky&gt; Skupina položek&gt; Značka
DocType: Purchase Invoice,Apply Additional Discount On,Použít dodatečné Sleva na
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,Vyberte typ ...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,"Spojení se všemi pozemními jednotkami, ve kterých rostou"
@ -3446,6 +3452,7 @@ DocType: Guardian Student,Guardian Student,Guardian Student
DocType: Supplier,Credit Limit,Úvěrový limit
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,Průměrné Míra prodejních cen
DocType: Production Plan Sales Order,Salse Order Date,Salse Datum objednávky
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Dodavatel&gt; Typ dodavatele
DocType: Salary Component,Salary Component,plat Component
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,Platební Příspěvky {0} jsou un-spojený
DocType: GL Entry,Voucher No,Voucher No
@ -3454,7 +3461,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,Nejoblíbenějš
DocType: Leave Allocation,Leave Allocation,Přidelení dovolené
DocType: Payment Request,Recipient Message And Payment Details,Příjemce zprávy a platebních informací
DocType: Training Event,Trainer Email,trenér Email
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,Materiál Žádosti {0} vytvořené
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,Materiál Žádosti {0} vytvořené
DocType: Restaurant Reservation,No of People,Počet lidí
DocType: Production Planning Tool,Include sub-contracted raw materials,Zahrnout sub-smluvní suroviny
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,Šablona podmínek nebo smlouvy.
@ -3518,7 +3525,7 @@ DocType: Landed Cost Item,Receipt Document,příjem dokumentů
DocType: Production Planning Tool,Create Material Requests,Vytvořit požadavek na materiál
DocType: Employee Education,School/University,Škola / University
DocType: Payment Request,Reference Details,Odkaz Podrobnosti
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,Očekávaná hodnota Po celou dobu životnosti musí být menší než Gross částky nákupu
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,Očekávaná hodnota Po celou dobu životnosti musí být menší než Gross částky nákupu
DocType: Sales Invoice Item,Available Qty at Warehouse,Množství k dispozici na skladu
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,Fakturovaná částka
DocType: Asset,Double Declining Balance,Double degresivní
@ -3530,7 +3537,7 @@ DocType: Attendance,On Leave,Na odchodu
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,Získat aktualizace
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: Účet {2} nepatří do společnosti {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,Vyberte alespoň jednu hodnotu z každého atributu.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,Materiál Request {0} je zrušena nebo zastavena
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,Materiál Request {0} je zrušena nebo zastavena
apps/erpnext/erpnext/config/hr.py +310,Leave Management,Správa absencí
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,Seskupit podle účtu
DocType: Sales Order,Fully Delivered,Plně Dodáno
@ -3541,14 +3548,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},Zaplacené částky nemůže být větší než Výše úvěru {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,Přejděte na položku Programy
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},"Řádek {0} # Přidělená částka {1} nemůže být vyšší než částka, která nebyla požadována. {2}"
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,"Prosím, nastavte číselnou sérii pro Účast přes Nastavení&gt; Číslovací série"
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},Číslo vydané objednávky je potřebné k položce {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,Výrobní příkaz nebyl vytvořen
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"""Datum DO"" musí být po ""Datum OD"""
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},Nemůže změnit statut studenta {0} je propojen s aplikací studentské {1}
DocType: Asset,Fully Depreciated,plně odepsán
,Stock Projected Qty,Reklamní Plánovaná POČET
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},Zákazník {0} nepatří k projektu {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},Zákazník {0} nepatří k projektu {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,Výrazná Účast HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers","Citace jsou návrhy, nabídky jste svým zákazníkům odeslané"
DocType: Sales Order,Customer's Purchase Order,Zákazníka Objednávka
@ -3632,7 +3638,7 @@ DocType: Salary Slip,Hour Rate,Hour Rate
DocType: Stock Settings,Item Naming By,Položka Pojmenování By
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},Další období Uzávěrka Entry {0} byla podána po {1}
DocType: Production Order,Material Transferred for Manufacturing,Materiál Přenesená pro výrobu
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,Účet {0} neexistuje
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,Účet {0} neexistuje
DocType: Project,Project Type,Typ projektu
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,Dětská úloha existuje pro tuto úlohu. Tuto úlohu nelze odstranit.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,Buď cílové množství nebo cílová částka je povinná.
@ -3734,11 +3740,11 @@ DocType: C-Form,I,já
DocType: Company,Asset Depreciation Cost Center,Asset Odpisy nákladového střediska
DocType: Sales Order Item,Sales Order Date,Prodejní objednávky Datum
DocType: Sales Invoice Item,Delivered Qty,Dodává Množství
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,Celkem Excl. Daň
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","Zda zaškrtnuto, vypíše včetně stromu každé výrobní položky v požadavku materiálu."
DocType: Assessment Plan,Assessment Plan,Plan Assessment
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,Zákazník {0} je vytvořen.
DocType: Stock Settings,Limit Percent,Limit Procento
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,"Prosím, nastavte systém pro pojmenování instruktorů ve vzdělání&gt; Nastavení vzdělávání"
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,V současné době žádné skladové zásoby nejsou k dispozici
,Payment Period Based On Invoice Date,Platební období na základě data vystavení faktury
DocType: Sample Collection,No. of print,Počet tisku
@ -3754,12 +3760,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),Dlužníci ({0})
DocType: Pricing Rule,Margin,Marže
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,Noví zákazníci
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,Hrubý Zisk %
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,Hrubý Zisk %
DocType: Appraisal Goal,Weightage (%),Weightage (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,Změňte profil POS
DocType: Bank Reconciliation Detail,Clearance Date,Výprodej Datum
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,Zpráva o hodnocení
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,Gross Částka nákupu je povinná
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,Gross Částka nákupu je povinná
DocType: Lead,Address Desc,Popis adresy
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,Party je povinná
DocType: Journal Entry,JV-,JV-
@ -3791,7 +3797,6 @@ DocType: Account,Accumulated Depreciation,oprávky
DocType: Supplier Scorecard Scoring Standing,Standing Name,Stálé jméno
DocType: Stock Entry,Customer or Supplier Details,Zákazníka nebo dodavatele Podrobnosti
DocType: Employee Loan Application,Required by Date,Vyžadováno podle data
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),Závěrečný zůstatek (Dr - Cr)
DocType: Lead,Lead Owner,Majitel leadu
DocType: Bin,Requested Quantity,Požadované množství
DocType: Patient,Marital Status,Rodinný stav
@ -3805,7 +3810,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,Více variant
DocType: Sales Invoice,Against Income Account,Proti účet příjmů
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% dodáno
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Položka {0}: Objednané množství {1} nemůže být nižší než minimální Objednané množství {2} (definované v bodu).
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Položka {0}: Objednané množství {1} nemůže být nižší než minimální Objednané množství {2} (definované v bodu).
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,Měsíční Distribution Procento
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,Přihlaste se jako další uživatel.
DocType: Territory,Territory Targets,Území Cíle
@ -3904,7 +3909,7 @@ DocType: Program Enrollment,School House,School House
DocType: Serial No,Out of AMC,Out of AMC
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,Počet Odpisy rezervováno nemůže být větší než celkový počet Odpisy
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,Proveďte návštěv údržby
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,"Prosím, kontaktujte pro uživatele, kteří mají obchodní manažer ve skupině Master {0} roli"
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,"Prosím, kontaktujte pro uživatele, kteří mají obchodní manažer ve skupině Master {0} roli"
DocType: Company,Default Cash Account,Výchozí Peněžní účet
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,Company (nikoliv zákazník nebo dodavatel) master.
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,To je založeno na účasti tohoto studenta
@ -4054,7 +4059,6 @@ DocType: Delivery Note Item,From Warehouse,Ze skladu
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,Žádní zaměstnanci nesplnili uvedená kritéria
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,Žádné položky s Billem materiálů k výrobě
DocType: Restaurant,Default Customer,Výchozí zákazník
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,"Prosím, nastavte systém pro pojmenování zaměstnanců v oblasti lidských zdrojů&gt; Nastavení HR"
DocType: Assessment Plan,Supervisor Name,Jméno Supervisor
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,"Nepotvrzujte, zda je událost vytvořena ve stejný den"
DocType: Program Enrollment Course,Program Enrollment Course,Program pro zápis do programu
@ -4172,7 +4176,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,Popis webu
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,Čistá změna ve vlastním kapitálu
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,Nejnovější
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,Zrušte faktuře {0} první
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,Zrušte faktuře {0} první
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","E-mailová adresa musí být jedinečná, již existuje pro {0}"
DocType: Serial No,AMC Expiry Date,AMC Datum vypršení platnosti
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,Příjem
@ -4189,7 +4193,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,Zatím žádn
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,Přehled o peněžních tocích
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},Výše úvěru nesmí být vyšší než Maximální výše úvěru částku {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,Licence
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},Odeberte Tato faktura {0} z C-Form {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},Odeberte Tato faktura {0} z C-Form {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,"Prosím, vyberte převádět pokud chcete také zahrnout uplynulý fiskální rok bilance listy tohoto fiskálního roku"
DocType: GL Entry,Against Voucher Type,Proti poukazu typu
DocType: Physician,Phone (R),Telefon (R)
@ -4201,7 +4205,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,B Negativní
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,Stav údržby musí být zrušen nebo dokončen k odeslání
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},Účet {0} nepatří společnosti {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,Sériová čísla v řádku {0} neodpovídají poznámce k doručení
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,Sériová čísla v řádku {0} neodpovídají poznámce k doručení
DocType: Student,Guardian Details,Guardian Podrobnosti
DocType: C-Form,C-Form,C-Form
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,Mark docházky pro více zaměstnanců
@ -4243,7 +4247,7 @@ DocType: Opening Invoice Creation Tool,Sales,Prodej
DocType: Stock Entry Detail,Basic Amount,Základní částka
DocType: Training Event,Exam,Zkouška
DocType: Complaint,Complaint,Stížnost
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},Sklad je vyžadován pro skladovou položku {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},Sklad je vyžadován pro skladovou položku {0}
DocType: Leave Allocation,Unused leaves,Nepoužité listy
DocType: Patient,Alcohol Past Use,Alkohol v minulosti
DocType: Fertilizer Content,Fertilizer Content,Obsah hnojiv
@ -4366,6 +4370,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,Vzorec
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,Serial #
DocType: Lab Test Template,Lab Test Template,Šablona zkušebního laboratoře
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,Prodejní účet
DocType: Purchase Invoice Item,Total Weight,Celková váha
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,Provize z prodeje
DocType: Offer Letter Term,Value / Description,Hodnota / Popis
@ -4523,7 +4528,7 @@ Updated via 'Time Log'","v minutách
DocType: Customer,From Lead,Od Leadu
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,Objednávky uvolněna pro výrobu.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,Vyberte fiskálního roku ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,"POS Profile požadováno, aby POS Vstup"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,"POS Profile požadováno, aby POS Vstup"
DocType: Program Enrollment Tool,Enroll Students,zapsat studenti
DocType: Lab Test,Approved Date,Datum schválení
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,Standardní prodejní
@ -4599,7 +4604,7 @@ DocType: Employee,Held On,Které se konalo dne
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,Výrobní položka
,Employee Information,Informace o zaměstnanci
DocType: Stock Entry Detail,Additional Cost,Dodatečné náklady
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","Nelze filtrovat na základě poukazu ne, pokud seskupeny podle poukazu"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","Nelze filtrovat na základě poukazu ne, pokud seskupeny podle poukazu"
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,Vytvořit nabídku dodavatele
DocType: Quality Inspection,Incoming,Přicházející
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,Výchozí daňové šablony pro prodej a nákup jsou vytvořeny.
@ -4616,7 +4621,7 @@ DocType: Batch,Batch ID,Šarže ID
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},Poznámka: {0}
,Delivery Note Trends,Dodací list Trendy
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,Tento týden Shrnutí
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,Na skladě Množství
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,Na skladě Množství
DocType: Delivery Trip,Calculate Estimated Arrival Times,Vypočítat odhadované časy příjezdu
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,Účet: {0} lze aktualizovat pouze prostřednictvím Skladových Transakcí
DocType: Student Group Creation Tool,Get Courses,Získat kurzy
@ -4632,7 +4637,7 @@ DocType: Purchase Order,To Bill,Billa
DocType: Material Request,% Ordered,% objednáno
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.",Pro kurzovou studentskou skupinu bude kurz pro každého studenta ověřen z přihlášených kurzů při zápisu do programu.
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,Úkolová práce
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,Avg. Nákup Rate
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,Avg. Nákup Rate
DocType: Task,Actual Time (in Hours),Skutečná doba (v hodinách)
DocType: Employee,History In Company,Historie ve Společnosti
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},Nová zpráva od {odesílatele}
@ -4680,7 +4685,7 @@ DocType: Asset Repair,Asset Repair,Opravy aktiv
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},Řádek {0}: Měna BOM # {1} by se měla rovnat vybrané měně {2}
DocType: Journal Entry Account,Exchange Rate,Exchange Rate
DocType: Patient,Additional information regarding the patient,Další informace týkající se pacienta
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,Prodejní objednávky {0} není předložena
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,Prodejní objednávky {0} není předložena
DocType: Homepage,Tag Line,tag linka
DocType: Fee Component,Fee Component,poplatek Component
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,Fleet management
@ -4892,7 +4897,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,Posuzování Detail V
DocType: Employee Education,Employee Education,Vzdělávání zaměstnanců
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,Duplicitní skupinu položek uvedeny v tabulce na položku ve skupině
DocType: Land Unit,Parent Land Unit,Rodičovská jednotka
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,"Je třeba, aby přinesla Detaily položky."
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,"Je třeba, aby přinesla Detaily položky."
DocType: Fertilizer,Fertilizer Name,Jméno hnojiva
DocType: Salary Slip,Net Pay,Net Pay
DocType: Account,Account,Účet
@ -4971,7 +4976,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),Skutečné množství
DocType: Item Customer Detail,Ref Code,Ref Code
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,Zákaznická skupina je vyžadována v POS profilu
apps/erpnext/erpnext/config/hr.py +12,Employee records.,Zaměstnanecké záznamy.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,"Prosím, stojí vedle odpisů Datum"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,"Prosím, stojí vedle odpisů Datum"
DocType: HR Settings,Payroll Settings,Nastavení Mzdové
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,Zápas Nepropojený fakturách a platbách.
DocType: POS Settings,POS Settings,Nastavení POS
@ -5138,7 +5143,7 @@ DocType: Item,Customer Code,Code zákazníků
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},Narozeninová připomínka pro {0}
DocType: Asset Maintenance Task,Last Completion Date,Poslední datum dokončení
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,Počet dnů od poslední objednávky
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,Debetní Na účet musí být účtu Rozvaha
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,Debetní Na účet musí být účtu Rozvaha
DocType: Buying Settings,Naming Series,Číselné řady
DocType: Leave Block List,Leave Block List Name,Nechte Jméno Block List
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,Datum pojištění startu by měla být menší než pojištění koncovým datem
@ -5265,6 +5270,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,Získat Platební položky
DocType: Quotation Item,Against Docname,Proti Docname
DocType: SMS Center,All Employee (Active),Všichni zaměstnanci (Aktivní)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Zákazník&gt; Skupina zákazníků&gt; Území
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,Zobrazit nyní
DocType: BOM,Raw Material Cost,Cena surovin
DocType: Item Reorder,Re-Order Level,Úroveň pro znovuobjednání
@ -5363,7 +5369,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,Počet míst k sezení
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,Laboratorní testovací skupiny
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Zákazník&gt; Skupina zákazníků&gt; Území
DocType: Project,Total Expense Claim (via Expense Claims),Total Expense Claim (via Expense nároků)
DocType: GST Settings,GST Summary,Souhrn GST
DocType: Assessment Result,Total Score,Celkové skóre
@ -5376,7 +5381,7 @@ DocType: Batch,Source Document Type,Zdrojový typ dokumentu
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,Byly vytvořeny následující kurzy
DocType: Journal Entry,Total Debit,Celkem Debit
DocType: Manufacturing Settings,Default Finished Goods Warehouse,Výchozí sklad hotových výrobků
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,Prodej Osoba
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,Prodej Osoba
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,Rozpočet a nákladového střediska
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,Vícenásobný výchozí způsob platby není povolen
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,pro
@ -5549,7 +5554,7 @@ DocType: Program,Program Name,Název programu
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Zvažte daň či poplatek za
DocType: Driver,Driving License Category,Kategorie řidičských oprávnění
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,Skutečné Množství je povinné
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0} v současné době disponuje {1} hodnotící tabulkou dodavatelů a objednávky na nákup tohoto dodavatele by měly být vydány s opatrností.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0} v současné době disponuje {1} hodnotící tabulkou dodavatelů a objednávky na nákup tohoto dodavatele by měly být vydány s opatrností.
DocType: Asset Maintenance Team,Asset Maintenance Team,Tým pro údržbu aktiv
DocType: Employee Loan,Loan Type,Typ úvěru
DocType: Scheduling Tool,Scheduling Tool,Plánování Tool

Can't render this file because it is too large.

View File

@ -6,7 +6,7 @@ DocType: Purchase Order,% Billed,% Billed
,Lead Id,Bly Id
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +71,'Total','Total'
DocType: Selling Settings,Selling Settings,Salg af indstillinger
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,Selling Beløb
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,Selling Beløb
apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +192,Lead must be set if Opportunity is made from Lead,"Bly skal indstilles, hvis Opportunity er lavet af Lead"
DocType: Item,Default Selling Cost Center,Standard Selling Cost center
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90-Above

1 apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +115 'Opening' 'Åbning'
6 Lead Id Bly Id
7 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +71 'Total' 'Total'
8 DocType: Selling Settings Selling Settings Salg af indstillinger
9 apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72 apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71 Selling Amount Selling Beløb
10 apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +192 Lead must be set if Opportunity is made from Lead Bly skal indstilles, hvis Opportunity er lavet af Lead
11 DocType: Item Default Selling Cost Center Standard Selling Cost center
12 apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64 90-Above 90-Above

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,Lab Prescription
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,Sorter efter Pris
,Delay Days,Forsinkelsesdage
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,tjenesten Expense
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},Serienummer: {0} er allerede refereret i salgsfaktura: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},Serienummer: {0} er allerede refereret i salgsfaktura: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,Faktura
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,Lav retention lager indgang
DocType: Purchase Invoice Item,Item Weight Details,Vægt Vægt Detaljer
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,Parent Detail docname
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","Reference: {0}, varekode: {1} og kunde: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,Kg
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,Rekruttering
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},BOM er ikke specificeret til underleverancer punkt {0} i række {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},BOM er ikke specificeret til underleverancer punkt {0} i række {1}
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} Resultat indsendt
DocType: Item Attribute,Increment,Tilvækst
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,Tidsperiode
@ -150,7 +150,7 @@ DocType: Patient,Married,Gift
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},Ikke tilladt for {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,Hent varer fra
DocType: Price List,Price Not UOM Dependant,Pris Ikke UOM Afhængig
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},Lager kan ikke opdateres mod følgeseddel {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},Lager kan ikke opdateres mod følgeseddel {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},Produkt {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,Ingen emner opført
DocType: Asset Repair,Error Description,Fejlbeskrivelse
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,Forene
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,Købmand
DocType: Quality Inspection Reading,Reading 1,Læsning 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,Pensionskasser
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,Næste afskrivningsdato kan ikke være før købsdatoen
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,Næste afskrivningsdato kan ikke være før købsdatoen
DocType: Crop,Perennial,Perennial
DocType: Consultation,Consultation Date,Høringsdato
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,Produktliste og opdagelse for ERPNext-brugere
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,Afskriv omkostningssted
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""",fx &quot;Primary School&quot; eller &quot;University&quot;
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,Stock Rapporter
DocType: Warehouse,Warehouse Detail,Lagerinformation
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},Credit grænsen er krydset for kunde {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},Credit grænsen er krydset for kunde {0} {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,"Den Term Slutdato kan ikke være senere end året Slutdato af skoleåret, som udtrykket er forbundet (Studieår {}). Ret de datoer og prøv igen."
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","""Er anlægsaktiv"" kan ikke være umarkeret, da der eksisterer et anlægsaktiv på varen"
DocType: Delivery Trip,Departure Time,Afgangstid
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,Student Log
DocType: Quality Inspection,Get Specification Details,Hent specifikationer
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,Skabeloner af leverandørplaceringer.
DocType: Lead,Interested,Interesseret
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,Åbning
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,Åbning
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},Fra {0} til {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,Kunne ikke oprette skatter
DocType: Item,Copy From Item Group,Kopier fra varegruppe
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,Fratrædelsesdato skal være større end ansættelsesdato
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,Fravær pr. år
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,"Række {0}: Tjek venligst &quot;Er Advance &#39;mod konto {1}, hvis dette er et forskud post."
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},Lager {0} ikke hører til firmaet {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},Lager {0} ikke hører til firmaet {1}
DocType: Email Digest,Profit & Loss,Profit &amp; Loss
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,liter
DocType: Task,Total Costing Amount (via Time Sheet),Totale omkostninger (via tidsregistrering)
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,Pris &amp; Beløb
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,Dette er baseret på transaktioner mod denne virksomhed. Se tidslinjen nedenfor for detaljer
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Give besked på e-mail om oprettelse af automatiske materialeanmodninger
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,Resistente
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Consultationt
DocType: Journal Entry,Multi Currency,Multi Valuta
DocType: Opening Invoice Creation Tool,Invoice Type,Fakturatype
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,Følgeseddel
@ -528,7 +529,6 @@ DocType: Email Digest,Credit Balance,Kreditsaldo
DocType: Employee,Widowed,Enke
DocType: Request for Quotation,Request for Quotation,Anmodning om tilbud
DocType: Healthcare Settings,Require Lab Test Approval,Kræv labtestgodkendelse
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Varenummer&gt; Varegruppe&gt; Mærke
DocType: Salary Slip Timesheet,Working Hours,Arbejdstider
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,Samlet Udestående
DocType: Naming Series,Change the starting / current sequence number of an existing series.,Skift start / aktuelle sekvensnummer af en eksisterende serie.
@ -557,7 +557,7 @@ DocType: Subscription,Yearly,Årlig
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,Indtast omkostningssted
DocType: Drug Prescription,Dosage,Dosering
DocType: Journal Entry Account,Sales Order,Salgsordre
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,Gns. Salgssats
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,Gns. Salgssats
DocType: Assessment Plan,Examiner Name,Censornavn
DocType: Lab Test Template,No Result,ingen Resultat
DocType: Purchase Invoice Item,Quantity and Rate,Mængde og Pris
@ -605,6 +605,7 @@ DocType: Employee,Health Concerns,Sundhedsmæssige betænkeligheder
DocType: Payroll Entry,Select Payroll Period,Vælg Lønperiode
DocType: Purchase Invoice,Unpaid,Åben
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,Reserveret til salg
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Opsæt venligst medarbejdernavnesystem i menneskelige ressourcer&gt; HR-indstillinger
DocType: Packing Slip,From Package No.,Fra pakkenr.
DocType: Item Attribute,To Range,At Rækkevidde
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,Værdipapirer og Indlån
@ -629,11 +630,11 @@ DocType: Pricing Rule,Valid Upto,Gyldig til
DocType: Training Event,Workshop,Værksted
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,Advarer indkøbsordrer
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,Nævn et par af dine kunder. Disse kunne være firmaer eller privatpersoner.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,Nok Dele til Build
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,Nok Dele til Build
DocType: POS Profile User,POS Profile User,POS profil bruger
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,Direkte indkomst
DocType: Patient Appointment,Date TIme,Dato Tid
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","Kan ikke filtrere baseret på konto, hvis grupperet efter konto"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","Kan ikke filtrere baseret på konto, hvis grupperet efter konto"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,Kontorfuldmægtig
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,Opsætning af selskab og skatter
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,Vælg kursus
@ -643,7 +644,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,Differencekonto
DocType: Purchase Invoice,Supplier GSTIN,Leverandør GSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,"Opgaven kan ikke lukkes, da dens afhængige opgave {0} ikke er lukket."
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,Indtast venligst lager for hvilket materialeanmodning vil blive rejst
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,Indtast venligst lager for hvilket materialeanmodning vil blive rejst
DocType: Production Order,Additional Operating Cost,Yderligere driftsomkostninger
DocType: Lab Test Template,Lab Routine,Lab Rutine
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,Kosmetik
@ -811,7 +812,7 @@ DocType: Employee,Passport Number,Pasnummer
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Forholdet til Guardian2
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,Leder
DocType: Payment Entry,Payment From / To,Betaling fra/til
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Ny kreditmaksimum er mindre end nuværende udestående beløb for kunden. Credit grænse skal være mindst {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Ny kreditmaksimum er mindre end nuværende udestående beløb for kunden. Credit grænse skal være mindst {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},Venligst indstil konto i lager {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,'Baseret på' og 'Sortér efter ' ikke kan være samme
DocType: Sales Person,Sales Person Targets,Salgs person Mål
@ -822,7 +823,7 @@ DocType: Lab Test Template,Compound,Forbindelse
DocType: Student Batch Name,Batch Name,Partinavn
DocType: Fee Validity,Max number of visit,Maks antal besøg
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,Timeseddel oprettet:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},Indstil standard Kontant eller bank konto i mode for betaling {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},Indstil standard Kontant eller bank konto i mode for betaling {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,Indskrive
DocType: GST Settings,GST Settings,GST-indstillinger
DocType: Selling Settings,Customer Naming By,Kundenavngivning af
@ -946,7 +947,7 @@ DocType: Delivery Note,Customer's Purchase Order No,Kundens indkøbsordrenr.
DocType: Budget,Budget Against,Budget Against
DocType: Employee,Cell Number,Mobiltelefonnr.
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,"Der er ingen medarbejder for de givne kriterier. Kontroller, at Lønningslister ikke allerede er oprettet."
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,Automatisk materialeanmodning dannet
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,Automatisk materialeanmodning dannet
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,Tabt
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,"Du kan ikke indtaste det aktuelle bilag i ""Mod Kassekladde 'kolonne"
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,Reserveret til fremstilling
@ -954,7 +955,7 @@ DocType: Soil Texture,Sand,Sand
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,Energi
DocType: Opportunity,Opportunity From,Salgsmulighed fra
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,Månedlige lønseddel.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Række {0}: {1} Serienumre er nødvendige for punkt {2}. Du har angivet {3}.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Række {0}: {1} Serienumre er nødvendige for punkt {2}. Du har angivet {3}.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,Vælg venligst en tabel
DocType: BOM,Website Specifications,Website Specifikationer
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} er en ugyldig e-mail-adresse i &#39;Modtagere&#39;
@ -1023,7 +1024,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,Citat krævet
DocType: Vital Signs,Heart Rate / Pulse,Hjertefrekvens / puls
DocType: Company,Default Bank Account,Standard bankkonto
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","Hvis du vil filtrere baseret på Party, skal du vælge Party Type først"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","Hvis du vil filtrere baseret på Party, skal du vælge Party Type først"
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},"'Opdater lager' kan ikke markeres, fordi varerne ikke leveres via {0}"
DocType: Vehicle,Acquisition Date,Erhvervelsesdato
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,Nummerserie
@ -1047,7 +1048,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),Upload dit brevhoved (Hold det webvenligt som 900px ved 100px)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: Konto {2} kan ikke være en gruppe
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,Item Row {IDX}: {doctype} {DOCNAME} findes ikke i ovenstående &#39;{doctype}&#39; tabel
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,Tidsregistreringskladde {0} er allerede afsluttet eller annulleret
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,Tidsregistreringskladde {0} er allerede afsluttet eller annulleret
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,Ingen opgaver
DocType: Item Variant Settings,Copy Fields to Variant,Kopier felt til variant
DocType: Asset,Opening Accumulated Depreciation,Åbning Akkumulerede afskrivninger
@ -1159,9 +1160,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,Plan materiale til sub-enheder
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,Forhandlere og områder
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,Stykliste {0} skal være aktiv
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),Lukning (Åbning + I alt)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),Lukning (Åbning + I alt)
DocType: Journal Entry,Depreciation Entry,Afskrivninger indtastning
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Vælg dokumenttypen først
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,Udskriv i Konto Valuta
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,"Annuller Materiale Besøg {0}, før den annullerer denne vedligeholdelse Besøg"
DocType: Crop Cycle,ISO 8016 standard,ISO 8016 standard
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},Serienummer {0} hører ikke til vare {1}
@ -1187,7 +1189,7 @@ DocType: Purchase Receipt,Range,Periode
DocType: Supplier,Default Payable Accounts,Standard betales Konti
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,Medarbejder {0} er ikke aktiv eller findes ikke
DocType: Fee Structure,Components,Lønarter
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},Indtast Asset kategori i Item {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},Indtast Asset kategori i Item {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,Item Varianter {0} opdateret
DocType: Quality Inspection Reading,Reading 6,Læsning 6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1239,6 +1241,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,Firmaets navn
DocType: SMS Center,Total Message(s),Besked (er) i alt
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,Vælg Item for Transfer
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Indstil navngivningsserien for {0} via Setup&gt; Settings&gt; Naming Series
DocType: Purchase Invoice,Additional Discount Percentage,Ekstra rabatprocent
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,Se en liste over alle hjælpevideoerne
DocType: Agriculture Analysis Criteria,Soil Texture,Jordstruktur
@ -1266,7 +1269,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,BOM Website Item
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,Upload dit brevhoved og logo. (Du kan redigere dem senere).
DocType: Timesheet Detail,Bill,Faktureres
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,Næste afskrivningsdato er indtastet som tidligere dato
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,Næste afskrivningsdato er indtastet som tidligere dato
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,Hvid
DocType: SMS Center,All Lead (Open),Alle emner (åbne)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),Række {0}: Antal ikke tilgængelig for {4} i lageret {1} på udstationering tid af posten ({2} {3})
@ -1282,7 +1285,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,Næste kontakt d.
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,Åbning Antal
DocType: Healthcare Settings,Appointment Reminder,Aftalens påmindelse
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,Indtast konto for returbeløb
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,Indtast konto for returbeløb
DocType: Program Enrollment Tool Student,Student Batch Name,Elevgruppenavn
DocType: Consultation,Doctor,Læge
DocType: Holiday List,Holiday List Name,Helligdagskalendernavn
@ -1298,6 +1301,7 @@ DocType: Patient,Patient Relation,Patientrelation
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,Fraværstildelingsværktøj
DocType: Item,Hub Category to Publish,Hub kategori til udgivelse
DocType: Leave Block List,Leave Block List Dates,Fraværsblokeringsdatoer
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Venligst opsæt nummereringsserier for Tilstedeværelse via Opsætning&gt; Nummereringsserie
DocType: Sales Invoice,Billing Address GSTIN,Faktureringsadresse GSTIN
DocType: Assessment Plan,Evaluate,Vurdere
DocType: Workstation,Net Hour Rate,Netto timeløn
@ -1331,7 +1335,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,Købskvittering vare
DocType: Purchase Receipt,PREC-RET-,PREC-Retsinformation
DocType: POS Profile,Sales Invoice Payment,Salgsfakturabetaling
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,Reserveret Warehouse i kundeordre / færdigvarer Warehouse
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,Salgsbeløb
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,Salgsbeløb
DocType: Repayment Schedule,Interest Amount,Renter Beløb
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,"Du er udlægsgodkender til denne oplysning. Opdater ""Status"" og gem"
DocType: Serial No,Creation Document No,Oprettet med dok.-nr.
@ -1422,7 +1426,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,Åbning Regnskab Balance
,GST Sales Register,GST salgsregistrering
DocType: Sales Invoice Advance,Sales Invoice Advance,Salgsfaktura Advance
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,Intet at anmode om
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,Intet at anmode om
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,Vælg dine domæner
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},En anden Budget rekord &#39;{0}&#39; findes allerede mod {1} &#39;{2}&#39; for regnskabsåret {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,Felter vil blive kopieret over kun på tidspunktet for oprettelsen.
@ -1432,11 +1436,11 @@ DocType: Cheque Print Template,Payer Settings,payer Indstillinger
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","Dette vil blive føjet til varen af varianten. For eksempel, hvis dit forkortelse er ""SM"", og varenummeret er ""T-SHIRT"", så vil variantens varenummer blive ""T-SHIRT-SM"""
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,"Nettoløn (i ord) vil være synlig, når du gemmer lønsedlen."
DocType: Purchase Invoice,Is Return,Er Return
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,Advarsel
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,Advarsel
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,Retur / debetnota
DocType: Price List Country,Price List Country,Prislisteland
DocType: Item,UOMs,Enheder
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} gyldige serienumre for vare {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} gyldige serienumre for vare {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Varenr. kan ikke ændres for Serienummer
DocType: Purchase Invoice Item,UOM Conversion Factor,UOM Conversion Factor
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,Indtast venligst varenr. for at få partinr.
@ -1540,7 +1544,7 @@ DocType: Journal Entry,Get Outstanding Invoices,Hent åbne fakturaer
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,Salgsordre {0} er ikke gyldig
DocType: Supplier Scorecard,Warn for new Request for Quotations,Advar om ny anmodning om tilbud
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,Indkøbsordrer hjælpe dig med at planlægge og følge op på dine køb
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","Beklager, kan virksomhederne ikke slås sammen"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","Beklager, kan virksomhederne ikke slås sammen"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,Lab Test Prescriptions
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",Den samlede overførselsmængde {0} i materialeanmodning {1} \ kan ikke være større end den anmodede mængde {2} for vare {3}
@ -1578,7 +1582,6 @@ DocType: Vehicle,Fuel UOM,Brændstofsenhed
DocType: Warehouse,Warehouse Contact Info,Lagerkontaktinformation
DocType: Payment Entry,Write Off Difference Amount,Skriv Off Forskel Beløb
DocType: Volunteer,Volunteer Name,Frivilligt navn
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Indstil venligst instruktørens navngivningssystem under Uddannelse&gt; Uddannelsesindstillinger
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0}: Medarbejderens e-mail er ikke fundet, og derfor er e-mailen ikke sendt"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},Forsendelsesregel gælder ikke for land {0}
DocType: Item,Foreign Trade Details,Udenrigshandel Detaljer
@ -1590,7 +1593,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,Gruppe Roll nummer
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry",For {0} kan kun kredit konti knyttes mod en anden debet post
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,Totalen for vægtningen af alle opgaver skal være 1. Juster vægten af alle sagsopgaver i overensstemmelse hermed
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,Følgeseddel {0} er ikke godkendt
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,Følgeseddel {0} er ikke godkendt
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,Vare {0} skal være en underentreprise Vare
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,Capital Udstyr
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Prisfastsættelsesregel skal først baseres på feltet 'Gælder for', som kan indeholde vare, varegruppe eller varemærke."
@ -1615,7 +1618,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,eksisterer Child lager for dette lager. Du kan ikke slette dette lager.
DocType: Item,Website Item Groups,Hjemmeside-varegrupper
DocType: Purchase Invoice,Total (Company Currency),I alt (firmavaluta)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,Serienummer {0} indtastet mere end én gang
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,Serienummer {0} indtastet mere end én gang
DocType: Journal Entry,Journal Entry,Kassekladde
DocType: Expense Claim Advance,Unclaimed amount,Uopkrævet beløb
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} igangværende varer
@ -1711,7 +1714,7 @@ DocType: Email Digest,For Company,Til firma
apps/erpnext/erpnext/config/support.py +17,Communication log.,Kommunikation log.
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.",Adgang til portal er deaktiveret for anmodning om tilbud. Check portal instillinger
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,Leverandør Scorecard Scoringsvariabel
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,Køb Beløb
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,Køb Beløb
DocType: Sales Invoice,Shipping Address Name,Leveringsadressenavn
DocType: Material Request,Terms and Conditions Content,Vilkår og -betingelsesindhold
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,Der opstod fejl ved at oprette kursusplan
@ -1974,7 +1977,7 @@ DocType: Expense Claim,Total Amount Reimbursed,Samlede godtgjorte beløb
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,Dette er baseret på kørebogen for køretøjet. Se tidslinje nedenfor for detaljer
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},Imod Leverandør Faktura {0} dateret {1}
DocType: Customer,Default Price List,Standardprisliste
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,Asset Movement rekord {0} skabt
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,Asset Movement rekord {0} skabt
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,Du kan ikke slette Fiscal År {0}. Regnskabsår {0} er indstillet som standard i Globale indstillinger
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,En kunde med samme navn eksisterer allerede
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,Dette vil indgive Lønningslister og skabe periodiseringsjournalindtastning. Vil du fortsætte?
@ -1988,6 +1991,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,Priser
DocType: Quotation,Term Details,Betingelsesdetaljer
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,Kan ikke tilmelde mere end {0} studerende til denne elevgruppe.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),I alt (uden skat)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,Lead Count
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} skal være større end 0
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,Lager til rådighed
@ -2006,7 +2010,6 @@ DocType: Lab Test,Technician Name,Tekniker navn
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,Fjern link Betaling ved Annullering af faktura
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},Aktuel kilometerstand indtastet bør være større end Køretøjets indledende kilometerstand {0}
DocType: Restaurant Reservation,No Show,Ingen Vis
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Indstil navngivningsserien for {0} via Setup&gt; Settings&gt; Naming Series
DocType: Shipping Rule Country,Shipping Rule Country,Forsendelsesregelland
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,Fravær og fremmøde
DocType: Maintenance Visit,Partially Completed,Delvist afsluttet
@ -2097,7 +2100,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,Studentgruppeinstruktør
DocType: Grant Application,Assessment Mark (Out of 10),Bedømmelsesmærke (ud af 10)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Formynder 2 mobiltelefonnr.
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,Hoved
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,Hoved
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,Variant
DocType: Naming Series,Set prefix for numbering series on your transactions,Sæt præfiks for nummerering serie om dine transaktioner
DocType: Employee Attendance Tool,Employees HTML,Medarbejdere HTML
@ -2145,7 +2148,7 @@ DocType: Crop,Crop Spacing,Beskæringsafstand
DocType: Course,Course Abbreviation,Kursusforkortelse
DocType: Student Leave Application,Student Leave Application,Student Leave Application
DocType: Item,Will also apply for variants,Vil også gælde for varianter
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","Asset kan ikke annulleres, da det allerede er {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","Asset kan ikke annulleres, da det allerede er {0}"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},Medarbejder {0} på halv tid den {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},Arbejdstid i alt bør ikke være større end maksimal arbejdstid {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,
@ -2329,9 +2332,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),Faktisk Slutdato (via Tidsregistreringen)
DocType: Soil Texture,Soil Type,Jordtype
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},Mængden {0} {1} mod {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,Ny besked
,Quotation Trends,Tilbud trends
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},Varegruppe ikke er nævnt i vare-masteren for vare {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,Debit-Til konto skal være et tilgodehavende konto
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,Debit-Til konto skal være et tilgodehavende konto
DocType: Shipping Rule,Shipping Amount,Forsendelsesmængde
DocType: Supplier Scorecard Period,Period Score,Periode score
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,Tilføj kunder
@ -2342,7 +2346,7 @@ DocType: Purchase Order,Delivered,Leveret
,Vehicle Expenses,Køretøjsudgifter
DocType: Serial No,Invoice Details,Faktura detaljer
DocType: Grant Application,Show on Website,Vis på hjemmesiden
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},Forventet værdi efter brugstid skal være større end eller lig med {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},Forventet værdi efter brugstid skal være større end eller lig med {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,Start på
DocType: Hub Category,Hub Category,Nav kategori
DocType: Purchase Invoice,SEZ,SEZ
@ -2373,7 +2377,7 @@ DocType: Patient,Patient Details,Patientdetaljer
DocType: Patient,B Positive,B positiv
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","Række # {0}: Antal skal være én, eftersom varen er et anlægsaktiv. Brug venligst separat række til flere antal."
DocType: Leave Block List Allow,Leave Block List Allow,Tillad blokerede fraværsansøgninger
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,Forkortelsen kan ikke være tom eller bestå af mellemrum
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,Forkortelsen kan ikke være tom eller bestå af mellemrum
DocType: Patient Medical Record,Patient Medical Record,Patient Medical Record
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,Gruppe til ikke-Group
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,Sport
@ -2423,6 +2427,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,Kan ikke indstille en modtaget RFQ til No Quote
DocType: Quotation,QTN-,T-
DocType: Salary Slip,Total Deduction,Fradrag i alt
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,"Vælg en konto, der skal udskrives i kontovaluta"
,Production Analytics,Produktionsanalyser
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,Dette er baseret på transaktioner mod denne patient. Se tidslinjen nedenfor for detaljer
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,Omkostninger opdateret
@ -2477,7 +2482,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,Varia
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,Vælg firma ...
DocType: Leave Control Panel,Leave blank if considered for all departments,"Lad feltet stå tomt, hvis det skal gælde for alle afdelinger"
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","Typer af beskæftigelse (permanent, kontrakt, praktikant osv)."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} er obligatorisk for vare {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} er obligatorisk for vare {1}
DocType: Payroll Entry,Fortnightly,Hver 14. dag
DocType: Currency Exchange,From Currency,Fra Valuta
DocType: Vital Signs,Weight (In Kilogram),Vægt (i kilogram)
@ -2553,7 +2558,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),Grundbeløb (Company Cur
DocType: Student,Guardians,Guardians
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,"Priserne vil ikke blive vist, hvis prisliste ikke er indstillet"
DocType: Stock Entry,Total Incoming Value,Samlet værdi indgående
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,Debet-til skal angives
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,Debet-til skal angives
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Tidskladder hjælper med at holde styr på tid, omkostninger og fakturering for aktiviteter udført af dit team"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,Indkøbsprisliste
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,Skabeloner af leverandør scorecard variabler.
@ -2654,7 +2659,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,Kun til reference.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},Læge {0} ikke tilgængelig på {1}
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,Vælg partinr.
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},Ugyldig {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},Ugyldig {0}: {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-Retsinformation
DocType: Fee Validity,Reference Inv,Reference Inv
@ -2691,8 +2696,8 @@ DocType: Fees,Send Payment Request,Send betalingsanmodning
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Angiv operationer, driftsomkostninger og giver en unik Operation nej til dine operationer."
DocType: Water Analysis,Origin,Oprindelse
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,Dette dokument er over grænsen ved {0} {1} for vare {4}. Er du gør en anden {3} mod samme {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,Venligst sæt tilbagevendende efter besparelse
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,Vælg ændringsstørrelse konto
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,Venligst sæt tilbagevendende efter besparelse
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,Vælg ændringsstørrelse konto
DocType: Purchase Invoice,Price List Currency,Prisliste Valuta
DocType: Naming Series,User must always select,Brugeren skal altid vælge
DocType: Stock Settings,Allow Negative Stock,Tillad negativ lagerbeholdning
@ -2748,7 +2753,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,Vedligeholdelse
DocType: Supplier Scorecard,Warn for new Purchase Orders,Advarer om nye indkøbsordrer
DocType: Quality Inspection Reading,Reading 9,Reading 9
DocType: Supplier,Is Frozen,Er Frozen
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,Gruppe node lager er ikke tilladt at vælge for transaktioner
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,Gruppe node lager er ikke tilladt at vælge for transaktioner
DocType: Buying Settings,Buying Settings,Indkøbsindstillinger
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,Styklistenr. for en færdigvare
DocType: Upload Attendance,Attendance To Date,Fremmøde tildato
@ -2762,6 +2767,7 @@ DocType: Offer Letter,Accepted,Accepteret
DocType: Grant Application,Organization,Organisation
DocType: BOM Update Tool,BOM Update Tool,BOM Update Tool
DocType: SG Creation Tool Course,Student Group Name,Elevgruppenavn
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,Vis eksploderet visning
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,Oprettelse af gebyrer
apps/erpnext/erpnext/setup/doctype/company/company.js +91,Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone.,"Kontroller, at du virkelig ønsker at slette alle transaktioner for dette selskab. Dine stamdata vil forblive som den er. Denne handling kan ikke fortrydes."
DocType: Room,Room Number,Værelsesnummer
@ -2772,7 +2778,7 @@ DocType: Journal Entry Account,Payroll Entry,Lønning Entry
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,Lav skatskabelon
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,Brugerforum
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,Råmaterialer kan ikke være tom.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","Kunne ikke opdatere lager, faktura indeholder drop shipping element."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","Kunne ikke opdatere lager, faktura indeholder drop shipping element."
DocType: Lab Test Sample,Lab Test Sample,Lab Test prøve
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,Hurtig kassekladde
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,"Du kan ikke ændre kurs, hvis BOM nævnt agianst ethvert element"
@ -2843,7 +2849,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,USD
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,Make Faktura
DocType: Selling Settings,Auto close Opportunity after 15 days,Luk automatisk salgsmulighed efter 15 dage
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Indkøbsordrer er ikke tilladt for {0} på grund af et scorecard stående på {1}.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Indkøbsordrer er ikke tilladt for {0} på grund af et scorecard stående på {1}.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,Slutår
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Tilbud/emne %
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,Fratrædelsesdato skal være større end ansættelsesdato
@ -2935,7 +2941,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90-over
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,Row # {0}: Kassekladde {1} har ikke konto {2} eller allerede matchet mod en anden kupon
DocType: Supplier Scorecard Criteria,Criteria Weight,Kriterier Vægt
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Leverandør&gt; Leverandør Type
DocType: Buying Settings,Default Buying Price List,Standard indkøbsprisliste
DocType: Payroll Entry,Salary Slip Based on Timesheet,Lønseddel baseret på timeregistreringen
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,Købspris
@ -3023,7 +3028,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,Analysér emner efter branchekode.
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,Gå til Letterheads
DocType: Item Supplier,Item Supplier,Vareleverandør
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,Indtast venligst varenr. for at få partinr.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,Indtast venligst varenr. for at få partinr.
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},Vælg en værdi for {0} quotation_to {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,Alle adresser.
DocType: Company,Stock Settings,Lagerindstillinger
@ -3200,6 +3205,7 @@ DocType: Employee Loan,Loan Details,Lånedetaljer
DocType: Company,Default Inventory Account,Standard lagerkonto
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,Række {0}: suppleret Antal skal være større end nul.
DocType: Antibiotic,Antibiotic Name,Antibiotikum Navn
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Varenummer&gt; Varegruppe&gt; Mærke
DocType: Purchase Invoice,Apply Additional Discount On,Påfør Yderligere Rabat på
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,Vælg type ...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,"Et link til alle de jordarealer, hvor afgrøden vokser"
@ -3393,6 +3399,7 @@ DocType: Guardian Student,Guardian Student,Guardian Student
DocType: Supplier,Credit Limit,Kreditgrænse
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,Gennemsnitlig. Salgsprisliste Pris
DocType: Production Plan Sales Order,Salse Order Date,Salse Order Dato
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Leverandør&gt; Leverandør Type
DocType: Salary Component,Salary Component,Lønart
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,Betalings Entries {0} er un-linked
DocType: GL Entry,Voucher No,Bilagsnr.
@ -3401,7 +3408,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,Mest populære
DocType: Leave Allocation,Leave Allocation,Fraværstildeling
DocType: Payment Request,Recipient Message And Payment Details,Modtager Besked Og Betalingsoplysninger
DocType: Training Event,Trainer Email,Trainer Email
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,Materialeanmodning {0} oprettet
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,Materialeanmodning {0} oprettet
DocType: Restaurant Reservation,No of People,Ingen af mennesker
DocType: Production Planning Tool,Include sub-contracted raw materials,Medtag underleverandører råmaterialer
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,Skabelon til vilkår eller kontrakt.
@ -3465,7 +3472,7 @@ DocType: Landed Cost Item,Receipt Document,Kvittering dokument
DocType: Production Planning Tool,Create Material Requests,Opret materialeanmodning
DocType: Employee Education,School/University,Skole / Universitet
DocType: Payment Request,Reference Details,Henvisning Detaljer
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,Forventet værdi efter brugstid skal være mindre end bruttokøbesummen
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,Forventet værdi efter brugstid skal være mindre end bruttokøbesummen
DocType: Sales Invoice Item,Available Qty at Warehouse,Tilgængeligt antal på lageret
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,Faktureret beløb
DocType: Asset,Double Declining Balance,Dobbelt Faldende Balance
@ -3477,7 +3484,7 @@ DocType: Attendance,On Leave,Fraværende
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,Modtag nyhedsbrev
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: Konto {2} tilhører ikke firma {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,Vælg mindst en værdi fra hver af attributterne.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,Materialeanmodning {0} er annulleret eller stoppet
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,Materialeanmodning {0} er annulleret eller stoppet
apps/erpnext/erpnext/config/hr.py +310,Leave Management,Fraværsadministration
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,Sortér efter konto
DocType: Sales Order,Fully Delivered,Fuldt Leveres
@ -3488,14 +3495,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},Udbetalte beløb kan ikke være større end Lånebeløb {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,Gå til Programmer
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},Række {0} # Tildelt mængde {1} kan ikke være større end uanmeldt mængde {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Venligst opsæt nummereringsserier for Tilstedeværelse via Opsætning&gt; Nummereringsserie
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},Indkøbsordrenr. påkrævet for vare {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,Produktionsordre ikke oprettet
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','Fra dato' skal være efter 'Til dato'
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},Kan ikke ændre status som studerende {0} er forbundet med student ansøgning {1}
DocType: Asset,Fully Depreciated,fuldt afskrevet
,Stock Projected Qty,Stock Forventet Antal
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},Kunden {0} hører ikke til sag {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},Kunden {0} hører ikke til sag {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,Markant Deltagelse HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers","Citater er forslag, bud, du har sendt til dine kunder"
DocType: Sales Order,Customer's Purchase Order,Kundens indkøbsordre
@ -3579,7 +3585,7 @@ DocType: Salary Slip,Hour Rate,Timesats
DocType: Stock Settings,Item Naming By,Item Navngivning By
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},En anden Periode Lukning indtastning {0} er blevet foretaget efter {1}
DocType: Production Order,Material Transferred for Manufacturing,Materiale Overført til Manufacturing
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,Konto {0} findes ikke
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,Konto {0} findes ikke
DocType: Project,Project Type,Sagstype
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,Børneopgave eksisterer for denne opgave. Du kan ikke slette denne opgave.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,Enten target qty eller målbeløbet er obligatorisk.
@ -3681,11 +3687,11 @@ DocType: C-Form,I,jeg
DocType: Company,Asset Depreciation Cost Center,Asset Afskrivninger Omkostninger center
DocType: Sales Order Item,Sales Order Date,Salgsordredato
DocType: Sales Invoice Item,Delivered Qty,Leveres Antal
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,I alt ekskl. Skat
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","Hvis markeret, vil alle underelementer i hvert produktionselement indgå i materialeanmodningerne."
DocType: Assessment Plan,Assessment Plan,Plan Assessment
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,Kunden {0} er oprettet.
DocType: Stock Settings,Limit Percent,Begrænsningsprocent
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Indstil venligst instruktørens navngivningssystem under Uddannelse&gt; Uddannelsesindstillinger
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,Der er i øjeblikket ingen lager på lageret
,Payment Period Based On Invoice Date,Betaling Periode Baseret på Fakturadato
DocType: Sample Collection,No. of print,Antal udskrifter
@ -3701,12 +3707,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),Debitorer ({0})
DocType: Pricing Rule,Margin,Margen
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,Nye kunder
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,Gross Profit%
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,Gross Profit%
DocType: Appraisal Goal,Weightage (%),Vægtning (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,Skift POS-profil
DocType: Bank Reconciliation Detail,Clearance Date,Clearance Dato
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,Vurderingsrapport
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,Bruttokøbesummen er obligatorisk
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,Bruttokøbesummen er obligatorisk
DocType: Lead,Address Desc,Adresse
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,Party er obligatorisk
DocType: Journal Entry,JV-,JV-
@ -3738,7 +3744,6 @@ DocType: Account,Accumulated Depreciation,Akkumulerede afskrivninger
DocType: Supplier Scorecard Scoring Standing,Standing Name,Stående navn
DocType: Stock Entry,Customer or Supplier Details,Kunde- eller leverandørdetaljer
DocType: Employee Loan Application,Required by Date,Kræves af Dato
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),Afslutningsbalance (Dr - Cr)
DocType: Lead,Lead Owner,Emneejer
DocType: Bin,Requested Quantity,Anmodet mængde
DocType: Patient,Marital Status,Civilstand
@ -3752,7 +3757,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,Flere varianter
DocType: Sales Invoice,Against Income Account,Mod Indkomst konto
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% Leveret
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Vare {0}: Bestilte qty {1} kan ikke være mindre end minimum ordreantal {2} (defineret i punkt).
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Vare {0}: Bestilte qty {1} kan ikke være mindre end minimum ordreantal {2} (defineret i punkt).
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,Månedlig Distribution Procent
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,Log venligst ind som en anden bruger.
DocType: Territory,Territory Targets,Områdemål
@ -3851,7 +3856,7 @@ DocType: Program Enrollment,School House,School House
DocType: Serial No,Out of AMC,Ud af AMC
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,Antal Afskrivninger Reserverede kan ikke være større end alt Antal Afskrivninger
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,Make Vedligeholdelse Besøg
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,"Kontakt venligst til den bruger, der har Sales Master manager {0} rolle"
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,"Kontakt venligst til den bruger, der har Sales Master manager {0} rolle"
DocType: Company,Default Cash Account,Standard Kontant konto
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,Company (ikke kunde eller leverandør) herre.
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,Dette er baseret på deltagelse af denne Student
@ -4002,7 +4007,6 @@ DocType: Delivery Note Item,From Warehouse,Fra lager
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,Ingen ansatte for de nævnte kriterier
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,Ingen stykliste-varer at fremstille
DocType: Restaurant,Default Customer,Standardkunden
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Opsæt venligst medarbejdernavnesystem i menneskelige ressourcer&gt; HR-indstillinger
DocType: Assessment Plan,Supervisor Name,supervisor Navn
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,"Bekræft ikke, om en aftale er oprettet for samme dag"
DocType: Program Enrollment Course,Program Enrollment Course,Tilmeldingskursusprogramm
@ -4120,7 +4124,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,Hjemmesidebeskrivelse
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,Nettoændring i Equity
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,Nyeste
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,Annullér købsfaktura {0} først
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,Annullér købsfaktura {0} først
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","E-mailadresse skal være unik, findes allerede for {0}"
DocType: Serial No,AMC Expiry Date,AMC Udløbsdato
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,Kvittering
@ -4137,7 +4141,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,Ingen kunder e
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,Pengestrømsanalyse
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},Lånebeløb kan ikke overstige det maksimale lånebeløb på {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,Licens
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},Fjern denne faktura {0} fra C-Form {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},Fjern denne faktura {0} fra C-Form {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,"Vælg dette felt, hvis du også ønsker at inkludere foregående regnskabsår fraværssaldo til indeværende regnskabsår"
DocType: GL Entry,Against Voucher Type,Mod Bilagstype
DocType: Physician,Phone (R),Telefon (R)
@ -4149,7 +4153,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,B Negativ
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,Vedligeholdelsesstatus skal annulleres eller afsluttes for at indsende
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},Konto {0} ikke hører til virksomheden {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,Serienumre i række {0} stemmer ikke overens med Leveringsnotat
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,Serienumre i række {0} stemmer ikke overens med Leveringsnotat
DocType: Student,Guardian Details,Guardian Detaljer
DocType: C-Form,C-Form,C-Form
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,Mark Deltagelse for flere medarbejdere
@ -4191,7 +4195,7 @@ DocType: Opening Invoice Creation Tool,Sales,Salg
DocType: Stock Entry Detail,Basic Amount,Grundbeløb
DocType: Training Event,Exam,Eksamen
DocType: Complaint,Complaint,Klage
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},Lager kræves for lagervare {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},Lager kræves for lagervare {0}
DocType: Leave Allocation,Unused leaves,Ubrugte blade
DocType: Patient,Alcohol Past Use,Alkohol tidligere brug
DocType: Fertilizer Content,Fertilizer Content,Gødning Indhold
@ -4315,6 +4319,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,Formel
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,Serienummer
DocType: Lab Test Template,Lab Test Template,Lab Test Template
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,Salgskonto
DocType: Purchase Invoice Item,Total Weight,Totalvægt
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,Salgsprovisioner
DocType: Offer Letter Term,Value / Description,/ Beskrivelse
@ -4471,7 +4476,7 @@ Updated via 'Time Log'",i minutter Opdateret via &#39;Time Log&#39;
DocType: Customer,From Lead,Fra Emne
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,Ordrer frigivet til produktion.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,Vælg regnskabsår ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,POS profil kræves for at gøre POS indtastning
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,POS profil kræves for at gøre POS indtastning
DocType: Program Enrollment Tool,Enroll Students,Tilmeld Studerende
DocType: Lab Test,Approved Date,Godkendt dato
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,Standard salg
@ -4547,7 +4552,7 @@ DocType: Employee,Held On,Held On
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,Produktion Vare
,Employee Information,Medarbejder Information
DocType: Stock Entry Detail,Additional Cost,Yderligere omkostning
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher",Kan ikke filtrere baseret på bilagsnr. hvis der sorteres efter Bilagstype
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher",Kan ikke filtrere baseret på bilagsnr. hvis der sorteres efter Bilagstype
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,Opret Leverandørtilbud
DocType: Quality Inspection,Incoming,Indgående
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,Standard skat skabeloner til salg og køb oprettes.
@ -4564,7 +4569,7 @@ DocType: Batch,Batch ID,Parti-id
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},Bemærk: {0}
,Delivery Note Trends,Følgeseddel Tendenser
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,Denne uges oversigt
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,På lager Antal
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,På lager Antal
DocType: Delivery Trip,Calculate Estimated Arrival Times,Beregn Anslåede ankomsttider
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,Konto: {0} kan kun opdateres via Lagertransaktioner
DocType: Student Group Creation Tool,Get Courses,Hent kurser
@ -4580,7 +4585,7 @@ DocType: Purchase Order,To Bill,Til Bill
DocType: Material Request,% Ordered,% Bestilt
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.",For kursusbaseret studentegruppe vil kurset blive valideret for hver elev fra de tilmeldte kurser i programtilmelding.
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,Akkordarbejde
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,Gns. købssats
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,Gns. købssats
DocType: Task,Actual Time (in Hours),Faktisk tid (i timer)
DocType: Employee,History In Company,Historie I Company
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},Ny besked fra {afsender}
@ -4628,7 +4633,7 @@ DocType: Asset Repair,Asset Repair,Asset Repair
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},Række {0}: Valuta af BOM # {1} skal være lig med den valgte valuta {2}
DocType: Journal Entry Account,Exchange Rate,Vekselkurs
DocType: Patient,Additional information regarding the patient,Yderligere oplysninger om patienten
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,Salgsordre {0} er ikke godkendt
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,Salgsordre {0} er ikke godkendt
DocType: Homepage,Tag Line,tag Linje
DocType: Fee Component,Fee Component,Gebyr Component
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,Firmabiler
@ -4840,7 +4845,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,Vurdering Resultat De
DocType: Employee Education,Employee Education,Medarbejder Uddannelse
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,Samme varegruppe findes to gange i varegruppetabellen
DocType: Land Unit,Parent Land Unit,Moderselskab
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,Det er nødvendigt at hente Elementdetaljer.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,Det er nødvendigt at hente Elementdetaljer.
DocType: Fertilizer,Fertilizer Name,Gødning Navn
DocType: Salary Slip,Net Pay,Nettoløn
DocType: Account,Account,Konto
@ -4919,7 +4924,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),Faktiske Antal (ved ki
DocType: Item Customer Detail,Ref Code,Ref Code
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,Kundegruppe er påkrævet i POS-profil
apps/erpnext/erpnext/config/hr.py +12,Employee records.,Medarbejder Records.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,Indtast Næste afskrivningsdato
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,Indtast Næste afskrivningsdato
DocType: HR Settings,Payroll Settings,Lønindstillinger
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,Match ikke-forbundne fakturaer og betalinger.
DocType: POS Settings,POS Settings,POS-indstillinger
@ -5086,7 +5091,7 @@ DocType: Item,Customer Code,Kundekode
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},Birthday Reminder for {0}
DocType: Asset Maintenance Task,Last Completion Date,Sidste sluttidspunkt
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,Dage siden sidste ordre
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,Debit-Til konto skal være en balance konto
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,Debit-Til konto skal være en balance konto
DocType: Buying Settings,Naming Series,Navngivningsnummerserie
DocType: Leave Block List,Leave Block List Name,Blokering af fraværsansøgninger
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,Forsikring Startdato skal være mindre end Forsikring Slutdato
@ -5212,6 +5217,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,Hent betalingsposter
DocType: Quotation Item,Against Docname,Mod Docname
DocType: SMS Center,All Employee (Active),Alle medarbejdere (aktive)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Kunde&gt; Kundegruppe&gt; Territorium
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,Se nu
DocType: BOM,Raw Material Cost,Råmaterialeomkostninger
DocType: Item Reorder,Re-Order Level,Re-Order Level
@ -5310,7 +5316,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,Seating Capacity
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,Lab Test Grupper
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Kunde&gt; Kundegruppe&gt; Territorium
DocType: Project,Total Expense Claim (via Expense Claims),Udlæg ialt (via Udlæg)
DocType: GST Settings,GST Summary,GST Sammendrag
DocType: Assessment Result,Total Score,Samlet score
@ -5323,7 +5328,7 @@ DocType: Batch,Source Document Type,Kilde dokumenttype
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,Følgende kursusplaner blev oprettet
DocType: Journal Entry,Total Debit,Samlet debet
DocType: Manufacturing Settings,Default Finished Goods Warehouse,Standard færdigvarer Warehouse
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,Salgsmedarbejder
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,Salgsmedarbejder
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,Budget og Omkostningssted
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,Flere standard betalingsmåder er ikke tilladt
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,for
@ -5496,7 +5501,7 @@ DocType: Program,Program Name,Programnavn
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Overvej Skat eller Gebyr for
DocType: Driver,Driving License Category,Kørekort kategori
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,Faktiske Antal er obligatorisk
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} har for øjeblikket en {1} leverandør scorecard stående, og købsordrer til denne leverandør bør udstedes med forsigtighed."
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} har for øjeblikket en {1} leverandør scorecard stående, og købsordrer til denne leverandør bør udstedes med forsigtighed."
DocType: Asset Maintenance Team,Asset Maintenance Team,Asset Maintenance Team
DocType: Employee Loan,Loan Type,Lånetype
DocType: Scheduling Tool,Scheduling Tool,Planlægning Tool

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,Labor Rezept
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,Nach Preis sortieren
,Delay Days,Verzögerungstage
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,Dienstzeitaufwand
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},Seriennummer: {0} wird bereits in der Verkaufsrechnung referenziert: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},Seriennummer: {0} wird bereits in der Verkaufsrechnung referenziert: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,Rechnung
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,Machen Sie den Vorratsbestandseintrag
DocType: Purchase Invoice Item,Item Weight Details,Artikel Gewicht Details
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,Übergeordnetes Detail Dokumentenname
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","Referenz: {0}, Item Code: {1} und Kunde: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,kg
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,Stellenausschreibung
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},Die Stückliste ist für die Lohnbearbeitungseinheit {0} in der Zeile {1} nicht angegeben.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},Die Stückliste ist für die Lohnbearbeitungseinheit {0} in der Zeile {1} nicht angegeben.
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} Ergebnis übermittelt
DocType: Item Attribute,Increment,Schrittweite
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,Zeitspanne
@ -150,7 +150,7 @@ DocType: Patient,Married,Verheiratet
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},Nicht zulässig für {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,Holen Sie Elemente aus
DocType: Price List,Price Not UOM Dependant,Preis nicht UOM abhängig
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},Lager kann nicht mit Lieferschein {0} aktualisiert werden
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},Lager kann nicht mit Lieferschein {0} aktualisiert werden
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},Produkt {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,Keine Artikel aufgeführt
DocType: Asset Repair,Error Description,Fehlerbeschreibung
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,Abgleichen
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,Lebensmittelgeschäft
DocType: Quality Inspection Reading,Reading 1,Ablesewert 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,Pensionsfonds
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,Nächstes Abschreibedatum kann nicht vor dem Kaufdatum sein
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,Nächstes Abschreibedatum kann nicht vor dem Kaufdatum sein
DocType: Crop,Perennial,Staude
DocType: Consultation,Consultation Date,Konsultationsdatum
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,Produktliste und Erkennung für ERPNext-Benutzer
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,Kostenstelle für Abschreibungen
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""","z.B. ""Grundschule"" oder ""Universität"""
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,Lagerberichte
DocType: Warehouse,Warehouse Detail,Lagerdetail
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},Kreditlimit für Kunde {0} {1}/{2} wurde überschritten
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},Kreditlimit für Kunde {0} {1}/{2} wurde überschritten
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,Der Begriff Enddatum kann nicht später sein als das Jahr Enddatum des Akademischen Jahres an dem der Begriff verknüpft ist (Akademisches Jahr {}). Bitte korrigieren Sie die Daten und versuchen Sie es erneut.
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","""Ist Anlagevermögen"" kann nicht deaktiviert werden, da Anlagebuchung gegen den Artikel vorhanden"
DocType: Delivery Trip,Departure Time,Abfahrtszeit
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,Studenten Log
DocType: Quality Inspection,Get Specification Details,Spezifikationsdetails aufrufen
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,Vorlagen der Lieferantenwertung.
DocType: Lead,Interested,Interessiert
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,Eröffnung
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,Eröffnung
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},Von {0} bis {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,Fehler beim Einrichten der Steuern
DocType: Item,Copy From Item Group,Von Artikelgruppe kopieren
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,Freitstellungsdatum muss nach dem Eintrittsdatum liegen
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,Abwesenheiten pro Jahr
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,"Zeile {0}: Wenn es sich um eine Vorkasse-Buchung handelt, bitte ""Ist Vorkasse"" zu Konto {1} anklicken, ."
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},Lager {0} gehört nicht zu Firma {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},Lager {0} gehört nicht zu Firma {1}
DocType: Email Digest,Profit & Loss,Profiteinbuße
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,Liter
DocType: Task,Total Costing Amount (via Time Sheet),Gesamtkostenbetrag (über Arbeitszeitblatt)
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,Rate &amp; Betrag
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,Dies beruht auf Transaktionen gegen diese Gesellschaft. Siehe Zeitleiste unten für Details
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Bei Erstellung einer automatischen Materialanfrage per E-Mail benachrichtigen
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,Beständig
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Rücksprache
DocType: Journal Entry,Multi Currency,Unterschiedliche Währungen
DocType: Opening Invoice Creation Tool,Invoice Type,Rechnungstyp
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,Lieferschein
@ -528,7 +529,6 @@ DocType: Email Digest,Credit Balance,Verfügbarer Kredit
DocType: Employee,Widowed,Verwitwet
DocType: Request for Quotation,Request for Quotation,Angebotsanfrage
DocType: Healthcare Settings,Require Lab Test Approval,Erforderliche Labortests genehmigen
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Artikelcode&gt; Artikelgruppe&gt; Marke
DocType: Salary Slip Timesheet,Working Hours,Arbeitszeit
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,Absolut aussergewöhnlich
DocType: Naming Series,Change the starting / current sequence number of an existing series.,Anfangs- / Ist-Wert eines Nummernkreises ändern.
@ -557,7 +557,7 @@ DocType: Subscription,Yearly,Jährlich
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,Bitte die Kostenstelle eingeben
DocType: Drug Prescription,Dosage,Dosierung
DocType: Journal Entry Account,Sales Order,Kundenauftrag
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,Durchschnittlicher Verkaufspreis
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,Durchschnittlicher Verkaufspreis
DocType: Assessment Plan,Examiner Name,Prüfer-Name
DocType: Lab Test Template,No Result,Kein Ergebnis
DocType: Purchase Invoice Item,Quantity and Rate,Menge und Preis
@ -605,6 +605,7 @@ DocType: Employee,Health Concerns,Gesundheitsfragen
DocType: Payroll Entry,Select Payroll Period,Wählen Sie Abrechnungsperiode
DocType: Purchase Invoice,Unpaid,Unbezahlt
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,Reserviert für Verkauf
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Bitte richten Sie das Mitarbeiterbenennungssystem in Human Resource&gt; HR Settings ein
DocType: Packing Slip,From Package No.,Von Paket Nr.
DocType: Item Attribute,To Range,Bis-Bereich
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,Wertpapiere und Einlagen
@ -629,11 +630,11 @@ DocType: Pricing Rule,Valid Upto,Gültig bis
DocType: Training Event,Workshop,Werkstatt
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,Warnung Bestellungen
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,Bitte ein paar Kunden angeben. Dies können Firmen oder Einzelpersonen sein.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,Genug Teile zu bauen
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,Genug Teile zu bauen
DocType: POS Profile User,POS Profile User,POS-Profilbenutzer
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,Direkte Erträge
DocType: Patient Appointment,Date TIme,Terminzeit
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","Wenn nach Konto gruppiert wurde, kann nicht auf Grundlage des Kontos gefiltert werden."
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","Wenn nach Konto gruppiert wurde, kann nicht auf Grundlage des Kontos gefiltert werden."
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,Administrativer Benutzer
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,Gründung von Unternehmen und Steuern
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,Bitte wählen Sie Kurs
@ -643,7 +644,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,Differenzkonto
DocType: Purchase Invoice,Supplier GSTIN,Lieferant GSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,"Aufgabe kann nicht geschlossen werden, da die von ihr abhängige Aufgabe {0} nicht geschlossen ist."
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,"Bitte das Lager eingeben, für das eine Materialanfrage erhoben wird"
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,"Bitte das Lager eingeben, für das eine Materialanfrage erhoben wird"
DocType: Production Order,Additional Operating Cost,Zusätzliche Betriebskosten
DocType: Lab Test Template,Lab Routine,Laborroutine
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,Kosmetika
@ -811,7 +812,7 @@ DocType: Employee,Passport Number,Passnummer
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Beziehung mit Guardian2
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,Leiter
DocType: Payment Entry,Payment From / To,Zahlung von / an
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Neue Kreditlimit ist weniger als die aktuellen ausstehenden Betrag für den Kunden. Kreditlimit hat atleast sein {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Neue Kreditlimit ist weniger als die aktuellen ausstehenden Betrag für den Kunden. Kreditlimit hat atleast sein {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},Bitte Konto in Lager {0} setzen
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,"""basierend auf"" und ""guppiert nach"" können nicht gleich sein"
DocType: Sales Person,Sales Person Targets,Ziele für Vertriebsmitarbeiter
@ -822,7 +823,7 @@ DocType: Lab Test Template,Compound,Verbindung
DocType: Student Batch Name,Batch Name,Chargenname
DocType: Fee Validity,Max number of visit,Maximaler Besuch
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,Timesheet erstellt:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},"Bitte Standardeinstellungen für Kassen- oder Bankkonto in ""Zahlungsart"" {0} setzen"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},"Bitte Standardeinstellungen für Kassen- oder Bankkonto in ""Zahlungsart"" {0} setzen"
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,Einschreiben
DocType: GST Settings,GST Settings,GST-Einstellungen
DocType: Selling Settings,Customer Naming By,Benennung der Kunden nach
@ -946,7 +947,7 @@ DocType: Delivery Note,Customer's Purchase Order No,Kundenauftragsnr.
DocType: Budget,Budget Against,Budget gegen
DocType: Employee,Cell Number,Mobiltelefonnummer
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,"Es gibt keinen Angestellten für die gegebenen Kriterien. Überprüfen Sie, ob Gehaltsabrechnungen nicht bereits erstellt wurden."
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,Automatische Materialanfragen generiert
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,Automatische Materialanfragen generiert
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,Verloren
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,"Momentan können keine Belege in die Spalte ""Zu Buchungssatz"" eingegeben werden"
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,für die Herstellung Reserviert
@ -954,7 +955,7 @@ DocType: Soil Texture,Sand,Sand
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,Energie
DocType: Opportunity,Opportunity From,Chance von
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,Monatliche Gehaltsabrechnung
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Zeile {0}: {1} Für den Eintrag {2} benötigte Seriennummern. Du hast {3} zur Verfügung gestellt.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Zeile {0}: {1} Für den Eintrag {2} benötigte Seriennummern. Du hast {3} zur Verfügung gestellt.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,Bitte wählen Sie eine Tabelle
DocType: BOM,Website Specifications,Webseiten-Spezifikationen
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',"{0} ist eine ungültige E-Mail-Adresse in ""Empfänger"""
@ -1042,7 +1043,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,Angebot angefordert
DocType: Vital Signs,Heart Rate / Pulse,Herzfrequenz / Puls
DocType: Company,Default Bank Account,Standardbankkonto
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","Um auf der Grundlage von Gruppen zu filtern, bitte zuerst den Gruppentyp wählen"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","Um auf der Grundlage von Gruppen zu filtern, bitte zuerst den Gruppentyp wählen"
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},"""Lager aktualisieren"" kann nicht ausgewählt werden, da Artikel nicht über {0} geliefert wurden"
DocType: Vehicle,Acquisition Date,Kaufdatum
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,Stk
@ -1066,7 +1067,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),Laden Sie Ihren Briefkopf hoch (Halten Sie ihn webfreundlich wie 900px bis 100px)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: Konto {2} darf keine Gruppe sein
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,Artikel Row {idx}: {} {Doctype docname} existiert nicht in der oben &#39;{Doctype}&#39; Tisch
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,Timesheet {0} ist bereits abgeschlossen oder abgebrochen
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,Timesheet {0} ist bereits abgeschlossen oder abgebrochen
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,keine Vorgänge
DocType: Item Variant Settings,Copy Fields to Variant,Kopiere Felder auf Varianten
DocType: Asset,Opening Accumulated Depreciation,Öffnungs Kumulierte Abschreibungen
@ -1178,9 +1179,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,Materialplanung für Unterbaugruppen
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,Vertriebspartner und Territorium
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,Stückliste {0} muss aktiv sein
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),Schließen (Eröffnung + Gesamt)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),Schließen (Eröffnung + Gesamt)
DocType: Journal Entry,Depreciation Entry,Abschreibungs Eintrag
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Bitte zuerst den Dokumententyp auswählen
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,In Kontowährung drucken
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Materialkontrolle {0} stornieren vor Abbruch dieses Wartungsbesuchs
DocType: Crop Cycle,ISO 8016 standard,ISO 8016 Standard
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},Seriennummer {0} gehört nicht zu Artikel {1}
@ -1206,7 +1208,7 @@ DocType: Purchase Receipt,Range,Bandbreite
DocType: Supplier,Default Payable Accounts,Standard-Verbindlichkeitenkonten
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,Mitarbeiter {0} ist nicht aktiv oder existiert nicht
DocType: Fee Structure,Components,Komponenten
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},Bitte geben Sie Anlagekategorie in Artikel {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},Bitte geben Sie Anlagekategorie in Artikel {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,Artikelvarianten {0} aktualisiert
DocType: Quality Inspection Reading,Reading 6,Ablesewert 6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1258,6 +1260,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,Firmenname
DocType: SMS Center,Total Message(s),Summe Nachricht(en)
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,Artikel für Übertrag auswählen
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Setzen Sie die Namensserie für {0} über Setup&gt; Einstellungen&gt; Namensserie
DocType: Purchase Invoice,Additional Discount Percentage,Zusätzlicher prozentualer Rabatt
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,Sehen Sie eine Liste aller Hilfe-Videos
DocType: Agriculture Analysis Criteria,Soil Texture,Bodentextur
@ -1285,7 +1288,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,BOM Webseitenartikel
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,Briefkopf und Logo hochladen. (Beides kann später noch bearbeitet werden.)
DocType: Timesheet Detail,Bill,Rechnung
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,Weiter Abschreibungen Datum wird als vergangenes Datum eingegeben
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,Weiter Abschreibungen Datum wird als vergangenes Datum eingegeben
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,Weiß
DocType: SMS Center,All Lead (Open),Alle Leads (offen)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),Row {0}: Menge nicht für {4} in Lager {1} zum Zeitpunkt des Eintrags Entsendung ({2} {3})
@ -1301,7 +1304,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,Nächstes Kontaktdatum
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,Anfangsmenge
DocType: Healthcare Settings,Appointment Reminder,Termin Erinnerung
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,Bitte geben Sie Konto für Änderungsbetrag
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,Bitte geben Sie Konto für Änderungsbetrag
DocType: Program Enrollment Tool Student,Student Batch Name,Studentenstapelname
DocType: Consultation,Doctor,Arzt
DocType: Holiday List,Holiday List Name,Urlaubslistenname
@ -1317,6 +1320,7 @@ DocType: Patient,Patient Relation,Patientenbeziehung
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,Urlaubszuordnungs-Werkzeug
DocType: Item,Hub Category to Publish,Zu veröffentlichende Hub-Kategorie
DocType: Leave Block List,Leave Block List Dates,Urlaubssperrenliste Termine
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Bitte richten Sie die Nummerierungsserie für die Teilnahme über Setup&gt; Nummerierungsserie ein
DocType: Sales Invoice,Billing Address GSTIN,Rechnungsadresse Steuernummer
DocType: Assessment Plan,Evaluate,Bewerten
DocType: Workstation,Net Hour Rate,Nettostundensatz
@ -1350,7 +1354,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,Kaufbeleg-Artikel
DocType: Purchase Receipt,PREC-RET-,PREC-Ret
DocType: POS Profile,Sales Invoice Payment,Ausgangsrechnung-Zahlungen
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,Lager im Kundenauftrag reserviert / Fertigwarenlager
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,Verkaufsbetrag
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,Verkaufsbetrag
DocType: Repayment Schedule,Interest Amount,Zinsbetrag
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,"Sie sind der Ausgabenbewilliger für diesen Datensatz. Bitte aktualisieren Sie den ""Status"" und speichern Sie ihn ab"
DocType: Serial No,Creation Document No,Belegerstellungs-Nr.
@ -1441,7 +1445,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,Eröffnungsbilanz
,GST Sales Register,GST Verkaufsregister
DocType: Sales Invoice Advance,Sales Invoice Advance,Anzahlung auf Ausgangsrechnung
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,Nichts anzufragen
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,Nichts anzufragen
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,Wählen Sie Ihre Domains
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},Ein weitere Budgetplan '{0}' existiert bereits gegen {1} {2} 'für das Geschäftsjahr {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,Felder werden nur zum Zeitpunkt der Erstellung kopiert.
@ -1451,11 +1455,11 @@ DocType: Cheque Print Template,Payer Settings,Payer Einstellungen
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","Dies wird an den Artikelcode der Variante angehängt. Beispiel: Wenn Ihre Abkürzung ""SM"" und der Artikelcode ""T-SHIRT"" sind, so ist der Artikelcode der Variante ""T-SHIRT-SM"""
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,"Nettolohn (in Worten) wird angezeigt, sobald Sie die Gehaltsabrechnung speichern."
DocType: Purchase Invoice,Is Return,Ist Rückgabe
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,Vorsicht
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,Vorsicht
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,Return / Lastschrift
DocType: Price List Country,Price List Country,Preisliste Land
DocType: Item,UOMs,Maßeinheiten
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} gültige Seriennummern für Artikel {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} gültige Seriennummern für Artikel {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Artikelnummer kann nicht für Seriennummer geändert werden
DocType: Purchase Invoice Item,UOM Conversion Factor,Maßeinheit-Umrechnungsfaktor
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,Bitte geben Sie Item Code zu Chargennummer erhalten
@ -1495,7 +1499,7 @@ DocType: Purchase Invoice,Disable Rounded Total,"""Gesamtsumme runden"" abschalt
DocType: Employee Loan Application,Repayment Info,Die Rückzahlung Info
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +446,'Entries' cannot be empty,"""Buchungen"" kann nicht leer sein"
DocType: Maintenance Team Member,Maintenance Role,Wartungsrolle
apps/erpnext/erpnext/utilities/transaction_base.py +86,Duplicate row {0} with same {1},Doppelte Zeile {0} mit dem gleichen {1}
apps/erpnext/erpnext/utilities/transaction_base.py +86,Duplicate row {0} with same {1},Dupliziere Zeile {0} mit demselben {1}
,Trial Balance,Probebilanz
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +438,Fiscal Year {0} not found,Das Geschäftsjahr {0} nicht gefunden
apps/erpnext/erpnext/config/hr.py +305,Setting up Employees,Mitarbeiter anlegen
@ -1559,7 +1563,7 @@ DocType: Journal Entry,Get Outstanding Invoices,Ausstehende Rechnungen aufrufen
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,Kundenauftrag {0} ist nicht gültig
DocType: Supplier Scorecard,Warn for new Request for Quotations,Warnung für neue Angebotsanfrage
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,Bestellungen helfen Ihnen bei der Planung und Follow-up auf Ihre Einkäufe
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged",Verzeihung! Firmen können nicht zusammengeführt werden
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged",Verzeihung! Firmen können nicht zusammengeführt werden
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,Labortestverordnungen
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",Die gesamte Ausgabe / Transfer Menge {0} in Material anfordern {1} \ kann nicht größer sein als die angeforderte Menge {2} für Artikel {3}
@ -1597,7 +1601,6 @@ DocType: Vehicle,Fuel UOM,Kraftstoff UOM
DocType: Warehouse,Warehouse Contact Info,Kontaktinformation des Lager
DocType: Payment Entry,Write Off Difference Amount,Differenzbetrag Abschreibung
DocType: Volunteer,Volunteer Name,Freiwilliger Name
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Bitte richten Sie das Instructor Naming System in Education&gt; Education Settings ein
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0}: Mitarbeiter E-Mail nicht gefunden, E-Mail daher nicht gesendet"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},Versandregel gilt nicht für Land {0}
DocType: Item,Foreign Trade Details,Außenhandelsdetails
@ -1609,7 +1612,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,Gruppenrolle Nummer
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry",Für {0} können nur Habenkonten mit einer weiteren Sollbuchung verknüpft werden
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,Summe aller Aufgabe Gewichte sollten 1. Bitte stellen Sie Gewichte aller Projektaufgaben werden entsprechend
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,Lieferschein {0} ist nicht gebucht
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,Lieferschein {0} ist nicht gebucht
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,Artikel {0} muss ein unterbeauftragter Artikel sein
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,Betriebsvermögen
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Die Preisregel wird zunächst basierend auf dem Feld ""Anwenden auf"" ausgewählt. Dieses kann ein Artikel, eine Artikelgruppe oder eine Marke sein."
@ -1634,7 +1637,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,Es sind Unterlager für dieses Lager vorhanden. Sie können dieses Lager daher nicht löschen.
DocType: Item,Website Item Groups,Webseiten-Artikelgruppen
DocType: Purchase Invoice,Total (Company Currency),Gesamtsumme (Firmenwährung)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,Seriennummer {0} wurde mehrfach erfasst
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,Seriennummer {0} wurde mehrfach erfasst
DocType: Journal Entry,Journal Entry,Buchungssatz
DocType: Expense Claim Advance,Unclaimed amount,Nicht beanspruchte Menge
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} Elemente in Bearbeitung
@ -1730,7 +1733,7 @@ DocType: Email Digest,For Company,Für Firma
apps/erpnext/erpnext/config/support.py +17,Communication log.,Kommunikationsprotokoll
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.","Angebotsanfrage ist für den Zugriff aus dem Portal deaktiviert, für mehr Kontrolle Portaleinstellungen."
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,Einkaufsbetrag
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,Einkaufsbetrag
DocType: Sales Invoice,Shipping Address Name,Lieferadresse Bezeichnung
DocType: Material Request,Terms and Conditions Content,Allgemeine Geschäftsbedingungen Inhalt
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,Beim Erstellen des Kursplans sind Fehler aufgetreten
@ -1890,7 +1893,7 @@ DocType: Production Plan Sales Order,Production Plan Sales Order,Produktionsplan
DocType: Sales Partner,Sales Partner Target,Vertriebspartner-Ziel
DocType: Loan Type,Maximum Loan Amount,Maximaler Darlehensbetrag
DocType: Pricing Rule,Pricing Rule,Preisregel
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +58,Duplicate roll number for student {0},Duplikatrolle für Schüler {0}
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +58,Duplicate roll number for student {0},Duplikat Rollennummer für den Schüler {0}
DocType: Budget,Action if Annual Budget Exceeded,Erwünschte Aktion bei überschrittenem jährlichem Budget
apps/erpnext/erpnext/config/learn.py +197,Material Request to Purchase Order,Von der Materialanfrage zum Lieferantenauftrag
DocType: Shopping Cart Settings,Payment Success URL,Payment Success URL
@ -1993,7 +1996,7 @@ DocType: Expense Claim,Total Amount Reimbursed,Gesamterstattungsbetrag
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,Dies basiert auf Protokollen gegen dieses Fahrzeug. Siehe Zeitleiste unten für Details
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},Zu Eingangsrechnung {0} vom {1}
DocType: Customer,Default Price List,Standardpreisliste
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,Asset-Bewegung Datensatz {0} erstellt
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,Asset-Bewegung Datensatz {0} erstellt
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,Sie können das Geschäftsjahr {0} nicht löschen. Das Geschäftsjahr {0} ist als Standard in den globalen Einstellungen festgelegt
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,Ein Kunde mit demselben Namen existiert bereits
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,Dies wird Gehaltsabrechnungen übermitteln und eine periodengerechte Journalbuchung erstellen. Willst du fortfahren?
@ -2007,6 +2010,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,Preisgestaltung
DocType: Quotation,Term Details,Details der Geschäftsbedingungen
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,Kann nicht mehr als {0} Studenten für diese Studentengruppe einschreiben.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),Summe (ohne Steuern)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,Anazhl Leads
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} muss größer 0 sein
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,Lager verfügbar
@ -2025,7 +2029,6 @@ DocType: Lab Test,Technician Name,Techniker Name
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,Unlink Zahlung auf Annullierung der Rechnung
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},Der eingegebene aktuelle Kilometerstand sollte größer sein als der Anfangskilometerstand {0}
DocType: Restaurant Reservation,No Show,Keine Show
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Setzen Sie die Namensserie für {0} über Setup&gt; Einstellungen&gt; Namensserie
DocType: Shipping Rule Country,Shipping Rule Country,Versandregel für Land
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,Urlaub und Anwesenheit
DocType: Maintenance Visit,Partially Completed,Teilweise abgeschlossen
@ -2116,7 +2119,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,Student Group Instructor
DocType: Grant Application,Assessment Mark (Out of 10),Bewertungsnote (von 10)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 Mobil Nein
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,Haupt
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,Haupt
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,Variante
DocType: Naming Series,Set prefix for numbering series on your transactions,Präfix für die Seriennummerierung Ihrer Transaktionen festlegen
DocType: Employee Attendance Tool,Employees HTML,Mitarbeiter HTML
@ -2164,7 +2167,7 @@ DocType: Crop,Crop Spacing,Fruchtabstand
DocType: Course,Course Abbreviation,Kurs Abkürzung
DocType: Student Leave Application,Student Leave Application,Student Urlaubsantrag
DocType: Item,Will also apply for variants,Gilt auch für Varianten
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","Vermögen kann nicht rückgängig gemacht werden, da es ohnehin schon {0} ist"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","Vermögen kann nicht rückgängig gemacht werden, da es ohnehin schon {0} ist"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},Mitarbeiter {0} am {1} nur halbtags anwesend
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},Insgesamt Arbeitszeit sollte nicht größer sein als die maximale Arbeitszeit {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,Am
@ -2348,9 +2351,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),Das tatsächliche Enddatum (durch Zeiterfassung)
DocType: Soil Texture,Soil Type,Bodenart
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},Menge {0} {1} gegen {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,Neue Nachricht
,Quotation Trends,Trendanalyse Angebote
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},Artikelgruppe ist im Artikelstamm für Artikel {0} nicht erwähnt
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,Sollkonto muss ein Forderungskonto sein
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,Sollkonto muss ein Forderungskonto sein
DocType: Shipping Rule,Shipping Amount,Versandbetrag
DocType: Supplier Scorecard Period,Period Score,Periodenspieler
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,Kunden hinzufügen
@ -2361,7 +2365,7 @@ DocType: Purchase Order,Delivered,Geliefert
,Vehicle Expenses,Fahrzeugkosten
DocType: Serial No,Invoice Details,Rechnungs-Details
DocType: Grant Application,Show on Website,Auf der Website anzeigen
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},Erwartungswert nach Nutzungsdauer muss größer sein als oder gleich {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},Erwartungswert nach Nutzungsdauer muss größer sein als oder gleich {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,Beginnen am
DocType: Hub Category,Hub Category,Hub-Kategorie
DocType: Purchase Invoice,SEZ,SEZ
@ -2392,7 +2396,7 @@ DocType: Patient,Patient Details,Patientendetails
DocType: Patient,B Positive,B Positiv
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","Row # {0}: Menge muss 1 sein, als Element eine Anlage ist. Bitte verwenden Sie separate Zeile für mehrere Menge."
DocType: Leave Block List Allow,Leave Block List Allow,Urlaubssperrenliste zulassen
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,"""Abbr"" kann nicht leer oder Space sein"
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,"""Abbr"" kann nicht leer oder Space sein"
DocType: Patient Medical Record,Patient Medical Record,Patient Medizinische Aufzeichnung
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,Gruppe an konzernfremde
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,Sport
@ -2442,6 +2446,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,"Kann einen empfangenen RFQ nicht auf ""kein Zitat"" setzen."
DocType: Quotation,QTN-,ANG-
DocType: Salary Slip,Total Deduction,Gesamtabzug
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,"Wählen Sie ein Konto aus, das in der Kontowährung gedruckt werden soll"
,Production Analytics,Produktions-Analysen
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,Dies beruht auf Transaktionen gegen diesen Patienten. Siehe Zeitleiste unten für Details
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,Kosten aktualisiert
@ -2496,7 +2501,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,Einst
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,Firma auswählen...
DocType: Leave Control Panel,Leave blank if considered for all departments,"Freilassen, wenn für alle Abteilungen gültig"
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","Art der Beschäftigung (Unbefristeter Vertrag, befristeter Vertrag, Praktikum etc.)"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} Artikel ist zwingend erfoderlich für {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} Artikel ist zwingend erfoderlich für {1}
DocType: Payroll Entry,Fortnightly,vierzehntägig
DocType: Currency Exchange,From Currency,Von Währung
DocType: Vital Signs,Weight (In Kilogram),Gewicht (in Kilogramm)
@ -2572,7 +2577,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),Grundbetrag (Gesellschaf
DocType: Student,Guardians,Wächter
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,"Die Preise werden nicht angezeigt, wenn Preisliste nicht gesetzt"
DocType: Stock Entry,Total Incoming Value,Summe der Einnahmen
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,Debit Um erforderlich
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,Debit Um erforderlich
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Zeiterfassungen helfen den Überblick über Zeit, Kosten und Abrechnung für Aktivitäten von Ihrem Team getan"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,Einkaufspreisliste
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,Vorlagen der Lieferanten-Scorecard-Variablen.
@ -2673,7 +2678,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,Nur zu Referenzzwecken.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},Arzt {0} nicht verfügbar auf {1}
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,Wählen Sie Batch No
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},Ungültige(r/s) {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},Ungültige(r/s) {0}: {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-Ret
DocType: Fee Validity,Reference Inv,Referenz ERE
@ -2710,8 +2715,8 @@ DocType: Fees,Send Payment Request,Zahlungsauftrag senden
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.",Arbeitsgänge und Betriebskosten angeben und eine eindeutige Arbeitsgang-Nr. für diesen Arbeitsgang angeben.
DocType: Water Analysis,Origin,Ursprung
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,Dieses Dokument ist über dem Limit von {0} {1} für item {4}. Machen Sie eine andere {3} gegen die gleiche {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,Bitte setzen Sie wiederkehrende nach dem Speichern
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,Wählen Sie Änderungsbetrag Konto
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,Bitte setzen Sie wiederkehrende nach dem Speichern
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,Wählen Sie Änderungsbetrag Konto
DocType: Purchase Invoice,Price List Currency,Preislistenwährung
DocType: Naming Series,User must always select,Benutzer muss immer auswählen
DocType: Stock Settings,Allow Negative Stock,Negativen Lagerbestand zulassen
@ -2767,7 +2772,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,Wartungsplandet
DocType: Supplier Scorecard,Warn for new Purchase Orders,Warnung für neue Bestellungen
DocType: Quality Inspection Reading,Reading 9,Ablesewert 9
DocType: Supplier,Is Frozen,Ist gesperrt
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,Gruppenknoten Lager ist nicht für Transaktionen zu wählen erlaubt
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,Gruppenknoten Lager ist nicht für Transaktionen zu wählen erlaubt
DocType: Buying Settings,Buying Settings,Einkaufs-Einstellungen
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,Stücklisten-Nr. für einen fertigen Artikel
DocType: Upload Attendance,Attendance To Date,Anwesenheit bis Datum
@ -2781,6 +2786,7 @@ DocType: Offer Letter,Accepted,Genehmigt
DocType: Grant Application,Organization,Firma
DocType: BOM Update Tool,BOM Update Tool,BOM Update Tool
DocType: SG Creation Tool Course,Student Group Name,Schülergruppenname
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,Explosionsansicht anzeigen
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,Gebühren anlegen
apps/erpnext/erpnext/setup/doctype/company/company.js +91,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.,"Bitte sicher stellen, dass wirklich alle Transaktionen für diese Firma gelöscht werden sollen. Die Stammdaten bleiben bestehen. Diese Aktion kann nicht rückgängig gemacht werden."
DocType: Room,Room Number,Zimmernummer
@ -2791,7 +2797,7 @@ DocType: Journal Entry Account,Payroll Entry,Personalabrechnung
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,Steuervorlage erstellen
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,Benutzer-Forum
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,Rohmaterial kann nicht leer sein
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","Lager konnte nicht aktualisiert werden, Rechnung enthält Direktversand-Artikel."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","Lager konnte nicht aktualisiert werden, Rechnung enthält Direktversand-Artikel."
DocType: Lab Test Sample,Lab Test Sample,Labortestprobe
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,Schnellbuchung
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,"Sie können den Preis nicht ändern, wenn eine Stückliste für einen Artikel aufgeführt ist"
@ -2862,7 +2868,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,US Dollar
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,Rechnung erstellen
DocType: Selling Settings,Auto close Opportunity after 15 days,Auto schließen Gelegenheit nach 15 Tagen
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Kaufaufträge sind für {0} wegen einer Scorecard von {1} nicht erlaubt.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Kaufaufträge sind für {0} wegen einer Scorecard von {1} nicht erlaubt.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,Ende Jahr
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Quot / Lead%
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,Vertragsende muss weiter in der Zukunft liegen als Eintrittsdatum sein
@ -2974,7 +2980,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,Über 90
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,Row # {0}: Journal Entry {1} nicht Konto {2} oder bereits abgestimmt gegen einen anderen Gutschein
DocType: Supplier Scorecard Criteria,Criteria Weight,Kriterien Gewicht
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Lieferant&gt; Lieferantentyp
DocType: Buying Settings,Default Buying Price List,Standard-Einkaufspreisliste
DocType: Payroll Entry,Salary Slip Based on Timesheet,Gehaltsabrechnung Basierend auf Timesheet
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,Kaufrate
@ -3062,7 +3067,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,Leads nach Branchentyp nachverfolgen
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,Gehe zu Briefpapier
DocType: Item Supplier,Item Supplier,Artikellieferant
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,Bitte die Artikelnummer eingeben um die Chargennummer zu erhalten
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,Bitte die Artikelnummer eingeben um die Chargennummer zu erhalten
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},Bitte einen Wert für {0} Angebot an {1} auswählen
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,Alle Adressen
DocType: Company,Stock Settings,Lager-Einstellungen
@ -3251,6 +3256,7 @@ DocType: Employee Loan,Loan Details,Darlehensdetails
DocType: Company,Default Inventory Account,Standard Inventurkonto
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,Row {0}: Abgeschlossen Menge muss größer als Null sein.
DocType: Antibiotic,Antibiotic Name,Antibiotika-Name
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Artikelcode&gt; Artikelgruppe&gt; Marke
DocType: Purchase Invoice,Apply Additional Discount On,Zusätzlichen Rabatt gewähren auf
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,Art auswählen...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,"Eine Verknüpfung zu allen Landeinheiten, in denen die Kulturpflanze wächst"
@ -3444,6 +3450,7 @@ DocType: Guardian Student,Guardian Student,Wächter Studenten
DocType: Supplier,Credit Limit,Kreditlimit
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,Durchschn. Preislistenpreis verkaufen
DocType: Production Plan Sales Order,Salse Order Date,Bestelldatum
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Lieferant&gt; Lieferantentyp
DocType: Salary Component,Salary Component,Gehaltskomponente
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,Zahlungs Einträge {0} sind un-linked
DocType: GL Entry,Voucher No,Belegnr.
@ -3452,7 +3459,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,Am beliebtesten
DocType: Leave Allocation,Leave Allocation,Urlaubszuordnung
DocType: Payment Request,Recipient Message And Payment Details,Empfänger der Nachricht und Zahlungsdetails
DocType: Training Event,Trainer Email,Trainer E-Mail
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,Materialanfrage {0} erstellt
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,Materialanfrage {0} erstellt
DocType: Restaurant Reservation,No of People,Nein von Menschen
DocType: Production Planning Tool,Include sub-contracted raw materials,Fügen Sie Unteraufträge Rohstoffe
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,Vorlage für Geschäftsbedingungen oder Vertrag
@ -3516,7 +3523,7 @@ DocType: Landed Cost Item,Receipt Document,Eingangsbeleg
DocType: Production Planning Tool,Create Material Requests,Materialanfragen erstellen
DocType: Employee Education,School/University,Schule/Universität
DocType: Payment Request,Reference Details,Referenzdetails
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,Erwartungswert nach der Ausmusterung muss kleiner sein als Bruttokaufbetrag
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,Erwartungswert nach der Ausmusterung muss kleiner sein als Bruttokaufbetrag
DocType: Sales Invoice Item,Available Qty at Warehouse,Verfügbarer Lagerbestand
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,Rechnungsbetrag
DocType: Asset,Double Declining Balance,Doppelte degressive
@ -3528,7 +3535,7 @@ DocType: Attendance,On Leave,Im Urlaub
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,Updates abholen
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: Konto {2} gehört nicht zur Firma {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,Wählen Sie mindestens einen Wert für jedes der Attribute aus.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,Materialanfrage {0} wird storniert oder gestoppt
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,Materialanfrage {0} wird storniert oder gestoppt
apps/erpnext/erpnext/config/hr.py +310,Leave Management,Urlaube verwalten
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,Gruppieren nach Konto
DocType: Sales Order,Fully Delivered,Komplett geliefert
@ -3539,14 +3546,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},Zahlter Betrag kann nicht größer sein als Darlehensbetrag {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,Gehen Sie zu Programme
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},Zeile {0} # Der zugewiesene Betrag {1} darf nicht größer sein als der nicht beanspruchte Betrag {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Bitte richten Sie die Nummerierungsserie für die Teilnahme über Setup&gt; Nummerierungsserie ein
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},Lieferantenauftragsnummer ist für den Artikel {0} erforderlich
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,Fertigungsauftrag nicht erstellt
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"""Von-Datum"" muss nach ""Bis-Datum"" liegen"
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},Kann nicht den Status als Student ändern {0} ist mit Studenten Anwendung verknüpft {1}
DocType: Asset,Fully Depreciated,vollständig abgeschriebene
,Stock Projected Qty,Prognostizierte Lagerbestandsmenge
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},Customer {0} gehört nicht zum Projekt {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},Customer {0} gehört nicht zum Projekt {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,Marked Teilnahme HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers",Angebote sind Offerten an einen Kunden zur Lieferung von Materialien bzw. zur Erbringung von Leistungen.
DocType: Sales Order,Customer's Purchase Order,Kundenauftrag
@ -3630,7 +3636,7 @@ DocType: Salary Slip,Hour Rate,Stundensatz
DocType: Stock Settings,Item Naming By,Artikelbezeichnung nach
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},Eine weitere Periodenabschlussbuchung {0} wurde nach {1} erstellt
DocType: Production Order,Material Transferred for Manufacturing,Material zur Herstellung übertragen
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,Konto {0} existiert nicht
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,Konto {0} existiert nicht
DocType: Project,Project Type,Projekttyp
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,Untergeordnete Aufgabe existiert für diese Aufgabe. Sie können diese Aufgabe nicht löschen.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,Entweder Zielstückzahl oder Zielmenge ist zwingend erforderlich.
@ -3732,11 +3738,11 @@ DocType: C-Form,I,ich
DocType: Company,Asset Depreciation Cost Center,Kostenstelle für Anlagenabschreibung
DocType: Sales Order Item,Sales Order Date,Kundenauftrags-Datum
DocType: Sales Invoice Item,Delivered Qty,Gelieferte Stückzahl
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,Gesamtpreis MwSt
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","Wenn aktiviert, werden alle Unterartikel der einzelnen Produktionssartikel in die Materialanforderungen einbezogen."
DocType: Assessment Plan,Assessment Plan,Beurteilungsplan
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,Kunde {0} wird erstellt.
DocType: Stock Settings,Limit Percent,Limit-Prozent
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Bitte richten Sie das Instructor Naming System in Education&gt; Education Settings ein
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,Derzeit ist kein Bestand in einem Lager verfügbar
,Payment Period Based On Invoice Date,Zahlungszeitraum basierend auf Rechnungsdatum
DocType: Sample Collection,No. of print,Anzahl Druck
@ -3752,12 +3758,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),Schuldnern ({0})
DocType: Pricing Rule,Margin,Marge
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,Neue Kunden
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,Rohgewinn %
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,Rohgewinn %
DocType: Appraisal Goal,Weightage (%),Gewichtung (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,Ändern Sie das POS-Profil
DocType: Bank Reconciliation Detail,Clearance Date,Abrechnungsdatum
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,Beurteilung
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,Bruttokaufbetrag ist erforderlich
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,Bruttokaufbetrag ist erforderlich
DocType: Lead,Address Desc,Adresszusatz
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,Partei ist obligatorisch
DocType: Journal Entry,JV-,JV-
@ -3774,7 +3780,7 @@ Descriptive for tests which have multiple result components and corresponding re
Grouped for test templates which are a group of other test templates.
<br>
No Result for tests with no results. Also, no Lab Test is created. e.g.. Sub Tests for Grouped results.","Single für Ergebnisse, die nur einen einzigen Eingang, Ergebnis UOM und Normalwert erfordern <br> Compound für Ergebnisse, die mehrere Eingabefelder mit entsprechenden Ereignisnamen, Ergebnis-UOMs und Normalwerten erfordern <br> Beschreibend für Tests mit mehreren Ergebniskomponenten und entsprechenden Ergebniserfassungsfeldern. <br> Gruppiert für Testvorlagen, die eine Gruppe von anderen Testvorlagen sind. <br> Kein Ergebnis für Tests ohne Ergebnisse. Außerdem wird kein Labortest erstellt. z.B. Sub-Tests für gruppierte Ergebnisse."
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +75,Row #{0}: Duplicate entry in References {1} {2},Zeile # {0}: Eintrag in Referenzen verdoppeln {1} {2}
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +75,Row #{0}: Duplicate entry in References {1} {2},Zeile # {0}: Eintrag in Referenzen {1} {2} duplizieren
apps/erpnext/erpnext/config/manufacturing.py +57,Where manufacturing operations are carried.,"Ort, an dem Arbeitsgänge der Fertigung ablaufen."
apps/erpnext/erpnext/education/doctype/instructor/instructor.js +18,As Examiner,Als Prüfer
DocType: Asset Movement,Source Warehouse,Ausgangslager
@ -3789,7 +3795,6 @@ DocType: Account,Accumulated Depreciation,Kumulierte Abschreibungen
DocType: Supplier Scorecard Scoring Standing,Standing Name,Standing Name
DocType: Stock Entry,Customer or Supplier Details,Kunden- oder Lieferanten-Details
DocType: Employee Loan Application,Required by Date,Erforderlich by Date
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),Schlussbilanz (Dr - Cr)
DocType: Lead,Lead Owner,Eigentümer des Leads
DocType: Bin,Requested Quantity,die angeforderte Menge
DocType: Patient,Marital Status,Familienstand
@ -3803,7 +3808,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,Mehrere Varianten
DocType: Sales Invoice,Against Income Account,Zu Ertragskonto
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% geliefert
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Artikel {0}: Bestellmenge {1} kann nicht weniger als Mindestbestellmenge {2} (im Artikel definiert) sein.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Artikel {0}: Bestellmenge {1} kann nicht weniger als Mindestbestellmenge {2} (im Artikel definiert) sein.
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,Prozentuale Aufteilung der monatsweisen Verteilung
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,Bitte melden Sie sich als anderer Benutzer an.
DocType: Territory,Territory Targets,Ziele für die Region
@ -3902,7 +3907,7 @@ DocType: Program Enrollment,School House,School House
DocType: Serial No,Out of AMC,Außerhalb des jährlichen Wartungsvertrags
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,Anzahl der Abschreibungen gebucht kann nicht größer sein als Gesamtzahl der abschreibungen
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,Wartungsbesuch erstellen
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,"Bitte den Benutzer kontaktieren, der die Vertriebsleiter {0}-Rolle inne hat"
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,"Bitte den Benutzer kontaktieren, der die Vertriebsleiter {0}-Rolle inne hat"
DocType: Company,Default Cash Account,Standardbarkonto
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,Unternehmensstammdaten (nicht Kunde oder Lieferant)
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,Dies hängt von der Anwesenheit dieses Studierenden ab
@ -4052,7 +4057,6 @@ DocType: Delivery Note Item,From Warehouse,Ab Lager
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,Keine Mitarbeiter für die genannten Kriterien
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,Keine Elemente mit Bill of Materials zu Herstellung
DocType: Restaurant,Default Customer,Standardkunde
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Bitte richten Sie das Mitarbeiterbenennungssystem in Human Resource&gt; HR Settings ein
DocType: Assessment Plan,Supervisor Name,Name des Vorgesetzten
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,"Bestätigen Sie nicht, ob der Termin für denselben Tag erstellt wurde"
DocType: Program Enrollment Course,Program Enrollment Course,Programm Einschreibung Kurs
@ -4170,7 +4174,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,Webseiten-Beschreibung
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,Nettoveränderung des Eigenkapitals
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,Neueste
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,Bitte stornieren Einkaufsrechnung {0} zuerst
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,Bitte stornieren Einkaufsrechnung {0} zuerst
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","E-Mail-Adresse muss eindeutig sein, diese wird bereits für {0} verwendet"
DocType: Serial No,AMC Expiry Date,Verfalldatum des jährlichen Wartungsvertrags
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,Kaufbeleg
@ -4187,7 +4191,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,Noch keine Kun
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,Geldflussrechnung
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},Darlehensbetrag darf nicht höher als der Maximalbetrag {0} sein
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,Lizenz
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},Bitte diese Rechnung {0} vom Kontaktformular {1} entfernen
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},Bitte diese Rechnung {0} vom Kontaktformular {1} entfernen
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,"Bitte auf ""Übertragen"" klicken, wenn auch die Abwesenheitskonten des vorangegangenen Geschäftsjahrs in dieses Geschäftsjahr einbezogen werden sollen"
DocType: GL Entry,Against Voucher Type,Gegenbeleg-Art
DocType: Physician,Phone (R),Telefon (R)
@ -4199,7 +4203,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,B Negativ
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,Der Wartungsstatus muss abgebrochen oder zum Senden abgeschlossen werden
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},Konto {0} gehört nicht zu Firma {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,Seriennummern in Zeile {0} stimmt nicht mit der Lieferschein überein
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,Seriennummern in Zeile {0} stimmt nicht mit der Lieferschein überein
DocType: Student,Guardian Details,Wächter-Details
DocType: C-Form,C-Form,Kontakt-Formular
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,Anwesenheit für mehrere Mitarbeiter markieren
@ -4241,7 +4245,7 @@ DocType: Opening Invoice Creation Tool,Sales,Vertrieb
DocType: Stock Entry Detail,Basic Amount,Grundbetrag
DocType: Training Event,Exam,Prüfung
DocType: Complaint,Complaint,Beschwerde
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},Angabe des Lagers ist für den Lagerartikel {0} erforderlich
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},Angabe des Lagers ist für den Lagerartikel {0} erforderlich
DocType: Leave Allocation,Unused leaves,Ungenutzter Urlaub
DocType: Patient,Alcohol Past Use,vergangener Alkoholkonsum
DocType: Fertilizer Content,Fertilizer Content,Dünger Inhalt
@ -4365,6 +4369,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,Formel
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,Serien #
DocType: Lab Test Template,Lab Test Template,Labortestvorlage
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,Verkaufskonto
DocType: Purchase Invoice Item,Total Weight,Gesamtgewicht
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,Provision auf den Umsatz
DocType: Offer Letter Term,Value / Description,Wert / Beschreibung
@ -4521,7 +4526,7 @@ Updated via 'Time Log'","""In Minuten"" über 'Zeitprotokoll' aktualisiert"
DocType: Customer,From Lead,Von Lead
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,Für die Produktion freigegebene Bestellungen
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,Geschäftsjahr auswählen ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,"Verkaufsstellen-Profil benötigt, um Verkaufsstellen-Buchung zu erstellen"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,"Verkaufsstellen-Profil benötigt, um Verkaufsstellen-Buchung zu erstellen"
DocType: Program Enrollment Tool,Enroll Students,einschreiben Studenten
DocType: Lab Test,Approved Date,Genehmigter Termin
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,Standard-Vertrieb
@ -4597,7 +4602,7 @@ DocType: Employee,Held On,Festgehalten am
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,Produktions-Artikel
,Employee Information,Mitarbeiterinformationen
DocType: Stock Entry Detail,Additional Cost,Zusätzliche Kosten
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","Wenn nach Beleg gruppiert wurde, kann nicht auf Grundlage von Belegen gefiltert werden."
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","Wenn nach Beleg gruppiert wurde, kann nicht auf Grundlage von Belegen gefiltert werden."
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,Lieferantenangebot erstellen
DocType: Quality Inspection,Incoming,Eingehend
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,Standardsteuervorlagen für Verkauf und Einkauf werden erstellt.
@ -4614,7 +4619,7 @@ DocType: Batch,Batch ID,Chargen-ID
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},Hinweis: {0}
,Delivery Note Trends,Entwicklung Lieferscheine
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,Zusammenfassung dieser Woche
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,Anzahl auf Lager
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,Anzahl auf Lager
DocType: Delivery Trip,Calculate Estimated Arrival Times,Berechnen Sie die voraussichtliche Ankunftszeit
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,Konto: {0} kann nur über Lagertransaktionen aktualisiert werden
DocType: Student Group Creation Tool,Get Courses,Erhalten Sie Kurse
@ -4630,7 +4635,7 @@ DocType: Purchase Order,To Bill,Abrechnen
DocType: Material Request,% Ordered,% bestellt
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.",Für die Kursbasierte Studentengruppe wird der Kurs für jeden Schüler aus den eingeschriebenen Kursen in der Programmregistrierung validiert.
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,Akkordarbeit
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,Durchschnittlicher Einkaufspreis
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,Durchschnittlicher Einkaufspreis
DocType: Task,Actual Time (in Hours),Tatsächliche Zeit (in Stunden)
DocType: Employee,History In Company,Historie im Unternehmen
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},Neue Nachricht von {Absender}
@ -4678,7 +4683,7 @@ DocType: Asset Repair,Asset Repair,Anlagenreparatur
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},Row {0}: Währung der BOM # {1} sollte auf die gewählte Währung gleich {2}
DocType: Journal Entry Account,Exchange Rate,Wechselkurs
DocType: Patient,Additional information regarding the patient,Zusätzliche Informationen zum Patienten
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,Kundenauftrag {0} wurde nicht übertragen
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,Kundenauftrag {0} wurde nicht übertragen
DocType: Homepage,Tag Line,Tag-Linie
DocType: Fee Component,Fee Component,Fee-Komponente
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,Flottenmanagement
@ -4890,7 +4895,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,Details zum Beurteilu
DocType: Employee Education,Employee Education,Mitarbeiterschulung
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,Doppelte Artikelgruppe in der Artikelgruppentabelle gefunden
DocType: Land Unit,Parent Land Unit,Elternlandeinheit
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,"Wird gebraucht, um Artikeldetails abzurufen"
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,"Wird gebraucht, um Artikeldetails abzurufen"
DocType: Fertilizer,Fertilizer Name,Dünger Name
DocType: Salary Slip,Net Pay,Nettolohn
DocType: Account,Account,Konto
@ -4969,7 +4974,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),Tatsächliche Anzahl (
DocType: Item Customer Detail,Ref Code,Ref-Code
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,Kundengruppe ist im POS-Profil erforderlich
apps/erpnext/erpnext/config/hr.py +12,Employee records.,Mitarbeiterdatensätze
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,Bitte setzen Sie Next Abschreibungen Datum
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,Bitte setzen Sie Next Abschreibungen Datum
DocType: HR Settings,Payroll Settings,Einstellungen zur Gehaltsabrechnung
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,Nicht verknüpfte Rechnungen und Zahlungen verknüpfen
DocType: POS Settings,POS Settings,POS-Einstellungen
@ -5136,7 +5141,7 @@ DocType: Item,Customer Code,Kunden-Nr.
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},Geburtstagserinnerung für {0}
DocType: Asset Maintenance Task,Last Completion Date,Letztes Fertigstellungsdatum
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,Tage seit dem letzten Auftrag
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,Sollkonto muss ein Bilanzkonto sein
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,Sollkonto muss ein Bilanzkonto sein
DocType: Buying Settings,Naming Series,Nummernkreis
DocType: Leave Block List,Leave Block List Name,Name der Urlaubssperrenliste
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,Versicherung Startdatum sollte weniger als Versicherung Enddatum
@ -5263,6 +5268,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,Get Payment-Einträge
DocType: Quotation Item,Against Docname,Zu Dokumentenname
DocType: SMS Center,All Employee (Active),Alle Mitarbeiter (Aktiv)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Kunde&gt; Kundengruppe&gt; Gebiet
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,Jetzt ansehen
DocType: BOM,Raw Material Cost,Rohmaterialkosten
DocType: Item Reorder,Re-Order Level,Meldebestand
@ -5361,7 +5367,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,Sitzplatzkapazität
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,Labortestgruppen
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Kunde&gt; Kundengruppe&gt; Gebiet
DocType: Project,Total Expense Claim (via Expense Claims),Gesamtbetrag der Aufwandsabrechnung (über Aufwandsabrechnungen)
DocType: GST Settings,GST Summary,GST Zusammenfassung
DocType: Assessment Result,Total Score,Gesamtpunktzahl
@ -5374,7 +5379,7 @@ DocType: Batch,Source Document Type,Quelldokumenttyp
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,Folgende Kurspläne wurden erstellt
DocType: Journal Entry,Total Debit,Gesamt-Soll
DocType: Manufacturing Settings,Default Finished Goods Warehouse,Standard-Fertigwarenlager
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,Vertriebsmitarbeiter
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,Vertriebsmitarbeiter
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,Budget und Kostenstellen
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,Mehrere Standard-Zahlungsarten sind nicht erlaubt
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,für die
@ -5547,7 +5552,7 @@ DocType: Program,Program Name,Programmname
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Steuern oder Gebühren berücksichtigen für
DocType: Driver,Driving License Category,Führerscheinkategorie
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,Die tatsächliche Menge ist zwingend erforderlich
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} hat derzeit eine {1} Supplier Scorecard stehen, und Bestellungen an diesen Lieferanten sollten mit Vorsicht erteilt werden."
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} hat derzeit eine {1} Supplier Scorecard stehen, und Bestellungen an diesen Lieferanten sollten mit Vorsicht erteilt werden."
DocType: Asset Maintenance Team,Asset Maintenance Team,Asset-Wartungsteam
DocType: Employee Loan,Loan Type,Art des Darlehens
DocType: Scheduling Tool,Scheduling Tool,Scheduling-Werkzeug

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,Lab Συνταγή
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,Ταξινόμηση κατά Τιμή
,Delay Days,Ημέρες καθυστέρησης
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,Δαπάνη παροχής υπηρεσιών
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},Σειριακός αριθμός: {0} αναφέρεται ήδη στο Τιμολόγιο Πωλήσεων: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},Σειριακός αριθμός: {0} αναφέρεται ήδη στο Τιμολόγιο Πωλήσεων: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,Τιμολόγιο
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,Δημιουργία καταχώρησης Αποθέματος Αποθήκευσης
DocType: Purchase Invoice Item,Item Weight Details,Λεπτομέρειες βάρους στοιχείου
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,Όνομα αρχείου γονικ
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","Αναφορά: {0}, Κωδικός είδους: {1} και Πελάτης: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,Kg
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,Άνοιγμα θέσης εργασίας.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},Το BOM δεν έχει οριστεί για την υπεργολαβία του στοιχείου {0} στη σειρά {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},Το BOM δεν έχει οριστεί για την υπεργολαβία του στοιχείου {0} στη σειρά {1}
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} Αποτέλεσμα υποβολής
DocType: Item Attribute,Increment,Προσαύξηση
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,Χρονικό διάστημα
@ -150,7 +150,7 @@ DocType: Patient,Married,Παντρεμένος
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},Δεν επιτρέπεται η {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,Πάρτε τα στοιχεία από
DocType: Price List,Price Not UOM Dependant,Τιμή Δεν εξαρτάται από UOM
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},Το απόθεμα δεν μπορεί να ανανεωθεί σύμφωνα με το δελτίο αποστολής {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},Το απόθεμα δεν μπορεί να ανανεωθεί σύμφωνα με το δελτίο αποστολής {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},Προϊόν {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,Δεν αναγράφονται στοιχεία
DocType: Asset Repair,Error Description,Περιγραφή σφάλματος
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,Συμφωνήστε
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,Παντοπωλείο
DocType: Quality Inspection Reading,Reading 1,Μέτρηση 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,Ιδιωτικά ταμεία συντάξεων
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,Επόμενο Αποσβέσεις ημερομηνία αυτή δεν μπορεί να είναι πριν από την Ημερομηνία Αγοράς
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,Επόμενο Αποσβέσεις ημερομηνία αυτή δεν μπορεί να είναι πριν από την Ημερομηνία Αγοράς
DocType: Crop,Perennial,Αιωνόβιος
DocType: Consultation,Consultation Date,Ημερομηνία διαβούλευσης
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,Κατάλογος προϊόντων και ανακάλυψη για χρήστες ERPNext
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,Κέντρου κόστους δια
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""",π.χ. «Δημοτικό Σχολείο» ή «Πανεπιστήμιο»
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,Αναφορές απόθεμα
DocType: Warehouse,Warehouse Detail,Λεπτομέρειες αποθήκης
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},Το πιστωτικό όριο έχει ξεπεραστεί για τον πελάτη {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},Το πιστωτικό όριο έχει ξεπεραστεί για τον πελάτη {0} {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,Το τέλος Όρος ημερομηνία δεν μπορεί να είναι μεταγενέστερη της χρονιάς Ημερομηνία Λήξης του Ακαδημαϊκού Έτους στην οποία ο όρος συνδέεται (Ακαδημαϊκό Έτος {}). Διορθώστε τις ημερομηνίες και προσπαθήστε ξανά.
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","&quot;Είναι Παγίων&quot; δεν μπορεί να είναι ανεξέλεγκτη, καθώς υπάρχει Asset ρεκόρ έναντι του στοιχείου"
DocType: Delivery Trip,Departure Time,Ωρα αναχώρησης
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,φοιτητής Σύνδεση
DocType: Quality Inspection,Get Specification Details,Βρες λεπτομέρειες προδιαγραφών
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,Πρότυπα κατάταξης προμηθευτών.
DocType: Lead,Interested,Ενδιαφερόμενος
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,Άνοιγμα
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,Άνοιγμα
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},Από {0} έως {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,Αποτυχία ορισμού φόρων
DocType: Item,Copy From Item Group,Αντιγραφή από ομάδα ειδών
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,Η ημερομηνία απαλλαγής πρέπει να είναι μεταγενέστερη από την ημερομηνία ένταξης
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,Αφήνει ανά έτος
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,Γραμμή {0}: παρακαλώ επιλέξτε το «είναι προκαταβολή» έναντι του λογαριασμού {1} αν αυτό είναι μια καταχώρηση προκαταβολής.
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},Η αποθήκη {0} δεν ανήκει στην εταιρεία {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},Η αποθήκη {0} δεν ανήκει στην εταιρεία {1}
DocType: Email Digest,Profit & Loss,Απώλειες κερδών
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,Λίτρο
DocType: Task,Total Costing Amount (via Time Sheet),Σύνολο Κοστολόγηση Ποσό (μέσω Ώρα Φύλλο)
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,Τιμή &amp; Ποσό
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,"Αυτό βασίζεται σε συναλλαγές έναντι αυτής της Εταιρείας. Για λεπτομέρειες, δείτε την παρακάτω χρονολογική σειρά"
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Ειδοποίηση μέσω email σχετικά με την αυτόματη δημιουργία αιτήσης υλικού
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,Ανθεκτικός
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Διαβουλεύσεις
DocType: Journal Entry,Multi Currency,Πολλαπλό Νόμισμα
DocType: Opening Invoice Creation Tool,Invoice Type,Τύπος τιμολογίου
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,Δελτίο αποστολής
@ -528,7 +529,6 @@ DocType: Email Digest,Credit Balance,Υπόλοιπο πίστωσης
DocType: Employee,Widowed,Χήρος
DocType: Request for Quotation,Request for Quotation,Αίτηση για προσφορά
DocType: Healthcare Settings,Require Lab Test Approval,Απαιτείται έγκριση δοκιμής εργαστηρίου
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Κωδικός στοιχείου&gt; Ομάδα στοιχείων&gt; Μάρκα
DocType: Salary Slip Timesheet,Working Hours,Ώρες εργασίας
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,Σύνολο εξαιρετικών
DocType: Naming Series,Change the starting / current sequence number of an existing series.,Αλλάξτε τον αρχικό/τρέχων αύξοντα αριθμός μιας υπάρχουσας σειράς.
@ -557,7 +557,7 @@ DocType: Subscription,Yearly,Ετήσια
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,Παρακαλώ εισάγετε κέντρο κόστους
DocType: Drug Prescription,Dosage,Δοσολογία
DocType: Journal Entry Account,Sales Order,Παραγγελία πώλησης
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,Μέση τιμή πώλησης
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,Μέση τιμή πώλησης
DocType: Assessment Plan,Examiner Name,Όνομα εξεταστής
DocType: Lab Test Template,No Result,Κανένα αποτέλεσμα
DocType: Purchase Invoice Item,Quantity and Rate,Ποσότητα και τιμή
@ -605,6 +605,7 @@ DocType: Employee,Health Concerns,Ανησυχίες για την υγεία
DocType: Payroll Entry,Select Payroll Period,Επιλέξτε Περίοδο Μισθοδοσίας
DocType: Purchase Invoice,Unpaid,Απλήρωτα
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,Προορίζεται για την πώληση
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Ρυθμίστε το Σύστημα Ονοματοδοσίας Εργαζομένων σε Ανθρώπινο Δυναμικό&gt; Ρυθμίσεις HR
DocType: Packing Slip,From Package No.,Από αρ. συσκευασίας
DocType: Item Attribute,To Range,Να Σειρά
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,Κινητές αξίες και καταθέσεις
@ -629,11 +630,11 @@ DocType: Pricing Rule,Valid Upto,Ισχύει μέχρι
DocType: Training Event,Workshop,Συνεργείο
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,Προειδοποίηση παραγγελιών αγοράς
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,Απαριθμήστε μερικούς από τους πελάτες σας. Θα μπορούσαν να είναι φορείς ή ιδιώτες.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,Αρκετά τμήματα για να χτίσει
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,Αρκετά τμήματα για να χτίσει
DocType: POS Profile User,POS Profile User,Χρήστης προφίλ POS
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,Άμεσα έσοδα
DocType: Patient Appointment,Date TIme,Ημερομηνία ώρα
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","Δεν μπορείτε να φιλτράρετε με βάση λογαριασμό, εάν είναι ομαδοποιημένες ανά λογαριασμό"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","Δεν μπορείτε να φιλτράρετε με βάση λογαριασμό, εάν είναι ομαδοποιημένες ανά λογαριασμό"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,Διοικητικός λειτουργός
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,Δημιουργία εταιρείας και φόροι
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,Επιλέξτε Course
@ -643,7 +644,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,Λογαριασμός διαφορών
DocType: Purchase Invoice,Supplier GSTIN,Προμηθευτής GSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,Δεν μπορεί να κλείσει το έργο ως εξαρτώμενη εργασία του {0} δεν έχει κλείσει.
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,Παρακαλώ εισάγετε αποθήκη για την οποία θα δημιουργηθεί η αίτηση υλικού
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,Παρακαλώ εισάγετε αποθήκη για την οποία θα δημιουργηθεί η αίτηση υλικού
DocType: Production Order,Additional Operating Cost,Πρόσθετο λειτουργικό κόστος
DocType: Lab Test Template,Lab Routine,Εργαστήριο Ρουτίνας
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,Καλλυντικά
@ -811,7 +812,7 @@ DocType: Employee,Passport Number,Αριθμός διαβατηρίου
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Σχέση με Guardian2
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,Προϊστάμενος
DocType: Payment Entry,Payment From / To,Πληρωμή Από / Προς
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Νέο πιστωτικό όριο είναι μικρότερο από το τρέχον οφειλόμενο ποσό για τον πελάτη. Πιστωτικό όριο πρέπει να είναι atleast {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Νέο πιστωτικό όριο είναι μικρότερο από το τρέχον οφειλόμενο ποσό για τον πελάτη. Πιστωτικό όριο πρέπει να είναι atleast {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},Ορίστε τον λογαριασμό στην αποθήκη {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,Τα πεδία με βάση και ομαδοποίηση κατά δεν μπορεί να είναι ίδια
DocType: Sales Person,Sales Person Targets,Στόχοι πωλητή
@ -822,7 +823,7 @@ DocType: Lab Test Template,Compound,Χημική ένωση
DocType: Student Batch Name,Batch Name,παρτίδα Όνομα
DocType: Fee Validity,Max number of visit,Μέγιστος αριθμός επισκέψεων
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,Φύλλο κατανομής χρόνου δημιουργήθηκε:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},Παρακαλώ ορίστε τον προεπιλεγμένο λογιαριασμό μετρητών ή τραπέζης στον τρόπο πληρωμής {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},Παρακαλώ ορίστε τον προεπιλεγμένο λογιαριασμό μετρητών ή τραπέζης στον τρόπο πληρωμής {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,Εγγράφω
DocType: GST Settings,GST Settings,Ρυθμίσεις GST
DocType: Selling Settings,Customer Naming By,Ονομασία πελάτη από
@ -946,7 +947,7 @@ DocType: Delivery Note,Customer's Purchase Order No,Αρ. παραγγελίας
DocType: Budget,Budget Against,προϋπολογισμού κατά
DocType: Employee,Cell Number,Αριθμός κινητού
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,Δεν υπάρχει υπάλληλος για τα συγκεκριμένα κριτήρια. Βεβαιωθείτε ότι δεν έχουν ήδη δημιουργηθεί οι μισθοί.
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,Αυτόματη Υλικό αιτήσεις που δημιουργούνται
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,Αυτόματη Υλικό αιτήσεις που δημιουργούνται
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,Απολεσθέν
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,Δεν μπορείτε να εισάγετε την τρέχουσα εγγυητική στη στήλη 'κατά λογιστική εγγραφή'
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,Που προορίζεται για την κατασκευή
@ -954,7 +955,7 @@ DocType: Soil Texture,Sand,Αμμος
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,Ενέργεια
DocType: Opportunity,Opportunity From,Ευκαιρία από
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,Μηνιαία κατάσταση μισθοδοσίας.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Σειρά {0}: {1} Σειριακοί αριθμοί που απαιτούνται για το στοιχείο {2}. Παρέχετε {3}.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Σειρά {0}: {1} Σειριακοί αριθμοί που απαιτούνται για το στοιχείο {2}. Παρέχετε {3}.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,Επιλέξτε έναν πίνακα
DocType: BOM,Website Specifications,Προδιαγραφές δικτυακού τόπου
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',"{0} μη έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου στους ""Παραλήπτες"""
@ -1042,7 +1043,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,Quote Ζητήθηκε
DocType: Vital Signs,Heart Rate / Pulse,Καρδιακός ρυθμός / παλμός
DocType: Company,Default Bank Account,Προεπιλεγμένος τραπεζικός λογαριασμός
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","Για να φιλτράρετε με βάση Κόμμα, επιλέξτε Τύπος Πάρτυ πρώτα"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","Για να φιλτράρετε με βάση Κόμμα, επιλέξτε Τύπος Πάρτυ πρώτα"
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},"«Ενημέρωση Αποθήκες» δεν μπορεί να ελεγχθεί, διότι τα στοιχεία δεν παραδίδονται μέσω {0}"
DocType: Vehicle,Acquisition Date,Ημερομηνία απόκτησης
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,Αριθμοί
@ -1066,7 +1067,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),Μεταφορτώστε την επιστολή σας κεφάλι (Διατηρήστε το web φιλικό ως 900px by 100px)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: Ο λογαριασμός {2} δεν μπορεί να είναι μια ομάδα
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,Στοιχείο Σειρά {idx}: {doctype} {docname} δεν υπάρχει στην παραπάνω »{doctype} &#39;τραπέζι
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,Φύλλο κατανομής χρόνου {0} έχει ήδη ολοκληρωθεί ή ακυρωθεί
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,Φύλλο κατανομής χρόνου {0} έχει ήδη ολοκληρωθεί ή ακυρωθεί
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,Δεν καθήκοντα
DocType: Item Variant Settings,Copy Fields to Variant,Αντιγραφή πεδίων στην παραλλαγή
DocType: Asset,Opening Accumulated Depreciation,Άνοιγμα Συσσωρευμένες Αποσβέσεις
@ -1178,9 +1179,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,Υλικό σχεδίου για τα υποσυστήματα
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,Συνεργάτες πωλήσεων και Επικράτεια
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,Η Λ.Υ. {0} πρέπει να είναι ενεργή
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),Κλείσιμο (Άνοιγμα + Σύνολο)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),Κλείσιμο (Άνοιγμα + Σύνολο)
DocType: Journal Entry,Depreciation Entry,αποσβέσεις Έναρξη
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Παρακαλώ επιλέξτε τον τύπο του εγγράφου πρώτα
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,Εκτύπωση στο νόμισμα λογαριασμού
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Ακύρωση επισκέψεων {0} πριν από την ακύρωση αυτής της επίσκεψης για συντήρηση
DocType: Crop Cycle,ISO 8016 standard,Πρότυπο ISO 8016
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},Ο σειριακός αριθμός {0} δεν ανήκει στο είδος {1}
@ -1206,7 +1208,7 @@ DocType: Purchase Receipt,Range,Εύρος
DocType: Supplier,Default Payable Accounts,Προεπιλεγμένοι λογαριασμοί πληρωτέων
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,Ο υπάλληλος {0} δεν είναι ενεργός ή δεν υπάρχει
DocType: Fee Structure,Components,εξαρτήματα
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},"Παρακαλούμε, εισάγετε Asset Κατηγορία στη θέση {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},"Παρακαλούμε, εισάγετε Asset Κατηγορία στη θέση {0}"
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,Οι παραλλαγές είδους {0} ενημερώθηκαν
DocType: Quality Inspection Reading,Reading 6,Μέτρηση 6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1258,6 +1260,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,Όνομα εταιρείας
DocType: SMS Center,Total Message(s),Σύνολο μηνυμάτων
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,Επιλογή στοιχείου για μεταφορά
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Ορίστε την Ονοματοδοσία για {0} μέσω του Setup&gt; Settings&gt; Naming Series
DocType: Purchase Invoice,Additional Discount Percentage,Πρόσθετες ποσοστό έκπτωσης
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,Δείτε μια λίστα με όλα τα βίντεο βοήθειας
DocType: Agriculture Analysis Criteria,Soil Texture,Υφή του εδάφους
@ -1285,7 +1288,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,BOM Ιστοσελίδα του Είδους
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,Ανεβάστε την κεφαλίδα επιστολόχαρτου και το λογότυπό σας. (Μπορείτε να τα επεξεργαστείτε αργότερα).
DocType: Timesheet Detail,Bill,Νομοσχέδιο
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,Επόμενο αποσβέσεις Ημερομηνία εισάγεται ως τελευταία ημερομηνία
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,Επόμενο αποσβέσεις Ημερομηνία εισάγεται ως τελευταία ημερομηνία
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,Λευκό
DocType: SMS Center,All Lead (Open),Όλες οι Συστάσεις (ανοιχτές)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),Σειρά {0}: Ποσότητα δεν είναι διαθέσιμη για {4} στην αποθήκη {1} στην απόσπαση χρόνο έναρξης ({2} {3})
@ -1301,7 +1304,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,Ημερομηνία επόμενης επικοινωνίας
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,Αρχική ποσότητα
DocType: Healthcare Settings,Appointment Reminder,Υπενθύμιση συναντήσεων
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,"Παρακαλούμε, εισάγετε Λογαριασμού για την Αλλαγή Ποσό"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,"Παρακαλούμε, εισάγετε Λογαριασμού για την Αλλαγή Ποσό"
DocType: Program Enrollment Tool Student,Student Batch Name,Φοιτητής παρτίδας Όνομα
DocType: Consultation,Doctor,Γιατρός
DocType: Holiday List,Holiday List Name,Όνομα λίστας αργιών
@ -1317,6 +1320,7 @@ DocType: Patient,Patient Relation,Σχέση ασθενών
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,Εργαλείο κατανομής αδειών
DocType: Item,Hub Category to Publish,Κατηγορία Hub για δημοσίευση
DocType: Leave Block List,Leave Block List Dates,Ημερομηνίες λίστας αποκλεισμού ημερών άδειας
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Παρακαλούμε ρυθμίστε τη σειρά αρίθμησης για τη συμμετοχή μέσω του Setup&gt; Series Numbering
DocType: Sales Invoice,Billing Address GSTIN,Διεύθυνση χρέωσης GSTIN
DocType: Assessment Plan,Evaluate,Αξιολογώ
DocType: Workstation,Net Hour Rate,Καθαρή τιμή ώρας
@ -1350,7 +1354,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,Είδος αποδεικτικ
DocType: Purchase Receipt,PREC-RET-,PREC-αναδρομική έναρξη
DocType: POS Profile,Sales Invoice Payment,Τιμολόγιο πωλήσεων Πληρωμής
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,Αποθήκη δεσμευμένων στις παραγγελίες πωλησης/ αποθήκη έτοιμων προϊόντων
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,Ποσό πώλησης
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,Ποσό πώλησης
DocType: Repayment Schedule,Interest Amount,Ποσό Τόκου
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,Είστε ο υπεύθυνος έγκρισης δαπανών για αυτή την εγγραφή. Ενημερώστε την κατάσταση και αποθηκεύστε
DocType: Serial No,Creation Document No,Αρ. εγγράφου δημιουργίας
@ -1441,7 +1445,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,Άνοιγμα λογιστικό υπόλοιπο
,GST Sales Register,Μητρώο Πωλήσεων GST
DocType: Sales Invoice Advance,Sales Invoice Advance,Προκαταβολή τιμολογίου πώλησης
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,Τίποτα να ζητηθεί
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,Τίποτα να ζητηθεί
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,Επιλέξτε τους τομείς σας
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},Άλλο ένα ρεκόρ Προϋπολογισμός &#39;{0}&#39; υπάρχει ήδη κατά {1} &#39;{2}&#39; για το οικονομικό έτος {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,Τα πεδία θα αντιγραφούν μόνο κατά τη στιγμή της δημιουργίας.
@ -1451,11 +1455,11 @@ DocType: Cheque Print Template,Payer Settings,Ρυθμίσεις πληρωτή
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","Αυτό θα πρέπει να επισυνάπτεται στο κφδικό είδους της παραλλαγής. Για παράδειγμα, εάν η συντομογραφία σας είναι «sm» και ο κωδικός του είδους είναι ""t-shirt"", ο κωδικός του της παραλλαγής του είδους θα είναι ""t-shirt-sm"""
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,Οι καθαρές αποδοχές (ολογράφως) θα είναι ορατές τη στιγμή που θα αποθηκεύσετε τη βεβαίωση αποδοχών
DocType: Purchase Invoice,Is Return,Είναι η επιστροφή
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,Προσοχή
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,Προσοχή
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,Επιστροφή / χρεωστικό σημείωμα
DocType: Price List Country,Price List Country,Τιμοκατάλογος Χώρα
DocType: Item,UOMs,Μ.Μ.
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} Έγκυροι σειριακοί αριθμοί για το είδος {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} Έγκυροι σειριακοί αριθμοί για το είδος {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Ο κωδικός είδους δεν μπορεί να αλλάξει για τον σειριακό αριθμό
DocType: Purchase Invoice Item,UOM Conversion Factor,Συντελεστής μετατροπής Μ.Μ.
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,Παρακαλώ εισάγετε τον κωδικό του Είδους να πάρει Αριθμός Παρτίδας
@ -1559,7 +1563,7 @@ DocType: Journal Entry,Get Outstanding Invoices,Βρες εκκρεμή τιμο
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,Η παραγγελία πώλησης {0} δεν είναι έγκυρη
DocType: Supplier Scorecard,Warn for new Request for Quotations,Προειδοποίηση για νέα Αιτήματα για Προσφορές
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,εντολές αγοράς σας βοηθήσει να σχεδιάσετε και να παρακολουθούν τις αγορές σας
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","Δυστυχώς, οι εταιρείες δεν μπορούν να συγχωνευθούν"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","Δυστυχώς, οι εταιρείες δεν μπορούν να συγχωνευθούν"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,Προδιαγραφές εργαστηριακών δοκιμών
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}","Η συνολική ποσότητα Issue / Μεταφορά {0} στο Αίτημα Υλικό {1} \ δεν μπορεί να είναι μεγαλύτερη από ό, τι ζητήσατε ποσότητα {2} για τη θέση {3}"
@ -1597,7 +1601,6 @@ DocType: Vehicle,Fuel UOM,UOM καυσίμων
DocType: Warehouse,Warehouse Contact Info,Πληροφορίες επικοινωνίας για την αποθήκη
DocType: Payment Entry,Write Off Difference Amount,Γράψτε Off Διαφορά Ποσό
DocType: Volunteer,Volunteer Name,Όνομα εθελοντή
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Ρυθμίστε το Σύστημα Ονοματοδοσίας Εκπαιδευτών στην Εκπαίδευση&gt; Ρυθμίσεις Εκπαίδευσης
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0}: Η δ/ση email του υπάλλήλου δεν βρέθηκε, το μυνημα δεν εστάλη"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},Ο κανόνας αποστολής δεν ισχύει για τη χώρα {0}
DocType: Item,Foreign Trade Details,Εξωτερικού Εμπορίου Λεπτομέρειες
@ -1609,7 +1612,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,Αριθμός Αριθμός Roll
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry","Για {0}, μόνο πιστωτικοί λογαριασμοί μπορούν να συνδέονται με άλλες καταχωρήσεις χρέωσης"
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,Σύνολο όλων των βαρών στόχος θα πρέπει να είναι: 1. Παρακαλώ ρυθμίστε τα βάρη όλων των εργασιών του έργου ανάλογα
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,Το δελτίο αποστολής {0} δεν έχει υποβληθεί
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,Το δελτίο αποστολής {0} δεν έχει υποβληθεί
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,Το είδος {0} πρέπει να είναι είδος υπεργολαβίας
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,Κεφάλαιο εξοπλισμών
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Ο κανόνας τιμολόγησης πρώτα επιλέγεται με βάση το πεδίο 'εφαρμογή στο', το οποίο μπορεί να είναι είδος, ομάδα ειδών ή εμπορικό σήμα"
@ -1634,7 +1637,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,Υπάρχει αποθήκη παιδί για αυτή την αποθήκη. Δεν μπορείτε να διαγράψετε αυτό αποθήκη.
DocType: Item,Website Item Groups,Ομάδες ειδών δικτυακού τόπου
DocType: Purchase Invoice,Total (Company Currency),Σύνολο (Εταιρεία νομίσματος)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,Ο σειριακός αριθμός {0} εισήχθηκε περισσότερο από μία φορά
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,Ο σειριακός αριθμός {0} εισήχθηκε περισσότερο από μία φορά
DocType: Journal Entry,Journal Entry,Λογιστική εγγραφή
DocType: Expense Claim Advance,Unclaimed amount,Ακυρωμένο ποσό
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} αντικείμενα σε εξέλιξη
@ -1730,7 +1733,7 @@ DocType: Email Digest,For Company,Για την εταιρεία
apps/erpnext/erpnext/config/support.py +17,Communication log.,Αρχείο καταγραφής επικοινωνίας
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.","Αίτηση Προσφοράς είναι απενεργοποιημένη η πρόσβαση από την πύλη, για περισσότερες ρυθμίσεις πύλης ελέγχου."
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,Μεταβλητή βαθμολόγησης του Προμηθευτή Scorecard
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,Ποσό αγοράς
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,Ποσό αγοράς
DocType: Sales Invoice,Shipping Address Name,Όνομα διεύθυνσης αποστολής
DocType: Material Request,Terms and Conditions Content,Περιεχόμενο όρων και προϋποθέσεων
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,Παρουσιάστηκαν σφάλματα κατά τη δημιουργία του προγράμματος μαθημάτων
@ -1993,7 +1996,7 @@ DocType: Expense Claim,Total Amount Reimbursed,Συνολικού ποσού π
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,Αυτό βασίζεται στα ημερολόγια του κατά αυτό το όχημα. Δείτε χρονοδιάγραμμα παρακάτω για λεπτομέρειες
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},Κατά το τιμολόγιο προμηθευτή {0} της {1}
DocType: Customer,Default Price List,Προεπιλεγμένος τιμοκατάλογος
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,ρεκόρ Κίνηση περιουσιακό στοιχείο {0} δημιουργήθηκε
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,ρεκόρ Κίνηση περιουσιακό στοιχείο {0} δημιουργήθηκε
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,Δεν μπορείτε να διαγράψετε Χρήσεως {0}. Φορολογικό Έτος {0} έχει οριστεί ως προεπιλογή στο Καθολικές ρυθμίσεις
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,Ένας πελάτης με το ίδιο όνομα υπάρχει ήδη
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,Αυτό θα παρουσιάσει τα μισθολογικά φύλλα και θα δημιουργήσει εγγραφή εισόδου περιοδικών. Θέλετε να συνεχίσετε?
@ -2007,6 +2010,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,τιμολόγηση
DocType: Quotation,Term Details,Λεπτομέρειες όρων
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,Δεν μπορούν να εγγραφούν περισσότερες από {0} μαθητές για αυτή την ομάδα των σπουδαστών.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),Σύνολο (χωρίς Φόρο)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,Αρχικός αριθμός
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} πρέπει να είναι μεγαλύτερη από μηδέν
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,Διαθέσιμο διαθέσιμο
@ -2025,7 +2029,6 @@ DocType: Lab Test,Technician Name,Όνομα τεχνικού
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,Αποσύνδεση Πληρωμή κατά την ακύρωσης της Τιμολόγιο
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},Τρέχουσα ανάγνωση οδομέτρων τέθηκε πρέπει να είναι μεγαλύτερη από την αρχική του χιλιομετρητή του οχήματος {0}
DocType: Restaurant Reservation,No Show,Δεν δείχνουν
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Ορίστε την Ονοματοδοσία Series για {0} μέσω του Setup&gt; Settings&gt; Naming Series
DocType: Shipping Rule Country,Shipping Rule Country,Αποστολές κανόνα της χώρας
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,Αφήστε και φοίτηση
DocType: Maintenance Visit,Partially Completed,Ημιτελής
@ -2116,7 +2119,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,Φοιτητής ομάδας εκπαιδευτών
DocType: Grant Application,Assessment Mark (Out of 10),Βαθμός αξιολόγησης (από 10)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 Mobile Όχι
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,Κύριο
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,Κύριο
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,Παραλλαγή
DocType: Naming Series,Set prefix for numbering series on your transactions,Ορίστε πρόθεμα για τη σειρά αρίθμησης για τις συναλλαγές σας
DocType: Employee Attendance Tool,Employees HTML,Οι εργαζόμενοι HTML
@ -2164,7 +2167,7 @@ DocType: Crop,Crop Spacing,Διαχωρισμός καλλιεργειών
DocType: Course,Course Abbreviation,Σύντμηση γκολφ
DocType: Student Leave Application,Student Leave Application,Φοιτητής Αφήστε Εφαρμογή
DocType: Item,Will also apply for variants,Θα ισχύουν επίσης για τις παραλλαγές
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","Περιουσιακό στοιχείο δεν μπορεί να ακυρωθεί, δεδομένου ότι είναι ήδη {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","Περιουσιακό στοιχείο δεν μπορεί να ακυρωθεί, δεδομένου ότι είναι ήδη {0}"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},Υπάλληλος {0} για Μισή μέρα στο {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},Οι συνολικές ώρες εργασίας δεν πρέπει να είναι μεγαλύτερη από το ωράριο εργασίας max {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,Στις
@ -2348,9 +2351,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),Πραγματική Ημερομηνία λήξης (μέσω Ώρα Φύλλο)
DocType: Soil Texture,Soil Type,Τύπος εδάφους
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},Ποσό {0} {1} από {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,Νέο μήνυμα
,Quotation Trends,Τάσεις προσφορών
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},Η ομάδα είδους δεν αναφέρεται στην κύρια εγγραφή είδους για το είδος {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,Ο 'λογαριασμός χρέωσης προς' Χρέωση του λογαριασμού πρέπει να είναι λογαριασμός απαιτήσεων
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,Ο 'λογαριασμός χρέωσης προς' Χρέωση του λογαριασμού πρέπει να είναι λογαριασμός απαιτήσεων
DocType: Shipping Rule,Shipping Amount,Κόστος αποστολής
DocType: Supplier Scorecard Period,Period Score,Αποτέλεσμα περιόδου
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,Προσθέστε πελάτες
@ -2361,7 +2365,7 @@ DocType: Purchase Order,Delivered,Παραδόθηκε
,Vehicle Expenses,Έξοδα όχημα
DocType: Serial No,Invoice Details,Λεπτομέρειες τιμολογίου
DocType: Grant Application,Show on Website,Εμφάνιση στο δικτυακό τόπο
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},Αναμενόμενη τιμή μετά την ωφέλιμη ζωή πρέπει να είναι μεγαλύτερη ή ίση με {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},Αναμενόμενη τιμή μετά την ωφέλιμη ζωή πρέπει να είναι μεγαλύτερη ή ίση με {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,Ξεκινήστε
DocType: Hub Category,Hub Category,Κατηγορία Hub
DocType: Purchase Invoice,SEZ,SEZ
@ -2392,7 +2396,7 @@ DocType: Patient,Patient Details,Λεπτομέρειες ασθενούς
DocType: Patient,B Positive,Β Θετικό
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","Σειρά # {0}: Ποσότητα πρέπει να είναι 1, ως στοιχείο αποτελεί πάγιο περιουσιακό στοιχείο. Παρακαλούμε χρησιμοποιήστε ξεχωριστή σειρά για πολλαπλές ποσότητα."
DocType: Leave Block List Allow,Leave Block List Allow,Επίτρεψε λίστα αποκλεισμού ημερών άδειας
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,Συντ δεν μπορεί να είναι κενό ή χώρος
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,Συντ δεν μπορεί να είναι κενό ή χώρος
DocType: Patient Medical Record,Patient Medical Record,Ιατρικό αρχείο ασθενούς
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,Ομάδα για να μη Ομάδα
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,Αθλητισμός
@ -2442,6 +2446,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,Δεν είναι δυνατή η ρύθμιση ενός ληφθέντος RFQ σε καμία παράθεση
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,Συνολική έκπτωση
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,Επιλέξτε ένα λογαριασμό για εκτύπωση σε νόμισμα λογαριασμού
,Production Analytics,παραγωγή Analytics
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,"Αυτό βασίζεται σε συναλλαγές κατά αυτού του Ασθενούς. Για λεπτομέρειες, δείτε την παρακάτω γραμμή χρόνου"
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,Κόστος Ενημερώθηκε
@ -2496,7 +2501,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,Ρυ
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,Επιλέξτε εταιρία...
DocType: Leave Control Panel,Leave blank if considered for all departments,Άφησε το κενό αν ισχύει για όλα τα τμήματα
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","Μορφές απασχόλησης ( μόνιμη, σύμβαση, πρακτική άσκηση κ.λ.π. )."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},Η {0} είναι απαραίτητη για το είδος {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},Η {0} είναι απαραίτητη για το είδος {1}
DocType: Payroll Entry,Fortnightly,Κατά δεκατετραήμερο
DocType: Currency Exchange,From Currency,Από το νόμισμα
DocType: Vital Signs,Weight (In Kilogram),Βάρος (σε χιλιόγραμμα)
@ -2572,7 +2577,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),Βασικό ποσό (
DocType: Student,Guardians,φύλακες
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,Οι τιμές δεν θα εμφανίζεται αν Τιμοκατάλογος δεν έχει οριστεί
DocType: Stock Entry,Total Incoming Value,Συνολική εισερχόμενη αξία
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,Χρεωστικό να απαιτείται
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,Χρεωστικό να απαιτείται
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Φύλλων βοηθήσει να παρακολουθείτε την ώρα, το κόστος και τη χρέωση για δραστηριότητες γίνεται από την ομάδα σας"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,Τιμοκατάλογος αγορών
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,Πρότυπα των μεταβλητών βαθμολογίας του προμηθευτή.
@ -2673,7 +2678,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,Για αναφορά μόνο.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},Ο γιατρός {0} δεν είναι διαθέσιμος στις {1}
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,Επιλέξτε Αριθμός παρτίδας
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},Άκυρη {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},Άκυρη {0}: {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-αναδρομική έναρξη
DocType: Fee Validity,Reference Inv,Αναφορά Inv
@ -2710,8 +2715,8 @@ DocType: Fees,Send Payment Request,Αίτηση πληρωμής
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Καθορίστε τις λειτουργίες, το κόστος λειτουργίας και να δώστε ένα μοναδικό αριθμό λειτουργίας στις λειτουργίες σας."
DocType: Water Analysis,Origin,Προέλευση
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,Το έγγραφο αυτό είναι πάνω από το όριο του {0} {1} για το στοιχείο {4}. Κάνετε μια άλλη {3} κατά την ίδια {2};
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,Παρακαλούμε να ορίσετε επαναλαμβανόμενες μετά την αποθήκευση
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,υπόψη το ποσό Επιλέξτε αλλαγή
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,Παρακαλούμε να ορίσετε επαναλαμβανόμενες μετά την αποθήκευση
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,υπόψη το ποσό Επιλέξτε αλλαγή
DocType: Purchase Invoice,Price List Currency,Νόμισμα τιμοκαταλόγου
DocType: Naming Series,User must always select,Ο χρήστης πρέπει πάντα να επιλέγει
DocType: Stock Settings,Allow Negative Stock,Επίτρεψε αρνητικό απόθεμα
@ -2767,7 +2772,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,Λεπτομέ
DocType: Supplier Scorecard,Warn for new Purchase Orders,Προειδοποίηση για νέες παραγγελίες αγοράς
DocType: Quality Inspection Reading,Reading 9,Μέτρηση 9
DocType: Supplier,Is Frozen,Είναι Κατεψυγμένα
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,αποθήκη κόμβος ομάδας δεν επιτρέπεται να επιλέξετε για τις συναλλαγές
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,αποθήκη κόμβος ομάδας δεν επιτρέπεται να επιλέξετε για τις συναλλαγές
DocType: Buying Settings,Buying Settings,Ρυθμίσεις αγοράς
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,Αρ. Λ.Υ. Για ένα τελικό καλό είδος
DocType: Upload Attendance,Attendance To Date,Προσέλευση μέχρι ημερομηνία
@ -2781,6 +2786,7 @@ DocType: Offer Letter,Accepted,Αποδεκτό
DocType: Grant Application,Organization,Οργάνωση
DocType: BOM Update Tool,BOM Update Tool,Εργαλείο ενημέρωσης BOM
DocType: SG Creation Tool Course,Student Group Name,Όνομα ομάδας φοιτητής
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,Εμφάνιση αναλυτικής προβολής
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,Δημιουργία τελών
apps/erpnext/erpnext/setup/doctype/company/company.js +91,Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone.,Παρακαλώ βεβαιωθείτε ότι έχετε πραγματικά θέλετε να διαγράψετε όλες τις συναλλαγές για την εν λόγω εταιρεία. Τα δεδομένα της κύριας σας θα παραμείνει ως έχει. Αυτή η ενέργεια δεν μπορεί να αναιρεθεί.
DocType: Room,Room Number,Αριθμός δωματίου
@ -2791,7 +2797,7 @@ DocType: Journal Entry Account,Payroll Entry,Εισαγωγή μισθοδοσί
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,Κάντε πρότυπο φόρου
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,Φόρουμ Χρηστών
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,Το πεδίο πρώτων ύλών δεν μπορεί να είναι κενό.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","Δεν ήταν δυνατή η ενημέρωση των αποθεμάτων, τιμολόγιο περιέχει πτώση στέλνοντας στοιχείο."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","Δεν ήταν δυνατή η ενημέρωση των αποθεμάτων, τιμολόγιο περιέχει πτώση στέλνοντας στοιχείο."
DocType: Lab Test Sample,Lab Test Sample,Δοκιμαστικό δείγμα εργαστηρίου
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,Γρήγορη Εφημερίδα Είσοδος
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,"Δεν μπορείτε να αλλάξετε τιμοκατάλογο, αν η λίστα υλικών αναφέρεται σε οποιουδήποτε είδος"
@ -2862,7 +2868,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,USD
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,Δημιούργησε τιμολόγιο
DocType: Selling Settings,Auto close Opportunity after 15 days,Αυτόματη κοντά Ευκαιρία μετά από 15 ημέρες
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Οι εντολές αγοράς δεν επιτρέπονται για {0} λόγω μόνιμης θέσης {1}.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Οι εντολές αγοράς δεν επιτρέπονται για {0} λόγω μόνιμης θέσης {1}.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,στο τέλος του έτους
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Ποσοστό / Μόλυβδος%
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,"Η ημερομηνία λήξης της σύμβασης πρέπει να είναι μεγαλύτερη από ό, τι ημερομηνία ενώνουμε"
@ -2974,7 +2980,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90-Παραπάνω
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,Σειρά # {0}: Εφημερίδα Έναρξη {1} δεν έχει λογαριασμό {2} ή ήδη συγκρίνεται με ένα άλλο κουπόνι
DocType: Supplier Scorecard Criteria,Criteria Weight,Κριτήρια Βάρος
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Προμηθευτής&gt; Τύπος προμηθευτή
DocType: Buying Settings,Default Buying Price List,Προεπιλεγμένος τιμοκατάλογος αγορών
DocType: Payroll Entry,Salary Slip Based on Timesheet,Μισθός Slip Βάσει Timesheet
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,Ποσοστό αγοράς
@ -3062,7 +3067,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,Παρακολούθηση επαφών με βάση τον τύπο βιομηχανίας.
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,Πηγαίνετε στο Letterheads
DocType: Item Supplier,Item Supplier,Προμηθευτής είδους
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,Παρακαλώ εισάγετε κωδικό είδους για να δείτε τον αρ. παρτίδας
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,Παρακαλώ εισάγετε κωδικό είδους για να δείτε τον αρ. παρτίδας
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},Παρακαλώ επιλέξτε μια τιμή για {0} προσφορά προς {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,Όλες τις διευθύνσεις.
DocType: Company,Stock Settings,Ρυθμίσεις αποθέματος
@ -3251,6 +3256,7 @@ DocType: Employee Loan,Loan Details,Λεπτομέρειες δανείου
DocType: Company,Default Inventory Account,Προεπιλεγμένος λογαριασμός αποθέματος
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,Σειρά {0}: Ολοκληρώθηκε Ποσότητα πρέπει να είναι μεγαλύτερη από το μηδέν.
DocType: Antibiotic,Antibiotic Name,Όνομα αντιβιοτικού
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Κωδικός στοιχείου&gt; Ομάδα στοιχείων&gt; Μάρκα
DocType: Purchase Invoice,Apply Additional Discount On,Εφαρμόστε επιπλέον έκπτωση On
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,Επιλέξτε Τύπο ...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,Ένας σύνδεσμος με όλες τις μονάδες γης στις οποίες αναπτύσσεται η καλλιέργεια
@ -3444,6 +3450,7 @@ DocType: Guardian Student,Guardian Student,Guardian Φοιτητής
DocType: Supplier,Credit Limit,Πιστωτικό όριο
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,Μέγ. Τιμοκατάλογος τιμών πώλησης
DocType: Production Plan Sales Order,Salse Order Date,Salse Παραγγελία Ημερομηνία
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Προμηθευτής&gt; Τύπος προμηθευτή
DocType: Salary Component,Salary Component,μισθός Component
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,Ενδείξεις πληρωμής {0} είναι μη-συνδεδεμένα
DocType: GL Entry,Voucher No,Αρ. αποδεικτικού
@ -3452,7 +3459,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,Δημοφιλέ
DocType: Leave Allocation,Leave Allocation,Κατανομή άδειας
DocType: Payment Request,Recipient Message And Payment Details,Μήνυμα παραλήπτη και τις λεπτομέρειες πληρωμής
DocType: Training Event,Trainer Email,εκπαιδευτής Email
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,Οι αίτησης υλικού {0} δημιουργήθηκαν
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,Οι αίτησης υλικού {0} δημιουργήθηκαν
DocType: Restaurant Reservation,No of People,Όχι των ανθρώπων
DocType: Production Planning Tool,Include sub-contracted raw materials,Περιλαμβάνουν υπεργολαβίας πρώτων υλών
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,Πρότυπο των όρων ή της σύμβασης.
@ -3516,7 +3523,7 @@ DocType: Landed Cost Item,Receipt Document,έγγραφο παραλαβής
DocType: Production Planning Tool,Create Material Requests,Δημιουργία αιτήσεων υλικού
DocType: Employee Education,School/University,Σχολείο / πανεπιστήμιο
DocType: Payment Request,Reference Details,Λεπτομέρειες αναφοράς
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,Αναμενόμενη τιμή μετά Ωφέλιμη Ζωή πρέπει να είναι μικρότερο από το ακαθάριστο ποσό αγοράς
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,Αναμενόμενη τιμή μετά Ωφέλιμη Ζωή πρέπει να είναι μικρότερο από το ακαθάριστο ποσό αγοράς
DocType: Sales Invoice Item,Available Qty at Warehouse,Διαθέσιμη ποσότητα στην αποθήκη
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,Χρεωμένο ποσό
DocType: Asset,Double Declining Balance,Διπλά φθίνοντος υπολοίπου
@ -3528,7 +3535,7 @@ DocType: Attendance,On Leave,Σε ΑΔΕΙΑ
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,Λήψη ενημερώσεων
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: Ο λογαριασμός {2} δεν ανήκει στην εταιρεία {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,Επιλέξτε τουλάχιστον μία τιμή από κάθε ένα από τα χαρακτηριστικά.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,H αίτηση υλικού {0} έχει ακυρωθεί ή διακοπεί
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,H αίτηση υλικού {0} έχει ακυρωθεί ή διακοπεί
apps/erpnext/erpnext/config/hr.py +310,Leave Management,Αφήστε Διαχείρισης
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,Ομαδοποίηση κατά λογαριασμό
DocType: Sales Order,Fully Delivered,Έχει παραδοθεί πλήρως
@ -3539,14 +3546,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},Εκταμιευόμενο ποσό δεν μπορεί να είναι μεγαλύτερη από Ποσό δανείου {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,Μεταβείτε στα Προγράμματα
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},Η σειρά {0} # Το κατανεμημένο ποσό {1} δεν μπορεί να είναι μεγαλύτερο από το ποσό που δεν ζητήθηκε {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Παρακαλούμε ρυθμίστε τη σειρά αρίθμησης για τη συμμετοχή μέσω του Setup&gt; Series Numbering
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},Ο αριθμός παραγγελίας για το είδος {0} είναι απαραίτητος
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,Παραγγελία παραγωγή δεν δημιουργήθηκε
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"Το πεδίο ""Από Ημερομηνία"" πρέπει να είναι μεταγενέστερο από το πεδίο ""Έως Ημερομηνία"""
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},δεν μπορεί να αλλάξει την κατάσταση ως φοιτητής {0} συνδέεται με την εφαρμογή των φοιτητών {1}
DocType: Asset,Fully Depreciated,αποσβεσθεί πλήρως
,Stock Projected Qty,Προβλεπόμενη ποσότητα αποθέματος
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},Ο πελάτης {0} δεν ανήκει στο έργο {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},Ο πελάτης {0} δεν ανήκει στο έργο {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,Αξιοσημείωτη Συμμετοχή HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers","Οι αναφορές είναι οι προτάσεις, οι προσφορές που έχουν στείλει στους πελάτες σας"
DocType: Sales Order,Customer's Purchase Order,Εντολή Αγοράς του Πελάτη
@ -3630,7 +3636,7 @@ DocType: Salary Slip,Hour Rate,Χρέωση ανά ώρα
DocType: Stock Settings,Item Naming By,Ονομασία είδους κατά
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},Μια ακόμη καταχώρηση κλεισίματος περιόδου {0} έχει γίνει μετά από {1}
DocType: Production Order,Material Transferred for Manufacturing,Υλικό το οποίο μεταφέρεται για Βιομηχανία
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,Ο λογαριασμός {0} δεν υπάρχει
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,Ο λογαριασμός {0} δεν υπάρχει
DocType: Project,Project Type,Τύπος έργου
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,Υπάρχει εργασία παιδιού για αυτή την εργασία. Δεν μπορείτε να διαγράψετε αυτήν την εργασία.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,Είτε ποσότητα-στόχος ή ποσό-στόχος είναι απαραίτητα.
@ -3732,11 +3738,11 @@ DocType: C-Form,I,εγώ
DocType: Company,Asset Depreciation Cost Center,Asset Κέντρο Αποσβέσεις Κόστους
DocType: Sales Order Item,Sales Order Date,Ημερομηνία παραγγελίας πώλησης
DocType: Sales Invoice Item,Delivered Qty,Ποσότητα που παραδόθηκε
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,Σύνολο εξαιρέσεων Φόρος
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","Αν επιλεγεί, όλα τα παιδιά του κάθε στοιχείου παραγωγής θα πρέπει να περιλαμβάνονται στο υλικό αιτήματα."
DocType: Assessment Plan,Assessment Plan,σχέδιο αξιολόγησης
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,Ο πελάτης {0} δημιουργείται.
DocType: Stock Settings,Limit Percent,όριο Ποσοστό
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Ρυθμίστε το Σύστημα Ονομάτων Εκπαιδευτών στην Εκπαίδευση&gt; Ρυθμίσεις Εκπαίδευσης
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,Επί του παρόντος δεν υπάρχει διαθέσιμο απόθεμα σε καμία αποθήκη
,Payment Period Based On Invoice Date,Περίοδος πληρωμής με βάση την ημερομηνία τιμολογίου
DocType: Sample Collection,No. of print,Αριθ. Εκτύπωσης
@ -3752,12 +3758,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),Οφειλέτες ({0})
DocType: Pricing Rule,Margin,Περιθώριο
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,Νέοι πελάτες
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,Μικτό κέρδος (%)
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,Μικτό κέρδος (%)
DocType: Appraisal Goal,Weightage (%),Ζύγισμα (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,Αλλάξτε το προφίλ POS
DocType: Bank Reconciliation Detail,Clearance Date,Ημερομηνία εκκαθάρισης
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,Έκθεση αξιολόγησης
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,Ακαθάριστο ποσό αγοράς είναι υποχρεωτική
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,Ακαθάριστο ποσό αγοράς είναι υποχρεωτική
DocType: Lead,Address Desc,Περιγραφή διεύθυνσης
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,Κόμμα είναι υποχρεωτική
DocType: Journal Entry,JV-,JV-
@ -3789,7 +3795,6 @@ DocType: Account,Accumulated Depreciation,Συσσωρευμένες αποσβ
DocType: Supplier Scorecard Scoring Standing,Standing Name,Μόνιμο όνομα
DocType: Stock Entry,Customer or Supplier Details,Πελάτη ή προμηθευτή Λεπτομέρειες
DocType: Employee Loan Application,Required by Date,Απαιτείται από την Ημερομηνία
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),Υπόλοιπο κλεισίματος (Dr-Cr)
DocType: Lead,Lead Owner,Ιδιοκτήτης επαφής
DocType: Bin,Requested Quantity,ζήτησε Ποσότητα
DocType: Patient,Marital Status,Οικογενειακή κατάσταση
@ -3803,7 +3808,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,Πολλαπλές παραλλαγές
DocType: Sales Invoice,Against Income Account,Κατά τον λογαριασμό εσόδων
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% Παραδόθηκαν
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Θέση {0}: Διέταξε ποσότητα {1} δεν μπορεί να είναι μικρότερη από την ελάχιστη ποσότητα προκειμένου {2} (ορίζεται στο σημείο).
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Θέση {0}: Διέταξε ποσότητα {1} δεν μπορεί να είναι μικρότερη από την ελάχιστη ποσότητα προκειμένου {2} (ορίζεται στο σημείο).
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,Ποσοστό μηνιαίας διανομής
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,Συνδεθείτε ως άλλος χρήστης.
DocType: Territory,Territory Targets,Στόχοι περιοχών
@ -3902,7 +3907,7 @@ DocType: Program Enrollment,School House,Σχολείο
DocType: Serial No,Out of AMC,Εκτός Ε.Σ.Υ.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,Αριθμός Αποσβέσεις κράτηση δεν μπορεί να είναι μεγαλύτερη από Συνολικός αριθμός Αποσβέσεις
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,Δημιούργησε επίσκεψη συντήρησης
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,Παρακαλώ επικοινωνήστε με τον χρήστη που έχει ρόλο διαχειριστής κύριων εγγραφών πωλήσεων {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,Παρακαλώ επικοινωνήστε με τον χρήστη που έχει ρόλο διαχειριστής κύριων εγγραφών πωλήσεων {0}
DocType: Company,Default Cash Account,Προεπιλεγμένος λογαριασμός μετρητών
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,Κύρια εγγραφή εταιρείας (δεν είναι πελάτης ή προμηθευτής).
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,Αυτό βασίζεται στην συμμετοχή του φοιτητή
@ -4052,7 +4057,6 @@ DocType: Delivery Note Item,From Warehouse,Από Αποθήκης
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,Δεν υπάρχουν υπάλληλοι για τα προαναφερθέντα κριτήρια
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,Δεν Αντικείμενα με τον Bill Υλικών για Κατασκευή
DocType: Restaurant,Default Customer,Προεπιλεγμένος πελάτης
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Ρυθμίστε το Σύστημα Ονοματοδοσίας Εργαζομένων σε Ανθρώπινο Δυναμικό&gt; Ρυθμίσεις HR
DocType: Assessment Plan,Supervisor Name,Όνομα Επόπτη
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,Μην επιβεβαιώνετε εάν το ραντεβού δημιουργείται για την ίδια ημέρα
DocType: Program Enrollment Course,Program Enrollment Course,Πρόγραμμα εγγραφής στο πρόγραμμα
@ -4170,7 +4174,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,Περιγραφή δικτυακού τόπου
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,Καθαρή Μεταβολή Ιδίων Κεφαλαίων
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,Νεότερο
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,Παρακαλείστε να ακυρώσετε την αγορά Τιμολόγιο {0} πρώτο
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,Παρακαλείστε να ακυρώσετε την αγορά Τιμολόγιο {0} πρώτο
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","Διεύθυνση e-mail πρέπει να είναι μοναδική, υπάρχει ήδη για {0}"
DocType: Serial No,AMC Expiry Date,Ε.Σ.Υ. Ημερομηνία λήξης
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,ΑΠΟΔΕΙΞΗ ΠΛΗΡΩΜΗΣ
@ -4187,7 +4191,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,Κανένας
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,Κατάσταση ταμειακών ροών
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},Ποσό δανείου δεν μπορεί να υπερβαίνει το μέγιστο ύψος των δανείων Ποσό {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,Άδεια
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},Παρακαλώ αφαιρέστε αυτό το τιμολόγιο {0} από τη c-form {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},Παρακαλώ αφαιρέστε αυτό το τιμολόγιο {0} από τη c-form {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,Παρακαλώ επιλέξτε μεταφορά εάν θέλετε επίσης να περιλαμβάνεται το ισοζύγιο από το προηγούμενο οικονομικό έτος σε αυτό η χρήση
DocType: GL Entry,Against Voucher Type,Κατά τον τύπο αποδεικτικού
DocType: Physician,Phone (R),Τηλέφωνο (R)
@ -4199,7 +4203,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,Β Αρνητικό
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,Η κατάσταση συντήρησης πρέπει να ακυρωθεί ή να ολοκληρωθεί για υποβολή
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},Ο Λογαριασμός {0} δεν ανήκει στην εταιρεία {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,Οι σειριακοί αριθμοί στη σειρά {0} δεν ταιριάζουν με τη Σημείωση Παραλαβής
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,Οι σειριακοί αριθμοί στη σειρά {0} δεν ταιριάζουν με τη Σημείωση Παραλαβής
DocType: Student,Guardian Details,Guardian Λεπτομέρειες
DocType: C-Form,C-Form,C-form
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,Mark φοίτηση για πολλούς εργαζόμενους
@ -4241,7 +4245,7 @@ DocType: Opening Invoice Creation Tool,Sales,Πωλήσεις
DocType: Stock Entry Detail,Basic Amount,Βασικό Ποσό
DocType: Training Event,Exam,Εξέταση
DocType: Complaint,Complaint,Καταγγελία
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},Απαιτείται αποθήκη για το είδος αποθέματος {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},Απαιτείται αποθήκη για το είδος αποθέματος {0}
DocType: Leave Allocation,Unused leaves,Αχρησιμοποίητα φύλλα
DocType: Patient,Alcohol Past Use,Χρήση αλκοόλ στο παρελθόν
DocType: Fertilizer Content,Fertilizer Content,Περιεκτικότητα σε λιπάσματα
@ -4365,6 +4369,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,Τύπος
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,Σειριακός αριθμός #
DocType: Lab Test Template,Lab Test Template,Πρότυπο δοκιμής εργαστηρίου
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,Λογαριασμός πωλήσεων
DocType: Purchase Invoice Item,Total Weight,Συνολικό βάρος
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,Προμήθεια επί των πωλήσεων
DocType: Offer Letter Term,Value / Description,Αξία / Περιγραφή
@ -4522,7 +4527,7 @@ Updated via 'Time Log'","Σε λεπτά
DocType: Customer,From Lead,Από Σύσταση
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,Παραγγελίες ανοιχτές για παραγωγή.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,Επιλέξτε οικονομικό έτος...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,POS Προφίλ απαιτούνται για να κάνουν POS Έναρξη
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,POS Προφίλ απαιτούνται για να κάνουν POS Έναρξη
DocType: Program Enrollment Tool,Enroll Students,εγγραφούν μαθητές
DocType: Lab Test,Approved Date,Εγκεκριμένη ημερομηνία
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,Πρότυπες πωλήσεις
@ -4598,7 +4603,7 @@ DocType: Employee,Held On,Πραγματοποιήθηκε την
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,Είδος παραγωγής
,Employee Information,Πληροφορίες υπαλλήλου
DocType: Stock Entry Detail,Additional Cost,Πρόσθετο κόστος
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","Δεν μπορείτε να φιλτράρετε με βάση αρ. αποδεικτικού, αν είναι ομαδοποιημένες ανά αποδεικτικό"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","Δεν μπορείτε να φιλτράρετε με βάση αρ. αποδεικτικού, αν είναι ομαδοποιημένες ανά αποδεικτικό"
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,Δημιούργησε προσφορά προμηθευτή
DocType: Quality Inspection,Incoming,Εισερχόμενος
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,Προεπιλεγμένα πρότυπα φόρου για τις πωλήσεις και την αγορά δημιουργούνται.
@ -4615,7 +4620,7 @@ DocType: Batch,Batch ID,ID παρτίδας
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},Σημείωση : {0}
,Delivery Note Trends,Τάσεις δελτίου αποστολής
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,Περίληψη της Εβδομάδας
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,Σε Απόθεμα Ποσότητα
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,Σε Απόθεμα Ποσότητα
DocType: Delivery Trip,Calculate Estimated Arrival Times,Υπολογίστε τους εκτιμώμενους χρόνους άφιξης
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,Ο λογαριασμός: {0} μπορεί να ενημερώνεται μόνο μέσω συναλλαγών αποθέματος
DocType: Student Group Creation Tool,Get Courses,Πάρτε μαθήματα
@ -4631,7 +4636,7 @@ DocType: Purchase Order,To Bill,Για τιμολόγηση
DocType: Material Request,% Ordered,% Παραγγέλθηκαν
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.","Για το Student Group, το μάθημα θα επικυρωθεί για κάθε φοιτητή από τα εγγεγραμμένα μαθήματα στην εγγραφή του προγράμματος."
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,Εργασία με το κομμάτι
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,Μέση τιμή αγοράς
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,Μέση τιμή αγοράς
DocType: Task,Actual Time (in Hours),Πραγματικός χρόνος (σε ώρες)
DocType: Employee,History In Company,Ιστορικό στην εταιρεία
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},Νέο μήνυμα από {sender}
@ -4679,7 +4684,7 @@ DocType: Asset Repair,Asset Repair,Επισκευή στοιχείων ενερ
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},Σειρά {0}: Νόμισμα της BOM # {1} θα πρέπει να είναι ίσο με το επιλεγμένο νόμισμα {2}
DocType: Journal Entry Account,Exchange Rate,Ισοτιμία
DocType: Patient,Additional information regarding the patient,Πρόσθετες πληροφορίες σχετικά με τον ασθενή
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,Η παραγγελία πώλησης {0} δεν έχει υποβληθεί
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,Η παραγγελία πώλησης {0} δεν έχει υποβληθεί
DocType: Homepage,Tag Line,Γραμμή ετικέτας
DocType: Fee Component,Fee Component,χρέωση Component
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,Διαχείριση στόλου
@ -4891,7 +4896,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,Λεπτομέρει
DocType: Employee Education,Employee Education,Εκπαίδευση των υπαλλήλων
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,Διπλότυπη ομάδα στοιχείο που βρέθηκαν στο τραπέζι ομάδα στοιχείου
DocType: Land Unit,Parent Land Unit,Μονάδα Γονικής Γης
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,Είναι απαραίτητη για να φέρω Λεπτομέρειες αντικειμένου.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,Είναι απαραίτητη για να φέρω Λεπτομέρειες αντικειμένου.
DocType: Fertilizer,Fertilizer Name,Όνομα λιπάσματος
DocType: Salary Slip,Net Pay,Καθαρές αποδοχές
DocType: Account,Account,Λογαριασμός
@ -4970,7 +4975,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),Πραγματική
DocType: Item Customer Detail,Ref Code,Κωδ. Αναφοράς
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,Η ομάδα πελατών απαιτείται στο POS Profile
apps/erpnext/erpnext/config/hr.py +12,Employee records.,Εγγραφές υπαλλήλων
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,Παρακαλούμε να ορίσετε Επόμενο Αποσβέσεις Ημερομηνία
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,Παρακαλούμε να ορίσετε Επόμενο Αποσβέσεις Ημερομηνία
DocType: HR Settings,Payroll Settings,Ρυθμίσεις μισθοδοσίας
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,Ταίριαξε μη συνδεδεμένα τιμολόγια και πληρωμές.
DocType: POS Settings,POS Settings,Ρυθμίσεις POS
@ -5137,7 +5142,7 @@ DocType: Item,Customer Code,Κωδικός πελάτη
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},Υπενθύμιση γενεθλίων για {0}
DocType: Asset Maintenance Task,Last Completion Date,Τελευταία ημερομηνία ολοκλήρωσης
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,Ημέρες από την τελευταία παραγγελία
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,Χρέωση του λογαριασμού πρέπει να είναι ένα κονδύλι του Ισολογισμού
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,Χρέωση του λογαριασμού πρέπει να είναι ένα κονδύλι του Ισολογισμού
DocType: Buying Settings,Naming Series,Σειρά ονομασίας
DocType: Leave Block List,Leave Block List Name,Όνομα λίστας αποκλεισμού ημερών άδειας
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,ημερομηνία Ασφαλιστική Αρχή θα πρέπει να είναι μικρότερη από την ημερομηνία λήξης Ασφαλιστική
@ -5263,6 +5268,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,Πάρτε Καταχωρήσεις Πληρωμής
DocType: Quotation Item,Against Docname,Κατά όνομα εγγράφου
DocType: SMS Center,All Employee (Active),Όλοι οι υπάλληλοι (ενεργοί)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Πελάτης&gt; Ομάδα πελατών&gt; Επικράτεια
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,Δείτε τώρα
DocType: BOM,Raw Material Cost,Κόστος πρώτων υλών
DocType: Item Reorder,Re-Order Level,Επίπεδο επαναπαραγγελίας
@ -5361,7 +5367,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,Καθιστικό Χωρητικότητα
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,Εργαστηριακές ομάδες δοκιμών
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Πελάτης&gt; Ομάδα πελατών&gt; Επικράτεια
DocType: Project,Total Expense Claim (via Expense Claims),Σύνολο αξίωση Εξόδων (μέσω αξιώσεις Εξόδων)
DocType: GST Settings,GST Summary,Σύνοψη GST
DocType: Assessment Result,Total Score,Συνολικό σκορ
@ -5374,7 +5379,7 @@ DocType: Batch,Source Document Type,Τύπος εγγράφου πηγής
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,Ακολούθησαν τα προγράμματα μαθημάτων
DocType: Journal Entry,Total Debit,Συνολική χρέωση
DocType: Manufacturing Settings,Default Finished Goods Warehouse,Προεπιλογή Έτοιμα προϊόντα Αποθήκη
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,Πωλητής
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,Πωλητής
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,Προϋπολογισμός και Κέντρο Κόστους
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,Δεν επιτρέπεται πολλαπλή μέθοδος προεπιλογής πληρωμής
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,για το
@ -5547,7 +5552,7 @@ DocType: Program,Program Name,Όνομα του προγράμματος
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Σκεφτείτε φόρο ή επιβάρυνση για
DocType: Driver,Driving License Category,Κατηγορία άδειας οδήγησης
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,Η πραγματική ποσότητα είναι υποχρεωτική
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0} έχει σήμερα μια {1} καρτέλα βαθμολογίας προμηθευτή και οι εντολές αγοράς σε αυτόν τον προμηθευτή πρέπει να εκδίδονται με προσοχή.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0} έχει σήμερα μια {1} καρτέλα βαθμολογίας προμηθευτή και οι εντολές αγοράς σε αυτόν τον προμηθευτή πρέπει να εκδίδονται με προσοχή.
DocType: Asset Maintenance Team,Asset Maintenance Team,Ομάδα συντήρησης περιουσιακών στοιχείων
DocType: Employee Loan,Loan Type,Τύπος Δανείου
DocType: Scheduling Tool,Scheduling Tool,εργαλείο προγραμματισμού

Can't render this file because it is too large.

View File

@ -2,7 +2,7 @@ DocType: Timesheet,Total Costing Amount,Monto Total Calculado
DocType: Student Group Student,Student Group Student,Alumno de Grupo de Estudiantes
DocType: Delivery Note,% Installed,% Instalado
DocType: Company,Gain/Loss Account on Asset Disposal,Cuenta de ganancia/pérdida en la disposición de activos
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,"Por favor, introduzca la Vuenta para el Cambio Monto"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,"Por favor, introduzca la Vuenta para el Cambio Monto"
DocType: Sales Order,SO-,OV-
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +246,Please set the Item Code first,"Por favor, primero define el Código del Artículo"
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +60,Show unclosed fiscal year's P&L balances,Mostrar saldos de Ganancias y Perdidas de año fiscal sin cerrar
@ -60,7 +60,7 @@ DocType: Currency Exchange,Specify Exchange Rate to convert one currency into an
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +52,Only Leave Applications with status 'Approved' and 'Rejected' can be submitted,"Sólo Solicitudes de Permiso con estado ""Aprobado"" y ""Rechazado"" puede ser presentado"
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +155,Source and target warehouse must be different,El almacén de origen y el de destino deben ser diferentes
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +20,"Service Item,Type,frequency and expense amount are required","El Artículo de Servico, el Tipo, la Frecuencia y la Cantidad de Gasto son requeridos"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,El Importe Bruto de Compra es obligatorio
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,El Importe Bruto de Compra es obligatorio
DocType: Stock Entry,Customer or Supplier Details,Detalle de cliente o proveedor
DocType: Lab Test Template,Standard Selling Rate,Tarifa de Venta Estándar
DocType: Program Enrollment,School House,Casa Escuela

1 DocType: Timesheet Total Costing Amount Monto Total Calculado
2 DocType: Student Group Student Student Group Student Alumno de Grupo de Estudiantes
3 DocType: Delivery Note % Installed % Instalado
4 DocType: Company Gain/Loss Account on Asset Disposal Cuenta de ganancia/pérdida en la disposición de activos
5 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465 Please enter Account for Change Amount Por favor, introduzca la Vuenta para el Cambio Monto
6 DocType: Sales Order SO- OV-
7 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +246 Please set the Item Code first Por favor, primero define el Código del Artículo
8 apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +60 Show unclosed fiscal year's P&L balances Mostrar saldos de Ganancias y Perdidas de año fiscal sin cerrar
60
61
62
63
64
65
66

View File

@ -10,7 +10,7 @@ DocType: Sales Invoice,Packing List,Lista de Envío
DocType: Packing Slip,From Package No.,Del Paquete N º
,Quotation Trends,Tendencias de Cotización
DocType: Purchase Invoice Item,Purchase Order Item,Articulos de la Orden de Compra
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,Promedio de Compra
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,Promedio de Compra
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +315,Serial No {0} created,Número de orden {0} creado
DocType: Item,If subcontracted to a vendor,Si es sub-contratado a un vendedor
DocType: Production Order Operation,"in Minutes
@ -67,7 +67,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_cal
DocType: Production Order,Actual Start Date,Fecha de inicio actual
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,La Fecha de Finalización de Contrato debe ser mayor que la Fecha de la Firma
DocType: Sales Invoice Item,Delivery Note Item,Articulo de la Nota de Entrega
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","Lo sentimos , las empresas no se pueden combinar"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","Lo sentimos , las empresas no se pueden combinar"
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +42,Customer required for 'Customerwise Discount',Cliente requiere para ' Customerwise descuento '
apps/erpnext/erpnext/config/crm.py +17,Potential opportunities for selling.,Oportunidades de venta
DocType: Delivery Note Item,Against Sales Order Item,Contra la Orden de Venta de Artículos
@ -81,11 +81,11 @@ Used for Taxes and Charges","Tabla de detalle de Impuesto descargada de maestro
Se utiliza para las tasas y cargos"
DocType: BOM,Operating Cost,Costo de Funcionamiento
apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +56,Total Target,Totales del Objetivo
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","No se puede filtrar en función al 'No. de comprobante', si esta agrupado por 'nombre'"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","No se puede filtrar en función al 'No. de comprobante', si esta agrupado por 'nombre'"
DocType: Naming Series,Help HTML,Ayuda HTML
DocType: Production Order Operation,Actual Operation Time,Tiempo de operación actual
DocType: Sales Order,To Deliver and Bill,Para Entregar y Bill
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},Almacén requerido para la acción del artículo {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},Almacén requerido para la acción del artículo {0}
DocType: Territory,Territory Targets,Territorios Objetivos
DocType: Warranty Claim,Warranty / AMC Status,Garantía / AMC Estado
DocType: Attendance,Employee Name,Nombre del Empleado
@ -128,7 +128,7 @@ DocType: Quotation,In Words will be visible once you save the Quotation.,En pala
apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installation Note {0} has already been submitted,La nota de instalación {0} ya se ha presentado
DocType: Employee,The first Leave Approver in the list will be set as the default Leave Approver,El primer Administrador de Vacaciones in la lista sera definido como el Administrador de Vacaciones predeterminado.
apps/erpnext/erpnext/config/selling.py +105,Manage Territory Tree.,Vista en árbol para la administración de los territorios
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,Número de serie {0} entraron más de una vez
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,Número de serie {0} entraron más de una vez
apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +68,Receiver List is empty. Please create Receiver List,"Lista de receptores está vacía. Por favor, cree Lista de receptores"
DocType: Target Detail,Target Detail,Objetivo Detalle
DocType: Purchase Taxes and Charges Template,Purchase Taxes and Charges Template,Plantillas de Cargos e Impuestos
@ -162,7 +162,7 @@ apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +31,Health Care,Cu
DocType: Item,Manufacturer Part Number,Número de Pieza del Fabricante
DocType: Item Reorder,Re-Order Level,Reordenar Nivel
DocType: Customer,Sales Team Details,Detalles del equipo de ventas
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,Órden de Venta {0} no esta presentada
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,Órden de Venta {0} no esta presentada
apps/erpnext/erpnext/utilities/transaction_base.py +115,Row #{0}: Rate must be same as {1}: {2} ({3} / {4}) ,Fila # {0}: Tasa debe ser el mismo que {1}: {2} ({3} / {4})
apps/erpnext/erpnext/config/selling.py +18,Confirmed orders from Customers.,Pedidos en firme de los clientes.
DocType: Warranty Claim,Service Address,Dirección del Servicio
@ -252,7 +252,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +532,Row No
DocType: Offer Letter Term,Offer Letter Term,Término de carta de oferta
DocType: Item,Synced With Hub,Sincronizado con Hub
apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +30,Cost Center with existing transactions can not be converted to ledger,Centro de Costos de las transacciones existentes no se puede convertir en el libro mayor
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,"Por favor, ingrese el código del producto para obtener el No. de lote"
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,"Por favor, ingrese el código del producto para obtener el No. de lote"
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +46,Series is mandatory,Serie es obligatorio
,Item Shortage Report,Reportar carencia de producto
DocType: Sales Invoice,Rate at which Price list currency is converted to customer's base currency,Grado en el que la lista de precios en moneda se convierte en la moneda base del cliente
@ -264,7 +264,7 @@ apps/erpnext/erpnext/stock/doctype/price_list/price_list.py +14,Price List must
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +163,Warehouse required at Row No {0},Almacén requerido en la fila n {0}
DocType: Purchase Invoice Item,Serial No,Números de Serie
,Bank Reconciliation Statement,Extractos Bancarios
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} es obligatorio para el producto {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} es obligatorio para el producto {1}
apps/erpnext/erpnext/config/hr.py +243,"Employee designation (e.g. CEO, Director etc.).","Cargo del empleado ( por ejemplo, director general, director , etc.)"
DocType: Item,Copy From Item Group,Copiar de Grupo de Elementos
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +187,{0} ({1}) cannot be greater than planned quanitity ({2}) in Production Order {3},{0} ({1}) no puede ser mayor que cantidad planificada ({2}) en la Orden de Producción {3}
@ -347,7 +347,7 @@ DocType: Maintenance Schedule Detail,Scheduled Date,Fecha prevista
DocType: Material Request,% Ordered,% Pedido
apps/erpnext/erpnext/projects/doctype/task/task.py +38,'Expected Start Date' can not be greater than 'Expected End Date',La 'Fecha de inicio estimada' no puede ser mayor que la 'Fecha de finalización estimada'
DocType: UOM Conversion Detail,UOM Conversion Detail,Detalle de Conversión de Unidad de Medida
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","Para filtrar en base a la fiesta, seleccione Partido Escriba primero"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","Para filtrar en base a la fiesta, seleccione Partido Escriba primero"
DocType: Delivery Stop,Contact Name,Nombre del Contacto
DocType: Quotation,Quotation Lost Reason,Cotización Pérdida Razón
DocType: Monthly Distribution,Monthly Distribution Percentages,Los porcentajes de distribución mensuales
@ -358,14 +358,14 @@ apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_ac
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +127,"Special Characters except ""-"", ""#"", ""."" and ""/"" not allowed in naming series","Caracteres especiales excepto ""-"" ""."", ""#"", y ""/"" no permitido en el nombramiento de serie"
DocType: Assessment Plan,Schedule,Horario
,Invoiced Amount (Exculsive Tax),Cantidad facturada ( Impuesto exclusive )
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,Solicitud de Material {0} creada
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,Solicitud de Material {0} creada
DocType: Item,Has Variants,Tiene Variantes
DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Impuestos y Cargos Añadidos (Moneda Local)
DocType: Customer,Buyer of Goods and Services.,Compradores de Productos y Servicios.
DocType: Quotation Item,Stock Balance,Balance de Inventarios
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +748,Cost Center For Item with Item Code ',Centro de Costos para artículo con Código del artículo '
DocType: POS Profile,Write Off Cost Center,Centro de costos de desajuste
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,"Por favor, póngase en contacto con el usuario con función de Gerente de Ventas {0}"
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,"Por favor, póngase en contacto con el usuario con función de Gerente de Ventas {0}"
DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Permitir a los usuarios siguientes aprobar Solicitudes de ausencia en bloques de días.
DocType: Purchase Invoice Item,Net Rate,Tasa neta
DocType: Purchase Taxes and Charges,Reference Row #,Referencia Fila #
@ -462,7 +462,7 @@ DocType: Purchase Receipt Item,Required By,Requerido por
DocType: Purchase Invoice Item,Purchase Invoice Item,Factura de Compra del artículo
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +98,Quotation {0} not of type {1},Cotización {0} no es de tipo {1}
apps/erpnext/erpnext/config/hr.py +24,Attendance record.,Registro de Asistencia .
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,Solicitud de Material {0} cancelada o detenida
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,Solicitud de Material {0} cancelada o detenida
DocType: Purchase Invoice,Supplied Items,Artículos suministrados
DocType: Accounts Settings,Users with this role are allowed to set frozen accounts and create / modify accounting entries against frozen accounts,Los usuarios con esta función pueden establecer cuentas congeladas y crear / modificar los asientos contables contra las cuentas congeladas
DocType: Account,Debit,Débito
@ -476,7 +476,7 @@ apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Generar etiquetas s
apps/erpnext/erpnext/config/buying.py +23,Quotations received from Suppliers.,Cotizaciones recibidas de los proveedores.
DocType: Sales Partner,Sales Partner Target,Socio de Ventas Objetivo
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,Hacer Visita de Mantenimiento
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},Inventario no puede actualizarse contra Nota de Envio {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},Inventario no puede actualizarse contra Nota de Envio {0}
DocType: Workstation,Rent Cost,Renta Costo
apps/erpnext/erpnext/hooks.py +142,Issues,Problemas
DocType: BOM Update Tool,Current BOM,Lista de materiales actual
@ -613,7 +613,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +97,Sales Orde
DocType: Serial No,Out of AMC,Fuera de AMC
DocType: Leave Application,Apply / Approve Leaves,Aplicar / Aprobar Vacaciones
DocType: Offer Letter,Select Terms and Conditions,Selecciona Términos y Condiciones
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,Nota de Entrega {0} no está presentada
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,Nota de Entrega {0} no está presentada
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +137,"Row {0}: To set {1} periodicity, difference between from and to date \
must be greater than or equal to {2}","Fila {0}: Para establecer {1} periodicidad, diferencia entre desde y hasta la fecha \
debe ser mayor que o igual a {2}"
@ -684,7 +684,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +159,Employee cannot report
DocType: Stock Entry,Delivery Note No,No. de Nota de Entrega
DocType: Journal Entry Account,Purchase Order,Órdenes de Compra
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,Empleado {0} no está activo o no existe
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,Se requiere un perfil POS para crear entradas en el Punto-de-Venta
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,Se requiere un perfil POS para crear entradas en el Punto-de-Venta
,Requested Items To Be Ordered,Solicitud de Productos Aprobados
DocType: Salary Slip,Leave Without Pay,Licencia sin Sueldo
apps/erpnext/erpnext/accounts/doctype/account/account.py +81,Root cannot be edited.,Root no se puede editar .
@ -762,7 +762,7 @@ DocType: Account,Expenses Included In Valuation,Gastos dentro de la valoración
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,Clientes Nuevos
DocType: Purchase Invoice,Total Taxes and Charges (Company Currency),Total Impuestos y Cargos (Moneda Local)
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,Pieza de trabajo
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,El elemento {0}: Con la cantidad ordenada {1} no puede ser menor que el pedido mínimo {2} (definido en el producto).
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,El elemento {0}: Con la cantidad ordenada {1} no puede ser menor que el pedido mínimo {2} (definido en el producto).
DocType: Warehouse,A logical Warehouse against which stock entries are made.,Un almacén lógico por el cual se hacen las entradas de existencia.
DocType: Item,Has Batch No,Tiene lote No
DocType: Serial No,Creation Document Type,Tipo de creación de documentos
@ -846,7 +846,7 @@ DocType: Cost Center,Cost Center Name,Nombre Centro de Costo
DocType: Stock Entry Detail,Material Request used to make this Stock Entry,Solicitud de Material utilizado para hacer esta Entrada de Inventario
DocType: Fiscal Year,Year End Date,Año de Finalización
DocType: Purchase Invoice,Supplier Invoice Date,Fecha de la Factura de Proveedor
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},Límite de crédito se ha cruzado para el cliente {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},Límite de crédito se ha cruzado para el cliente {0} {1} / {2}
apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +37,This is a root item group and cannot be edited.,Se trata de un grupo de elementos raíz y no se puede editar .
apps/erpnext/erpnext/controllers/buying_controller.py +289,Specified BOM {0} does not exist for Item {1},Solicitud de Materiales especificado {0} no existe la partida {1}
apps/erpnext/erpnext/hr/doctype/appraisal_template/appraisal_template.py +21,Sum of points for all goals should be 100. It is {0},Suma de puntos para todas las metas debe ser 100. Es {0}
@ -892,7 +892,7 @@ DocType: Employee,Employment Details,Detalles de Empleo
DocType: Stock Reconciliation Item,Stock Reconciliation Item,Articulo de Reconciliación de Inventario
apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent account {1} does not belong to company: {2},Cuenta {0}: Cuenta Padre {1} no pertenece a la compañía: {2}
DocType: Serial No,Purchase / Manufacture Details,Detalles de Compra / Fábricas
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,La cuenta para Débito debe ser una cuenta por cobrar
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,La cuenta para Débito debe ser una cuenta por cobrar
DocType: Warehouse,Warehouse Detail,Detalle de almacenes
DocType: Stock Settings,Raise Material Request when stock reaches re-order level,Enviar solicitud de materiales cuando se alcance un nivel bajo el stock
DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,Detalle de Calendario de Mantenimiento
@ -920,7 +920,7 @@ DocType: Expense Claim,Employees Email Id,Empleados Email Id
apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +21,Shortage Qty,Escasez Cantidad
,Cash Flow,Flujo de Caja
DocType: Accounts Settings,Role that is allowed to submit transactions that exceed credit limits set.,Función que esta autorizada a presentar las transacciones que excedan los límites de crédito establecidos .
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} No. de serie válidos para el producto {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} No. de serie válidos para el producto {1}
DocType: Stock Settings,Default Stock UOM,Unidad de Medida Predeterminada para Inventario
DocType: Job Opening,Description of a Job Opening,Descripción de una oferta de trabajo
apps/erpnext/erpnext/controllers/trends.py +269,Project-wise data is not available for Quotation,El seguimiento preciso del proyecto no está disponible para la cotización--
@ -929,7 +929,7 @@ apps/erpnext/erpnext/config/hr.py +233,Organization branch master.,División pri
DocType: Quotation Item,Quotation Item,Cotización del artículo
DocType: Employee,Date of Issue,Fecha de emisión
DocType: Sales Invoice Item,Sales Invoice Item,Articulo de la Factura de Venta
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},Cliente {0} no pertenece a proyectar {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},Cliente {0} no pertenece a proyectar {1}
DocType: Delivery Note Item,Against Sales Invoice Item,Contra la Factura de Venta de Artículos
DocType: Sales Invoice,Accounting Details,detalles de la contabilidad
apps/erpnext/erpnext/config/accounts.py +67,Accounting journal entries.,Entradas en el diario de contabilidad.
@ -994,7 +994,7 @@ DocType: Employee,Short biography for website and other publications.,Breve biog
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +208,Leave of type {0} cannot be longer than {1},Permiso de tipo {0} no puede tener más de {1}
,Sales Browser,Navegador de Ventas
DocType: Employee,Contact Details,Datos del Contacto
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},Almacén {0} no pertenece a la empresa {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},Almacén {0} no pertenece a la empresa {1}
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,El artículo {0} no puede tener lotes
DocType: Employee Leave Approver,Users who can approve a specific employee's leave applications,Los usuarios que pueden aprobar las solicitudes de licencia de un empleado específico
apps/erpnext/erpnext/config/manufacturing.py +18,Generate Material Requests (MRP) and Production Orders.,Generar Solicitudes de Material ( MRP ) y Órdenes de Producción .

1 apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.js +13 This is a root sales person and cannot be edited. Se trata de una persona de las ventas raíz y no se puede editar .
10 DocType: Packing Slip From Package No. Del Paquete N º
11 Quotation Trends Tendencias de Cotización
12 DocType: Purchase Invoice Item Purchase Order Item Articulos de la Orden de Compra
13 apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71 apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70 Avg. Buying Rate Promedio de Compra
14 apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +315 Serial No {0} created Número de orden {0} creado
15 DocType: Item If subcontracted to a vendor Si es sub-contratado a un vendedor
16 DocType: Production Order Operation in Minutes Updated via 'Time Log' En minutos actualizado a través de 'Bitácora de tiempo'
67 apps/erpnext/erpnext/hr/doctype/employee/employee.py +124 Contract End Date must be greater than Date of Joining La Fecha de Finalización de Contrato debe ser mayor que la Fecha de la Firma
68 DocType: Sales Invoice Item Delivery Note Item Articulo de la Nota de Entrega
69 apps/erpnext/erpnext/setup/doctype/company/company.py +222 apps/erpnext/erpnext/setup/doctype/company/company.py +228 Sorry, companies cannot be merged Lo sentimos , las empresas no se pueden combinar
70 apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +42 Customer required for 'Customerwise Discount' Cliente requiere para ' Customerwise descuento '
71 apps/erpnext/erpnext/config/crm.py +17 Potential opportunities for selling. Oportunidades de venta
72 DocType: Delivery Note Item Against Sales Order Item Contra la Orden de Venta de Artículos
73 DocType: Quality Inspection Sample Size Tamaño de la muestra
81 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44 Can not filter based on Voucher No, if grouped by Voucher No se puede filtrar en función al 'No. de comprobante', si esta agrupado por 'nombre'
82 DocType: Naming Series Help HTML Ayuda HTML
83 DocType: Production Order Operation Actual Operation Time Tiempo de operación actual
84 DocType: Sales Order To Deliver and Bill Para Entregar y Bill
85 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449 Warehouse required for stock Item {0} Almacén requerido para la acción del artículo {0}
86 DocType: Territory Territory Targets Territorios Objetivos
87 DocType: Warranty Claim Warranty / AMC Status Garantía / AMC Estado
88 DocType: Attendance Employee Name Nombre del Empleado
89 apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +215 Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule' Programa de mantenimiento no se genera para todos los artículos. Por favor, haga clic en ¨ Generar Programación¨
90 DocType: Email Digest New Sales Orders Nueva Órden de Venta
91 apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +49 Software Software
128 apps/erpnext/erpnext/stock/utils.py +205 apps/erpnext/erpnext/stock/utils.py +204 Serial number {0} entered more than once Número de serie {0} entraron más de una vez
129 apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +68 Receiver List is empty. Please create Receiver List Lista de receptores está vacía. Por favor, cree Lista de receptores
130 DocType: Target Detail Target Detail Objetivo Detalle
131 DocType: Purchase Taxes and Charges Template Purchase Taxes and Charges Template Plantillas de Cargos e Impuestos
132 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +138 Current Liabilities Pasivo Corriente
133 apps/erpnext/erpnext/config/setup.py +32 Titles for print templates e.g. Proforma Invoice. Títulos para plantillas de impresión, por ejemplo, Factura Proforma.
134 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +99 Freight and Forwarding Charges Cargos por transporte de mercancías y transito
162 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572 Sales Order {0} is not submitted Órden de Venta {0} no esta presentada
163 apps/erpnext/erpnext/utilities/transaction_base.py +115 Row #{0}: Rate must be same as {1}: {2} ({3} / {4}) Fila # {0}: Tasa debe ser el mismo que {1}: {2} ({3} / {4})
164 apps/erpnext/erpnext/config/selling.py +18 Confirmed orders from Customers. Pedidos en firme de los clientes.
165 DocType: Warranty Claim Service Address Dirección del Servicio
166 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +9 Application of Funds (Assets) Aplicación de Fondos (Activos )
167 DocType: Pricing Rule Discount on Price List Rate (%) Descuento sobre la tarifa del listado de precios (%)
168 apps/erpnext/erpnext/public/js/setup_wizard.js +110 The name of your company for which you are setting up this system. El nombre de su empresa para la que va a configurar el sistema.
252 apps/erpnext/erpnext/public/js/controllers/transaction.js +1240 apps/erpnext/erpnext/public/js/controllers/transaction.js +1243 Please enter Item Code to get batch no Por favor, ingrese el código del producto para obtener el No. de lote
253 apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +46 Series is mandatory Serie es obligatorio
254 Item Shortage Report Reportar carencia de producto
255 DocType: Sales Invoice Rate at which Price list currency is converted to customer's base currency Grado en el que la lista de precios en moneda se convierte en la moneda base del cliente
256 DocType: Stock Entry Sales Invoice No Factura de Venta No
257 DocType: HR Settings Don't send Employee Birthday Reminders En enviar recordatorio de cumpleaños del empleado
258 Ordered Items To Be Delivered Artículos pedidos para ser entregados
264 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421 {0} is mandatory for Item {1} {0} es obligatorio para el producto {1}
265 apps/erpnext/erpnext/config/hr.py +243 Employee designation (e.g. CEO, Director etc.). Cargo del empleado ( por ejemplo, director general, director , etc.)
266 DocType: Item Copy From Item Group Copiar de Grupo de Elementos
267 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +187 {0} ({1}) cannot be greater than planned quanitity ({2}) in Production Order {3} {0} ({1}) no puede ser mayor que cantidad planificada ({2}) en la Orden de Producción {3}
268 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917 Select Item for Transfer Seleccionar elemento de Transferencia
269 apps/erpnext/erpnext/hr/doctype/employee/employee.py +115 Date of Joining must be greater than Date of Birth Fecha de acceso debe ser mayor que Fecha de Nacimiento
270 DocType: Buying Settings Settings for Buying Module Ajustes para la compra de módulo
347 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55 To filter based on Party, select Party Type first Para filtrar en base a la fiesta, seleccione Partido Escriba primero
348 DocType: Delivery Stop Contact Name Nombre del Contacto
349 DocType: Quotation Quotation Lost Reason Cotización Pérdida Razón
350 DocType: Monthly Distribution Monthly Distribution Percentages Los porcentajes de distribución mensuales
351 apps/erpnext/erpnext/config/maintenance.py +12 Plan for maintenance visits. Plan para las visitas de mantenimiento.
352 SO Qty SO Cantidad
353 DocType: Shopping Cart Settings Quotation Series Serie Cotización
358 apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548 apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550 Material Requests {0} created Solicitud de Material {0} creada
359 DocType: Item Has Variants Tiene Variantes
360 DocType: Purchase Invoice Taxes and Charges Added (Company Currency) Impuestos y Cargos Añadidos (Moneda Local)
361 DocType: Customer Buyer of Goods and Services. Compradores de Productos y Servicios.
362 DocType: Quotation Item Stock Balance Balance de Inventarios
363 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +748 Cost Center For Item with Item Code ' Centro de Costos para artículo con Código del artículo '
364 DocType: POS Profile Write Off Cost Center Centro de costos de desajuste
365 apps/erpnext/erpnext/selling/doctype/customer/customer.py +198 apps/erpnext/erpnext/selling/doctype/customer/customer.py +199 Please contact to the user who have Sales Master Manager {0} role Por favor, póngase en contacto con el usuario con función de Gerente de Ventas {0}
366 DocType: Leave Block List Allow the following users to approve Leave Applications for block days. Permitir a los usuarios siguientes aprobar Solicitudes de ausencia en bloques de días.
367 DocType: Purchase Invoice Item Net Rate Tasa neta
368 DocType: Purchase Taxes and Charges Reference Row # Referencia Fila #
369 DocType: Employee Internal Work History Employee Internal Work History Historial de Trabajo Interno del Empleado
370 DocType: Employee Salary Mode Modo de Salario
371 apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +22 Please enter parent cost center Por favor, ingrese el centro de costos maestro
462 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162 Material Request {0} is cancelled or stopped Solicitud de Material {0} cancelada o detenida
463 DocType: Purchase Invoice Supplied Items Artículos suministrados
464 DocType: Accounts Settings Users with this role are allowed to set frozen accounts and create / modify accounting entries against frozen accounts Los usuarios con esta función pueden establecer cuentas congeladas y crear / modificar los asientos contables contra las cuentas congeladas
465 DocType: Account Debit Débito
466 apps/erpnext/erpnext/config/accounts.py +330 e.g. Bank, Cash, Credit Card por ejemplo Banco, Efectivo , Tarjeta de crédito
467 DocType: Production Order Material Transferred for Manufacturing Material transferido para fabricación
468 DocType: Item Reorder Item Reorder Reordenar productos
476 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454 Stock cannot be updated against Delivery Note {0} Inventario no puede actualizarse contra Nota de Envio {0}
477 DocType: Workstation Rent Cost Renta Costo
478 apps/erpnext/erpnext/hooks.py +142 Issues Problemas
479 DocType: BOM Update Tool Current BOM Lista de materiales actual
480 apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +77 Row # {0}: Fila # {0}:
481 DocType: Timesheet % Amount Billed % Monto Facturado
482 DocType: BOM Manage cost of operations Administrar el costo de las operaciones
613 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575 Delivery Note {0} is not submitted Nota de Entrega {0} no está presentada
614 apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +137 Row {0}: To set {1} periodicity, difference between from and to date \ must be greater than or equal to {2} Fila {0}: Para establecer {1} periodicidad, diferencia entre desde y hasta la fecha \ debe ser mayor que o igual a {2}
615 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +36 Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc. Luego las reglas de precios son filtradas en base a Cliente, Categoría de cliente, Territorio, Proveedor, Tipo de Proveedor, Campaña, Socio de Ventas, etc
616 DocType: Opportunity Enter name of campaign if source of enquiry is campaign Introduzca el nombre de la campaña si el origen de la encuesta es una campaña
617 DocType: BOM Item Scrap % Chatarra %
618 apps/erpnext/erpnext/public/js/setup_wizard.js +52 Upload your letter head and logo. (you can edit them later). Carge su membrete y su logotipo. (Puede editarlos más tarde).
619 DocType: Item Is Purchase Item Es una compra de productos
684 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +154 Source warehouse is mandatory for row {0} Almacén de origen es obligatoria para la fila {0}
685 DocType: Sales Partner Target Distribution Distribución Objetivo
686 apps/erpnext/erpnext/config/hr.py +45 Opening for a Job. Apertura de un Trabajo .
687 DocType: BOM Item Image (if not slideshow) Imagen del Artículo (si no, presentación de diapositivas)
688 DocType: Naming Series Change the starting / current sequence number of an existing series. Defina el número de secuencia nuevo para esta transacción
689 DocType: Serial No Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt Depósito sólo se puede cambiar a través de la Entrada de Almacén / Nota de Entrega / Recibo de Compra
690 DocType: Quotation Quotation To Cotización Para
762 DocType: Supplier Quotation Item Prevdoc DocType DocType Prevdoc
763 DocType: Student Attendance Tool Batch Lotes de Producto
764 DocType: BOM Update Tool The BOM which will be replaced La Solicitud de Materiales que será sustituida
765 apps/erpnext/erpnext/accounts/doctype/account/account.py +98 Account with child nodes cannot be set as ledger La Cuenta con subcuentas no puede convertirse en libro de diario.
766 Stock Projected Qty Cantidad de Inventario Proyectada
767 DocType: Production Order Operation Updated via 'Time Log' Actualizado a través de 'Hora de Registro'
768 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +370 {0} against Bill {1} dated {2} {0} contra Factura {1} de fecha {2}
846 apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +240 There are more holidays than working days this month. Hay más vacaciones que días de trabajo este mes.
847 DocType: Packing Slip Gross Weight UOM Peso Bruto de la Unidad de Medida
848 Territory Target Variance Item Group-Wise Variación de Grupo por Territorio Objetivo
849 DocType: BOM Item to be manufactured or repacked Artículo a fabricar o embalados de nuevo
850 DocType: Purchase Order Supply Raw Materials Suministro de Materias Primas
851 apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +31 Supplier Type / Supplier Tipo de Proveedor / Proveedor
852 apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +51 Warehouse can not be deleted as stock ledger entry exists for this warehouse. Almacén no se puede suprimir porque hay una entrada en registro de inventario para este almacén.
892 DocType: POS Item Group Item Group Grupo de artículos
893 apps/erpnext/erpnext/config/selling.py +321 Point-of-Sale Punto de venta
894 DocType: Purchase Invoice Item Rejected Serial No Rechazado Serie No
895 apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +38 Search Sub Assemblies Asambleas Buscar Sub
896 DocType: Item Supplier Items Artículos del Proveedor
897 DocType: Opportunity Contact Mobile No No Móvil del Contacto
898 DocType: C-Form Invoice Detail Invoice Date Fecha de la factura
920 DocType: Company Stock Settings Ajustes de Inventarios
921 apps/erpnext/erpnext/config/hr.py +233 Organization branch master. División principal de la organización.
922 DocType: Quotation Item Quotation Item Cotización del artículo
923 DocType: Employee Date of Issue Fecha de emisión
924 DocType: Sales Invoice Item Sales Invoice Item Articulo de la Factura de Venta
925 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431 Customer {0} does not belong to project {1} Cliente {0} no pertenece a proyectar {1}
926 DocType: Delivery Note Item Against Sales Invoice Item Contra la Factura de Venta de Artículos
929 apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +58 Missing Currency Exchange Rates for {0} Falta de Tipo de Cambio de moneda para {0}
930 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +163 Capital Stock Capital Social
931 DocType: HR Settings Employee Records to be created by Registros de empleados a ser creados por
932 DocType: Account Expense Account Cuenta de gastos
933 apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +232 Maintenance Schedule {0} must be cancelled before cancelling this Sales Order Programa de mantenimiento {0} debe ser cancelado antes de cancelar esta orden de venta
934 DocType: Stock Ledger Entry Actual Qty After Transaction Cantidad actual después de la transacción
935 apps/erpnext/erpnext/setup/doctype/territory/territory.py +19 Either target qty or target amount is mandatory Cualquiera Cantidad Meta o Monto Meta es obligatoria
994 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +187 For Quantity (Manufactured Qty) is mandatory Por Cantidad (Cantidad fabricada) es obligatorio
995 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +580 cannot be greater than 100 No puede ser mayor que 100
996 DocType: Maintenance Visit Customer Feedback Comentarios del cliente
997 DocType: Purchase Receipt Item Supplied Required Qty Cant. Necesaria
998 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933 Delivery Note Notas de Entrega
999 DocType: Bin Stock Value Valor de Inventario
1000 DocType: Purchase Invoice In Words (Company Currency) En palabras (Moneda Local)

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,Prescripción de Laboratorio
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,Ordenar por Precio
,Delay Days,Días de demora
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,Gasto de Servicio
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},Número de serie: {0} ya se hace referencia en Factura de venta: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},Número de serie: {0} ya se hace referencia en Factura de venta: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,Factura
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,Hacer la Entrada de Stock de Retención
DocType: Purchase Invoice Item,Item Weight Details,Detalles del Peso del Artículo
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,Detalle principal docname
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","Referencia: {0}, Código del Artículo: {1} y Cliente: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,Kilogramo
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,Apertura de un puesto
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},La Lista de Materiales no está especificada para la subcontratación del elemento {0} en la fila {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},La Lista de Materiales no está especificada para la subcontratación del elemento {0} en la fila {1}
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} Resultado enviado
DocType: Item Attribute,Increment,Incremento
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,Espacio de tiempo
@ -150,7 +150,7 @@ DocType: Patient,Married,Casado
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},No está permitido para {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,Obtener artículos de
DocType: Price List,Price Not UOM Dependant,Precio no Dependiente de UOM
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},Inventario no puede actualizarse contra la nota de envío {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},Inventario no puede actualizarse contra la nota de envío {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},Producto {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,No hay elementos en la lista
DocType: Asset Repair,Error Description,Descripción del Error
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,Conciliar
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,Abarrotes
DocType: Quality Inspection Reading,Reading 1,Lectura 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,Fondo de pensiones
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,Siguiente Fecha de Depreciación no puede ser anterior a la Fecha de Compra
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,Siguiente Fecha de Depreciación no puede ser anterior a la Fecha de Compra
DocType: Crop,Perennial,Perenne
DocType: Consultation,Consultation Date,Fecha de Consulta
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,Listado de productos y descubrimiento para usuarios de ERPNext
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,Desajuste de centro de costos
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""","por ejemplo, &quot;escuela primaria&quot; o &quot;Universidad&quot;"
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,Reportes de Stock
DocType: Warehouse,Warehouse Detail,Detalles del Almacén
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},Límite de crédito ha sido sobrepasado para el cliente {0} {1}/{2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},Límite de crédito ha sido sobrepasado para el cliente {0} {1}/{2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,"La fecha final de duración no puede ser posterior a la fecha de fin de año del año académico al que está vinculado el término (año académico {}). Por favor, corrija las fechas y vuelve a intentarlo."
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","""Es activo fijo"" no puede estar sin marcar, ya que existe registro de activos contra el elemento"
DocType: Delivery Trip,Departure Time,Hora de Salida
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,Bitácora del Estudiante
DocType: Quality Inspection,Get Specification Details,Obtener especificaciones
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,Plantillas de posiciones de proveedores.
DocType: Lead,Interested,Interesado
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,Apertura
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,Apertura
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},Desde {0} a {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,Error al configurar los impuestos
DocType: Item,Copy From Item Group,Copiar desde grupo
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,La fecha de relevo debe ser mayor que la fecha de inicio
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,Ausencias por año
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,"Línea {0}: Por favor, verifique 'Es un anticipo' para la cuenta {1} si se trata de una entrada de pago anticipado."
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},El almacén {0} no pertenece a la compañía {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},El almacén {0} no pertenece a la compañía {1}
DocType: Email Digest,Profit & Loss,Perdidas & Ganancias
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,Litro
DocType: Task,Total Costing Amount (via Time Sheet),Importe total del cálculo del coste (mediante el cuadro de horario de trabajo)
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,Tasa y Cantidad
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,Esto se basa en transacciones contra esta Compañía. Vea la cronología a continuación para más detalles
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Notificarme por Email cuando se genere una nueva requisición de materiales
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,Resistente
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Consultationt
DocType: Journal Entry,Multi Currency,Multi Moneda
DocType: Opening Invoice Creation Tool,Invoice Type,Tipo de factura
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,Nota de entrega
@ -528,7 +529,6 @@ DocType: Email Digest,Credit Balance,Saldo Acreedor
DocType: Employee,Widowed,Viudo
DocType: Request for Quotation,Request for Quotation,Solicitud de Cotización
DocType: Healthcare Settings,Require Lab Test Approval,Requerir la aprobación de la Prueba de Laboratorio
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Código de artículo&gt; Grupo de artículos&gt; Marca
DocType: Salary Slip Timesheet,Working Hours,Horas de Trabajo
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,Total Excepcional
DocType: Naming Series,Change the starting / current sequence number of an existing series.,Defina el nuevo número de secuencia para esta transacción.
@ -557,7 +557,7 @@ DocType: Subscription,Yearly,Anual
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,"Por favor, introduzca el centro de costos"
DocType: Drug Prescription,Dosage,Dosificación
DocType: Journal Entry Account,Sales Order,Orden de venta (OV)
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,Precio de venta promedio
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,Precio de venta promedio
DocType: Assessment Plan,Examiner Name,Nombre del examinador
DocType: Lab Test Template,No Result,Sin resultados
DocType: Purchase Invoice Item,Quantity and Rate,Cantidad y Precios
@ -605,6 +605,7 @@ DocType: Employee,Health Concerns,Problemas de salud
DocType: Payroll Entry,Select Payroll Period,Seleccione el Período de Nómina
DocType: Purchase Invoice,Unpaid,Impagado
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,Reservado para venta
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Configure el Sistema de nombres de empleados en Recursos humanos&gt; Configuración de recursos humanos
DocType: Packing Slip,From Package No.,Desde Paquete Nro.
DocType: Item Attribute,To Range,A rango
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,Valores y depósitos
@ -629,11 +630,11 @@ DocType: Pricing Rule,Valid Upto,Válido Hasta
DocType: Training Event,Workshop,Taller
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,Avisar en Órdenes de Compra
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,Enumere algunos de sus clientes. Pueden ser organizaciones o personas.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,Piezas suficiente para construir
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,Piezas suficiente para construir
DocType: POS Profile User,POS Profile User,Usuario de Perfil POS
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,Ingreso directo
DocType: Patient Appointment,Date TIme,Fecha y Hora
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","No se puede filtrar en función de la cuenta , si se agrupan por cuenta"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","No se puede filtrar en función de la cuenta , si se agrupan por cuenta"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,Funcionario administrativo
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,Configuración de Compañía e Impuestos
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,Por favor seleccione Curso
@ -643,7 +644,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,Cuenta para la Diferencia
DocType: Purchase Invoice,Supplier GSTIN,GSTIN de Proveedor
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,No se puede cerrar la tarea que depende de {0} ya que no está cerrada.
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,"Por favor, ingrese el almacén en el cual la requisición de materiales sera despachada"
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,"Por favor, ingrese el almacén en el cual la requisición de materiales sera despachada"
DocType: Production Order,Additional Operating Cost,Costos adicionales de operación
DocType: Lab Test Template,Lab Routine,Rutina de Laboratorio
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,Cosméticos
@ -811,7 +812,7 @@ DocType: Employee,Passport Number,Número de pasaporte
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Relación con Tutor2
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,Gerente
DocType: Payment Entry,Payment From / To,Pago de / a
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},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}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},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}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},Configura la Cuenta en Almacén {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,'Basado en' y 'Agrupar por' no pueden ser iguales
DocType: Sales Person,Sales Person Targets,Objetivos de ventas del vendedor
@ -822,7 +823,7 @@ DocType: Lab Test Template,Compound,Compuesto
DocType: Student Batch Name,Batch Name,Nombre del lote
DocType: Fee Validity,Max number of visit,Número máximo de visitas
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,Tabla de Tiempo creada:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},"Por favor, defina la cuenta de bancos o caja predeterminados en el método de pago {0}"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},"Por favor, defina la cuenta de bancos o caja predeterminados en el método de pago {0}"
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,Inscribirse
DocType: GST Settings,GST Settings,Configuración de GST
DocType: Selling Settings,Customer Naming By,Ordenar cliente por
@ -946,7 +947,7 @@ DocType: Delivery Note,Customer's Purchase Order No,Pedido de compra No.
DocType: Budget,Budget Against,Contra Presupuesto
DocType: Employee,Cell Number,Número de movil
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,No hay empleado para los criterios dados. Verifique que las hojas salariales aún no se hayan creado.
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,Solicitudes de Material Automáticamente Generadas
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,Solicitudes de Material Automáticamente Generadas
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,Perdido
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,Usted no puede ingresar Comprobante Actual en la comumna 'Contra Contrada de Diario'
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,Reservado para la fabricación
@ -954,7 +955,7 @@ DocType: Soil Texture,Sand,Arena
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,Energía
DocType: Opportunity,Opportunity From,Oportunidad desde
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,Nómina mensual.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Fila {0}: {1} Números de serie necesarios para el elemento {2}. Ha proporcionado {3}.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Fila {0}: {1} Números de serie necesarios para el elemento {2}. Ha proporcionado {3}.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,Por favor seleccione una mesa
DocType: BOM,Website Specifications,Especificaciones del sitio web
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} es una dirección de correo electrónico no válida en &quot;Destinatarios&quot;
@ -1023,7 +1024,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,Presupuesto Solicitado
DocType: Vital Signs,Heart Rate / Pulse,Frecuencia Cardíaca / Pulso
DocType: Company,Default Bank Account,Cuenta bancaria por defecto
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","Para filtrar en base a terceros, seleccione el tipo de entidad"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","Para filtrar en base a terceros, seleccione el tipo de entidad"
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},'Actualizar existencias' no puede marcarse porque los artículos no se han entregado mediante {0}
DocType: Vehicle,Acquisition Date,Fecha de Adquisición
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,Nos.
@ -1047,7 +1048,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),Suba su encabezado de carta (mantenlo compatible con la web como 900 px por 100 px)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: Cuenta {2} no puede ser un grupo
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,Elemento Fila {idx}: {doctype} {docname} no existe en la anterior tabla '{doctype}'
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,Table de Tiempo {0} ya se haya completado o cancelado
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,Table de Tiempo {0} ya se haya completado o cancelado
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,No hay tareas
DocType: Item Variant Settings,Copy Fields to Variant,Copiar Campos a Variante
DocType: Asset,Opening Accumulated Depreciation,Apertura de la depreciación acumulada
@ -1159,9 +1160,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,Plan de materiales para los subconjuntos
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,Socios Comerciales y Territorio
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,La lista de materiales (LdM) {0} debe estar activa
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),Cierre (Apertura + Total)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),Cierre (Apertura + Total)
DocType: Journal Entry,Depreciation Entry,Entrada de Depreciación
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,"Por favor, seleccione primero el tipo de documento"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,Imprimir en moneda de la cuenta
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Cancelar visitas {0} antes de cancelar la visita de mantenimiento
DocType: Crop Cycle,ISO 8016 standard,Estándar ISO 8016
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},Número de serie {0} no pertenece al producto {1}
@ -1187,7 +1189,7 @@ DocType: Purchase Receipt,Range,Rango
DocType: Supplier,Default Payable Accounts,Cuentas por pagar por defecto
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,El empleado {0} no está activo o no existe
DocType: Fee Structure,Components,componentes
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},"Por favor, introduzca categoría de activos en el artículo {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},"Por favor, introduzca categoría de activos en el artículo {0}"
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,{0} variantes actualizadas del producto
DocType: Quality Inspection Reading,Reading 6,Lectura 6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1239,6 +1241,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,Nombre de compañía
DocType: SMS Center,Total Message(s),Total Mensage(s)
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,Seleccione el producto a transferir
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Establezca Naming Series para {0} a través de Setup&gt; Settings&gt; Naming Series
DocType: Purchase Invoice,Additional Discount Percentage,Porcentaje de descuento adicional
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,Ver una lista de todos los vídeos de ayuda
DocType: Agriculture Analysis Criteria,Soil Texture,Textura de la Tierra
@ -1266,7 +1269,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,BOM de artículo del sitio web
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,Cargue su membrete y el logotipo. (Estos pueden editarse más tarde).
DocType: Timesheet Detail,Bill,Cuenta
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,La próxima fecha de depreciación se introduce como fecha pasada
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,La próxima fecha de depreciación se introduce como fecha pasada
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,Blanco
DocType: SMS Center,All Lead (Open),Todas las Oportunidades (Abiertas)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),Fila {0}: Cantidad no está disponible para {4} en el almacén {1} en el momento de publicación de la entrada ({2} {3})
@ -1282,7 +1285,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,Siguiente fecha de contacto
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,Cant. de Apertura
DocType: Healthcare Settings,Appointment Reminder,Recordatorio de Cita
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,"Por favor, introduzca la cuenta para el importe de cambio"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,"Por favor, introduzca la cuenta para el importe de cambio"
DocType: Program Enrollment Tool Student,Student Batch Name,Nombre de Lote del Estudiante
DocType: Consultation,Doctor,Doctor
DocType: Holiday List,Holiday List Name,Nombre de festividad
@ -1298,6 +1301,7 @@ DocType: Patient,Patient Relation,Relación del Paciente
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,Herramienta de asignación de vacaciones
DocType: Item,Hub Category to Publish,Categoría de Hub para Publicar
DocType: Leave Block List,Leave Block List Dates,Fechas de Lista de Bloqueo de Vacaciones
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Configure las series de numeración para Asistencia a través de Configuración&gt; Serie de numeración
DocType: Sales Invoice,Billing Address GSTIN,Dirección de facturación GSTIN
DocType: Assessment Plan,Evaluate,Evaluar
DocType: Workstation,Net Hour Rate,Tasa neta por hora
@ -1331,7 +1335,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,Recibo de compra del producto
DocType: Purchase Receipt,PREC-RET-,PREC-RET-
DocType: POS Profile,Sales Invoice Payment,Pago de Facturas de Venta
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,El almacén reservado en el Pedido de Ventas/Almacén de Productos terminados
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,Cantidad de venta
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,Cantidad de venta
DocType: Repayment Schedule,Interest Amount,Cantidad de Interés
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,"Usted es el supervisor de gastos para este registro. Por favor, actualice el estado y guarde"
DocType: Serial No,Creation Document No,Creación del documento No
@ -1422,7 +1426,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,Apertura de saldos contables
,GST Sales Register,Registro de ventas de GST
DocType: Sales Invoice Advance,Sales Invoice Advance,Factura de ventas anticipada
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,Nada que solicitar
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,Nada que solicitar
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,Seleccione sus Dominios
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},Otro registro de Presupuesto '{0}' ya existe en contra {1} '{2}' para el año fiscal {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,Los campos se copiarán solo al momento de la creación.
@ -1432,11 +1436,11 @@ DocType: Cheque Print Template,Payer Settings,Configuración del pagador
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","Esto se añade al código del producto y la variante. Por ejemplo, si su abreviatura es ""SM"", y el código del artículo es ""CAMISETA"", entonces el código de artículo de la variante será ""CAMISETA-SM"""
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,Pago neto (en palabras) será visible una vez que guarde la nómina salarial.
DocType: Purchase Invoice,Is Return,Es un retorno
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,Precaución
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,Precaución
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,Retorno / Nota de Débito
DocType: Price List Country,Price List Country,Lista de precios del país
DocType: Item,UOMs,UdM
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} núms. de serie válidos para el artículo {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} núms. de serie válidos para el artículo {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,El código del producto no se puede cambiar por un número de serie
DocType: Purchase Invoice Item,UOM Conversion Factor,Factor de Conversión de Unidad de Medida
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,"Por favor, introduzca el código de artículo para obtener el número de lote"
@ -1540,7 +1544,7 @@ DocType: Journal Entry,Get Outstanding Invoices,Obtener facturas pendientes de p
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,Orden de venta {0} no es válida
DocType: Supplier Scorecard,Warn for new Request for Quotations,Avisar de nuevas Solicitudes de Presupuesto
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,Las órdenes de compra le ayudará a planificar y dar seguimiento a sus compras
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","Lamentablemente, las compañías no se pueden combinar"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","Lamentablemente, las compañías no se pueden combinar"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,Prescripciones para pruebas de laboratorio
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",La cantidad total de emisión / Transferencia {0} en la Solicitud de material {1} \ no puede ser mayor que la cantidad solicitada {2} para el artículo {3}
@ -1578,7 +1582,6 @@ DocType: Vehicle,Fuel UOM,UOM de Combustible
DocType: Warehouse,Warehouse Contact Info,Información del Contacto en el Almacén
DocType: Payment Entry,Write Off Difference Amount,Amortizar importe de la diferencia
DocType: Volunteer,Volunteer Name,Nombre del Voluntario
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Configure el Sistema de nombres de instructor en Educación&gt; Configuración educativa
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0}: No se encontró el correo electrónico de los empleados, por lo tanto, no correo electrónico enviado"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},Regla de Envío no aplicable para el país {0}
DocType: Item,Foreign Trade Details,Detalles de Comercio Extranjero
@ -1590,7 +1593,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,Grupo Número de rodillos
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry","Para {0}, sólo las cuentas de crédito se pueden vincular con un asiento de débito"
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,Total de todos los pesos de tareas debe ser 1. Por favor ajusta los pesos de todas las tareas del proyecto en consecuencia
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,La nota de entrega {0} no está validada
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,La nota de entrega {0} no está validada
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,El elemento: {0} debe ser un producto sub-contratado
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,BIENES DE CAPITAL
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","La 'regla precios' es seleccionada primero basada en el campo 'Aplicar En' que puede ser un artículo, grupo de artículos o marca."
@ -1615,7 +1618,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,No se puede eliminar este almacén. Existe almacén hijo para este almacén.
DocType: Item,Website Item Groups,Grupos de productos en el sitio web
DocType: Purchase Invoice,Total (Company Currency),Total (Divisa por defecto)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,Número de serie {0} ha sido ingresado mas de una vez
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,Número de serie {0} ha sido ingresado mas de una vez
DocType: Journal Entry,Journal Entry,Asiento contable
DocType: Expense Claim Advance,Unclaimed amount,Cantidad no Reclamada
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} artículos en curso
@ -1711,7 +1714,7 @@ DocType: Email Digest,For Company,Para la empresa
apps/erpnext/erpnext/config/support.py +17,Communication log.,Registro de comunicaciones
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.",Solicitud de Presupuesto está desactivado para acceder desde el portal. Comprobar la configuración del portal.
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,Variable de puntuación de tarjeta de calificación del proveedor
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,Importe de compra
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,Importe de compra
DocType: Sales Invoice,Shipping Address Name,Nombre de dirección de envío
DocType: Material Request,Terms and Conditions Content,Contenido de los términos y condiciones
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,Hubo errores al crear el Programa del Curso
@ -1974,7 +1977,7 @@ DocType: Expense Claim,Total Amount Reimbursed,Monto total reembolsado
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,Esta basado en registros contra este Vehículo. Ver el cronograma debajo para más detalles
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},Contra factura de proveedor {0} con fecha{1}
DocType: Customer,Default Price List,Lista de precios por defecto
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,Movimiento de activo {0} creado
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,Movimiento de activo {0} creado
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,No se puede eliminar el año fiscal {0}. Año fiscal {0} se establece por defecto en la configuración global
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,Ya existe un cliente con el mismo nombre
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,Esto enviará hojas de salario y creará asientos acumulados. ¿Quieres proceder?
@ -1988,6 +1991,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,Precios
DocType: Quotation,Term Details,Detalles de términos y condiciones
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,No se puede inscribir más de {0} estudiantes para este grupo de estudiantes.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),Total (sin impuestos)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,Cuenta de Iniciativa
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} debe ser mayor que 0
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,Stock Disponible
@ -2006,7 +2010,6 @@ DocType: Lab Test,Technician Name,Nombre del Técnico
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,Desvinculación de Pago en la cancelación de la factura
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},Lectura actual del odómetro ingresada debe ser mayor que el cuentakilómetros inicial {0}
DocType: Restaurant Reservation,No Show,No Mostrar
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Establezca Naming Series para {0} a través de Setup&gt; Settings&gt; Naming Series
DocType: Shipping Rule Country,Shipping Rule Country,Regla de envio del país
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,Ausencia y Asistencia
DocType: Maintenance Visit,Partially Completed,Parcialmente completado
@ -2097,7 +2100,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,Instructor de Grupo Estudiantil
DocType: Grant Application,Assessment Mark (Out of 10),Marca de evaluación (de 10)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Móvil del Tutor2
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,Principal
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,Principal
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,Variante
DocType: Naming Series,Set prefix for numbering series on your transactions,Establezca los prefijos de las numeraciones en sus transacciones
DocType: Employee Attendance Tool,Employees HTML,Empleados HTML
@ -2145,7 +2148,7 @@ DocType: Crop,Crop Spacing,Recorte de Espacios
DocType: Course,Course Abbreviation,Abreviatura del Curso
DocType: Student Leave Application,Student Leave Application,Solicitud de Licencia para Estudiante
DocType: Item,Will also apply for variants,También se aplicará para las variantes
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","Activo no se puede cancelar, como ya es {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","Activo no se puede cancelar, como ya es {0}"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},Empleado {0} del medio día del {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},Total de horas de trabajo no deben ser mayores que las horas de trabajo max {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,Encendido
@ -2329,9 +2332,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),Fecha de finalización real (a través de hoja de horas)
DocType: Soil Texture,Soil Type,Tipo de Suelo
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},Monto {0} {1} {2} contra {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,Nuevo Mensaje
,Quotation Trends,Tendencias de Presupuestos
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},El grupo del artículo no se menciona en producto maestro para el elemento {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,La cuenta 'Debitar a' debe ser una cuenta por cobrar
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,La cuenta 'Debitar a' debe ser una cuenta por cobrar
DocType: Shipping Rule,Shipping Amount,Monto de envío
DocType: Supplier Scorecard Period,Period Score,Puntuación del Período
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,Agregar Clientes
@ -2342,7 +2346,7 @@ DocType: Purchase Order,Delivered,Enviado
,Vehicle Expenses,Los gastos del vehículo
DocType: Serial No,Invoice Details,Detalles de la factura
DocType: Grant Application,Show on Website,Mostrar en el Sitio Web
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},Valor esperado después de la vida útil debe ser mayor o igual a {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},Valor esperado después de la vida útil debe ser mayor o igual a {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,Comienza en
DocType: Hub Category,Hub Category,Categoría de Hub
DocType: Purchase Invoice,SEZ,SEZ
@ -2373,7 +2377,7 @@ DocType: Patient,Patient Details,Detalles del Paciente
DocType: Patient,B Positive,B Positivo
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","Fila #{0}: Cantidad debe ser 1, como elemento es un activo fijo. Por favor, use fila separada para cantidad múltiple."
DocType: Leave Block List Allow,Leave Block List Allow,Permitir Lista de Bloqueo de Vacaciones
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,La abreviatura no puede estar en blanco o usar espacios
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,La abreviatura no puede estar en blanco o usar espacios
DocType: Patient Medical Record,Patient Medical Record,Registro Médico del Paciente
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,Grupo a No-Grupo
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,Deportes
@ -2423,6 +2427,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,No se puede establecer una Solicitud de Cotización (RFQ= recibida sin ninguna Cotización
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,Deducción Total
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,Seleccione una cuenta para imprimir en la moneda de la cuenta
,Production Analytics,Análisis de Producción
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,Esto se basa en transacciones contra este Paciente. Vea la cronología a continuación para más detalles
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,Costo actualizado
@ -2477,7 +2482,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,Confi
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,Seleccione la compañía...
DocType: Leave Control Panel,Leave blank if considered for all departments,Deje en blanco si se utilizará para todos los departamentos
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","Tipos de empleo (permanente , contratos, pasante, etc) ."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} es obligatorio para el artículo {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} es obligatorio para el artículo {1}
DocType: Payroll Entry,Fortnightly,Quincenal
DocType: Currency Exchange,From Currency,Desde Moneda
DocType: Vital Signs,Weight (In Kilogram),Peso (en kilogramo)
@ -2553,7 +2558,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),Importe Básico (divisa
DocType: Student,Guardians,Tutores
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,Los precios no se muestran si la lista de precios no se ha establecido
DocType: Stock Entry,Total Incoming Value,Valor total de entradas
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,Débito Para es requerido
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,Débito Para es requerido
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Las Tablas de Tiempos ayudan a mantener la noción del tiempo, el coste y la facturación de actividades realizadas por su equipo"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,Lista de precios para las compras
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,Plantillas de variables de Calificación de Proveedores.
@ -2654,7 +2659,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,Sólo para referencia.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},El Médico {0} no está disponible en {1}
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,Seleccione Lote No
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},No válido {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},No válido {0}: {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Fee Validity,Reference Inv,Factura de Referencia
@ -2691,8 +2696,8 @@ DocType: Fees,Send Payment Request,Enviar Ssolicitud de Pago
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Especificar las operaciones, el costo de operativo y definir un numero único de operación"
DocType: Water Analysis,Origin,Origen
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,Este documento está por encima del límite de {0} {1} para el elemento {4}. ¿Estás haciendo otra {3} contra el mismo {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,Por favor configura recurrente después de guardar
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,Seleccione la cuenta de cambio
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,Por favor configura recurrente después de guardar
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,Seleccione la cuenta de cambio
DocType: Purchase Invoice,Price List Currency,Divisa de la lista de precios
DocType: Naming Series,User must always select,El usuario deberá elegir siempre
DocType: Stock Settings,Allow Negative Stock,Permitir Inventario Negativo
@ -2748,7 +2753,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,Detalles del ca
DocType: Supplier Scorecard,Warn for new Purchase Orders,Avisar para nuevas Órdenes de Compra
DocType: Quality Inspection Reading,Reading 9,Lectura 9
DocType: Supplier,Is Frozen,Se encuentra congelado(a)
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,No se permite seleccionar el almacén de nodos de grupo para operaciones
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,No se permite seleccionar el almacén de nodos de grupo para operaciones
DocType: Buying Settings,Buying Settings,Configuración de compras
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,Lista de materiales (LdM) para el producto terminado
DocType: Upload Attendance,Attendance To Date,Asistencia a la Fecha
@ -2762,6 +2767,7 @@ DocType: Offer Letter,Accepted,Aceptado
DocType: Grant Application,Organization,Organización
DocType: BOM Update Tool,BOM Update Tool,Herramienta de actualización de Lista de Materiales (BOM)
DocType: SG Creation Tool Course,Student Group Name,Nombre del grupo de estudiante
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,Mostrar vista explosionada
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,Creación de Tarifas
apps/erpnext/erpnext/setup/doctype/company/company.js +91,Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone.,"Por favor, 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."
DocType: Room,Room Number,Número de habitación
@ -2772,7 +2778,7 @@ DocType: Journal Entry Account,Payroll Entry,Entrada de Nómina
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,Hacer una plantilla de impuestos
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,Foro de Usuarios
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,'Materias primas' no puede estar en blanco.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","No se pudo actualizar valores, factura contiene los artículos con envío triangulado."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","No se pudo actualizar valores, factura contiene los artículos con envío triangulado."
DocType: Lab Test Sample,Lab Test Sample,Muestra de Prueba de Laboratorio
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,Asiento Contable Rápido
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,No se puede cambiar el precio si existe una Lista de materiales (LdM) en el producto
@ -2843,7 +2849,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,USD
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,Hacer Factura
DocType: Selling Settings,Auto close Opportunity after 15 days,Cerrar Oportunidad automáticamente luego de 15 días
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Las órdenes de compra no están permitidas para {0} debido a una tarjeta de puntuación de {1}.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Las órdenes de compra no están permitidas para {0} debido a una tarjeta de puntuación de {1}.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,Año final
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Cotización / Iniciativa %
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,La fecha de finalización de contrato debe ser mayor que la fecha de ingreso
@ -2935,7 +2941,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90 o más
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,Fila #{0}: Asiento {1} no tiene cuenta {2} o ya compara con otro bono
DocType: Supplier Scorecard Criteria,Criteria Weight,Peso del Criterio
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Proveedor&gt; Tipo de proveedor
DocType: Buying Settings,Default Buying Price List,Lista de precios por defecto
DocType: Payroll Entry,Salary Slip Based on Timesheet,Nomina basada en el Parte de Horas
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,Tipo de Cambio de Compra
@ -3023,7 +3028,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,Listar Oportunidades por Tipo de Industria
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,Ir a Membretes
DocType: Item Supplier,Item Supplier,Proveedor del Producto
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,"Por favor, ingrese el código del producto para obtener el numero de lote"
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,"Por favor, ingrese el código del producto para obtener el numero de lote"
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},"Por favor, seleccione un valor para {0} quotation_to {1}"
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,Todas las direcciones.
DocType: Company,Stock Settings,Configuración de inventarios
@ -3212,6 +3217,7 @@ DocType: Employee Loan,Loan Details,Detalles de préstamo
DocType: Company,Default Inventory Account,Cuenta de Inventario Predeterminada
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,Fila {0}: Cantidad completada debe ser mayor que cero.
DocType: Antibiotic,Antibiotic Name,Nombre del Antibiótico
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Código de artículo&gt; Grupo de artículos&gt; Marca
DocType: Purchase Invoice,Apply Additional Discount On,Aplicar descuento adicional en
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,Seleccione Tipo...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,Un enlace a todas las unidades de tierra en las que crece la cosecha
@ -3405,6 +3411,7 @@ DocType: Guardian Student,Guardian Student,Tutor del Estudiante
DocType: Supplier,Credit Limit,Límite de Crédito
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,Promedio Precio de la Lista de Precios de Venta
DocType: Production Plan Sales Order,Salse Order Date,Fecha de Orden de Venta
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Proveedor&gt; Tipo de proveedor
DocType: Salary Component,Salary Component,Componente Salarial
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,Las entradas de pago {0} estan no-relacionadas
DocType: GL Entry,Voucher No,Comprobante No.
@ -3413,7 +3420,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,Más Popular
DocType: Leave Allocation,Leave Allocation,Asignación de vacaciones
DocType: Payment Request,Recipient Message And Payment Details,Mensaje receptor y formas de pago
DocType: Training Event,Trainer Email,Correo electrónico del entrenador
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,Requisición de materiales {0} creada
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,Requisición de materiales {0} creada
DocType: Restaurant Reservation,No of People,Nro de Personas
DocType: Production Planning Tool,Include sub-contracted raw materials,Incluya materias primas subcontratados
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,Configuración de las plantillas de términos y condiciones.
@ -3477,7 +3484,7 @@ DocType: Landed Cost Item,Receipt Document,Recepción de Documento
DocType: Production Planning Tool,Create Material Requests,Crear Requisición de Materiales
DocType: Employee Education,School/University,Escuela / Universidad.
DocType: Payment Request,Reference Details,Detalles Referencia
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,Valor esperado después de la vida útil debe ser inferior al importe bruto de compra
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,Valor esperado después de la vida útil debe ser inferior al importe bruto de compra
DocType: Sales Invoice Item,Available Qty at Warehouse,Cantidad Disponible en Almacén
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,Importe facturado
DocType: Asset,Double Declining Balance,Doble Disminución de Saldo
@ -3489,7 +3496,7 @@ DocType: Attendance,On Leave,De licencia
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,Obtener Actualizaciones
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: Cuenta {2} no pertenece a la compañía {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,Seleccione al menos un valor de cada uno de los atributos.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,Requisición de materiales {0} cancelada o detenida
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,Requisición de materiales {0} cancelada o detenida
apps/erpnext/erpnext/config/hr.py +310,Leave Management,Gestión de ausencias
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,Agrupar por cuenta
DocType: Sales Order,Fully Delivered,Entregado completamente
@ -3500,14 +3507,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},Monto desembolsado no puede ser mayor que Monto del préstamo {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,Ir a Programas
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},Fila {0} # Cantidad Asignada {1} no puede ser mayor que la Cantidad no Reclamada {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Configure las series de numeración para Asistencia a través de Configuración&gt; Serie de numeración
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},Se requiere el numero de orden de compra para el producto {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,Orden de producción no se ha creado
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','Desde la fecha' debe ser después de 'Hasta Fecha'
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},No se puede cambiar el estado de estudiante {0} está vinculada con la aplicación del estudiante {1}
DocType: Asset,Fully Depreciated,Totalmente depreciado
,Stock Projected Qty,Cantidad de inventario proyectado
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},Cliente {0} no pertenece al proyecto {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},Cliente {0} no pertenece al proyecto {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,Asistencia Marcada HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers","Las citas son propuestas, las ofertas que ha enviado a sus clientes"
DocType: Sales Order,Customer's Purchase Order,Ordenes de compra de clientes
@ -3591,7 +3597,7 @@ DocType: Salary Slip,Hour Rate,Salario por hora
DocType: Stock Settings,Item Naming By,Ordenar productos por
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},Otra entrada de Cierre de Período {0} se ha hecho después de {1}
DocType: Production Order,Material Transferred for Manufacturing,Material Transferido para la Producción
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,La cuenta {0} no existe
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,La cuenta {0} no existe
DocType: Project,Project Type,Tipo de proyecto
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,Existe Tarea Hija para esta Tarea. No puedes eliminar esta Tarea.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,Es obligatoria la meta fe facturación.
@ -3693,11 +3699,11 @@ DocType: C-Form,I,Yo
DocType: Company,Asset Depreciation Cost Center,Centro de la amortización del coste de los activos
DocType: Sales Order Item,Sales Order Date,Fecha de las órdenes de venta
DocType: Sales Invoice Item,Delivered Qty,Cantidad entregada
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,Total Excl. Impuesto
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","Si se selecciona, todos los hijos de cada elemento de la producción se incluirán en las solicitudes de materiales."
DocType: Assessment Plan,Assessment Plan,Plan de Evaluación
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,Se crea el Cliente {0}.
DocType: Stock Settings,Limit Percent,límite de porcentaje
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Configure el Sistema de nombres de instructor en Educación&gt; Configuración educativa
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,Actualmente no hay stock disponible en ningún almacén
,Payment Period Based On Invoice Date,Periodos de pago según facturas
DocType: Sample Collection,No. of print,Nro de impresión
@ -3713,12 +3719,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),Deudores ({0})
DocType: Pricing Rule,Margin,Margen
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,Nuevos clientes
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,Beneficio Bruto %
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,Beneficio Bruto %
DocType: Appraisal Goal,Weightage (%),Porcentaje (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,Cambiar el Perfil de POS
DocType: Bank Reconciliation Detail,Clearance Date,Fecha de liquidación
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,Informe de evaluación
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,Importe Bruto de Compra es obligatorio
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,Importe Bruto de Compra es obligatorio
DocType: Lead,Address Desc,Dirección
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,Parte es obligatoria
DocType: Journal Entry,JV-,JV-
@ -3750,7 +3756,6 @@ DocType: Account,Accumulated Depreciation,Depreciación acumulada
DocType: Supplier Scorecard Scoring Standing,Standing Name,Nombre en uso
DocType: Stock Entry,Customer or Supplier Details,Detalle de cliente o proveedor
DocType: Employee Loan Application,Required by Date,Requerido por Fecha
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),Saldo de cierre (Dr - Cr)
DocType: Lead,Lead Owner,Propietario de la iniciativa
DocType: Bin,Requested Quantity,Cantidad requerida
DocType: Patient,Marital Status,Estado Civil
@ -3764,7 +3769,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,Multiples Variantes
DocType: Sales Invoice,Against Income Account,Contra cuenta de ingresos
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% Entregado
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,El producto {0}: Con la cantidad ordenada {1} no puede ser menor que el pedido mínimo {2} (definido en el producto).
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,El producto {0}: Con la cantidad ordenada {1} no puede ser menor que el pedido mínimo {2} (definido en el producto).
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,Distribución mensual porcentual
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,Por favor inicie sesión como otro usuario.
DocType: Territory,Territory Targets,Metas de territorios
@ -3863,7 +3868,7 @@ DocType: Program Enrollment,School House,Casa Escolar
DocType: Serial No,Out of AMC,Fuera de CMA (Contrato de mantenimiento anual)
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,Número de Depreciaciones Reservadas no puede ser mayor que el número total de Depreciaciones
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,Crear visita de mantenimiento
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,"Por favor, póngase en contacto con el usuario gerente de ventas {0}"
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,"Por favor, póngase en contacto con el usuario gerente de ventas {0}"
DocType: Company,Default Cash Account,Cuenta de efectivo por defecto
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,Configuración general del sistema.
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,Basado en la asistencia de este estudiante
@ -4013,7 +4018,6 @@ DocType: Delivery Note Item,From Warehouse,De Almacén
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,Sin empleados por los criterios mencionados
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,No hay artículos con la lista de materiales para la fabricación de
DocType: Restaurant,Default Customer,Cliente predeterminado
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Configure el Sistema de nombres de empleados en Recursos humanos&gt; Configuración de recursos humanos
DocType: Assessment Plan,Supervisor Name,Nombre del supervisor
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,No confirme si la cita se crea para el mismo día
DocType: Program Enrollment Course,Program Enrollment Course,Inscripción al Programa Curso
@ -4131,7 +4135,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,Descripción del Sitio Web
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,Cambio en el Patrimonio Neto
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,El Más Nuevo
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,Por favor primero cancele la Factura de Compra {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,Por favor primero cancele la Factura de Compra {0}
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","Dirección de correo electrónico debe ser única, ya existe para {0}"
DocType: Serial No,AMC Expiry Date,Fecha de caducidad de CMA (Contrato de Mantenimiento Anual)
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,Recibo
@ -4148,7 +4152,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,¡Aún no hay
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,Estado de Flujos de Efectivo
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},Monto del préstamo no puede exceder cantidad máxima del préstamo de {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,Licencia
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},"Por favor, elimine esta factura {0} de C-Form {1}"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},"Por favor, elimine esta factura {0} de C-Form {1}"
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,Por favor seleccione 'trasladar' si usted desea incluir los saldos del año fiscal anterior a este año
DocType: GL Entry,Against Voucher Type,Tipo de comprobante
DocType: Physician,Phone (R),Teléfono (R)
@ -4160,7 +4164,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,B Negativo
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,El Estado de Mantenimiento debe ser Cancelado o Completado para Enviar
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},La cuenta {0} no pertenece a la compañía {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,Los números de serie en la fila {0} no coinciden con Nota de entrega
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,Los números de serie en la fila {0} no coinciden con Nota de entrega
DocType: Student,Guardian Details,Detalles del Tutor
DocType: C-Form,C-Form,C - Forma
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,Marcar Asistencia para múltiples empleados
@ -4202,7 +4206,7 @@ DocType: Opening Invoice Creation Tool,Sales,Ventas
DocType: Stock Entry Detail,Basic Amount,Importe Base
DocType: Training Event,Exam,Examen
DocType: Complaint,Complaint,Queja
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},El almacén es requerido para el stock del producto {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},El almacén es requerido para el stock del producto {0}
DocType: Leave Allocation,Unused leaves,Ausencias no utilizadas
DocType: Patient,Alcohol Past Use,Uso Pasado de Alcohol
DocType: Fertilizer Content,Fertilizer Content,Contenido de Fertilizante
@ -4326,6 +4330,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,Fórmula
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,Serial #.
DocType: Lab Test Template,Lab Test Template,Plantilla de Prueba de Laboratorio
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,Cuenta de ventas
DocType: Purchase Invoice Item,Total Weight,Peso Total
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,Comisiones sobre ventas
DocType: Offer Letter Term,Value / Description,Valor / Descripción
@ -4482,7 +4487,7 @@ Updated via 'Time Log'",en minutos actualizado a través de bitácora (gestión
DocType: Customer,From Lead,Desde Iniciativa
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,Las órdenes publicadas para la producción.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,Seleccione el año fiscal...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,Se requiere un perfil de TPV para crear entradas en el punto de venta
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,Se requiere un perfil de TPV para crear entradas en el punto de venta
DocType: Program Enrollment Tool,Enroll Students,Inscribir Estudiantes
DocType: Lab Test,Approved Date,Fecha Aprobada
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,Venta estándar
@ -4558,7 +4563,7 @@ DocType: Employee,Held On,Retenida en
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,Elemento de producción
,Employee Information,Información del empleado
DocType: Stock Entry Detail,Additional Cost,Costo adicional
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","No se puede filtrar en función al 'No. de comprobante', si esta agrupado por el nombre"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","No se puede filtrar en función al 'No. de comprobante', si esta agrupado por el nombre"
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,Crear oferta de venta de un proveedor
DocType: Quality Inspection,Incoming,Entrante
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,Se crean plantillas de impuestos predeterminadas para ventas y compras.
@ -4575,7 +4580,7 @@ DocType: Batch,Batch ID,ID de Lote
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},Nota: {0}
,Delivery Note Trends,Evolución de las notas de entrega
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,Resumen de la semana.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,En Cantidad de Stock
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,En Cantidad de Stock
DocType: Delivery Trip,Calculate Estimated Arrival Times,Calcule los Tiempos Estimados de Llegada
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,Cuenta: {0} sólo puede ser actualizada mediante transacciones de inventario
DocType: Student Group Creation Tool,Get Courses,Obtener Cursos
@ -4591,7 +4596,7 @@ DocType: Purchase Order,To Bill,Por facturar
DocType: Material Request,% Ordered,% Ordenado
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.","Para los grupos de estudiantes basados en cursos, el curso será validado para cada estudiante de los cursos inscritos en la inscripción al programa."
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,Trabajo por obra
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,Precio de compra promedio
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,Precio de compra promedio
DocType: Task,Actual Time (in Hours),Tiempo real (en horas)
DocType: Employee,History In Company,Historia en la Compañia
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},Nuevo mensaje de {sender}
@ -4639,7 +4644,7 @@ DocType: Asset Repair,Asset Repair,Reparación de Activos
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},Fila {0}: Divisa de la lista de materiales # {1} debe ser igual a la moneda seleccionada {2}
DocType: Journal Entry Account,Exchange Rate,Tipo de cambio
DocType: Patient,Additional information regarding the patient,Información adicional sobre el paciente
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,La órden de venta {0} no esta validada
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,La órden de venta {0} no esta validada
DocType: Homepage,Tag Line,tag Line
DocType: Fee Component,Fee Component,Componente de Couta
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,Gestión de Flota
@ -4851,7 +4856,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,Detalle del Resultado
DocType: Employee Education,Employee Education,Educación del empleado
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,Se encontró grupo de artículos duplicado en la table de grupo de artículos
DocType: Land Unit,Parent Land Unit,Unidad de Tierra Padre
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,Se necesita a buscar Detalles del artículo.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,Se necesita a buscar Detalles del artículo.
DocType: Fertilizer,Fertilizer Name,Nombre de Fertilizante
DocType: Salary Slip,Net Pay,Pago Neto
DocType: Account,Account,Cuenta
@ -4930,7 +4935,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),Cantidad real (en orig
DocType: Item Customer Detail,Ref Code,Código de referencia
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,Se requiere grupo de clientes en el Perfil de Punto de Venta
apps/erpnext/erpnext/config/hr.py +12,Employee records.,Registros de los empleados.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,"Por favor, establece la Siguiente Fecha de Depreciación"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,"Por favor, establece la Siguiente Fecha de Depreciación"
DocType: HR Settings,Payroll Settings,Configuración de nómina
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,Coincidir las facturas y pagos no vinculados.
DocType: POS Settings,POS Settings,Configuración de POS
@ -5097,7 +5102,7 @@ DocType: Item,Customer Code,Código de Cliente
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},Recordatorio de cumpleaños para {0}
DocType: Asset Maintenance Task,Last Completion Date,Última Fecha de Finalización
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,Días desde la última orden
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,La cuenta de débito debe pertenecer a las cuentas de balance
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,La cuenta de débito debe pertenecer a las cuentas de balance
DocType: Buying Settings,Naming Series,Secuencias e identificadores
DocType: Leave Block List,Leave Block List Name,Nombre de la Lista de Bloqueo de Vacaciones
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,La fecha de comienzo del seguro debe ser menos que la fecha de fin del seguro
@ -5224,6 +5229,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,Obtener registros de pago
DocType: Quotation Item,Against Docname,Contra Docname
DocType: SMS Center,All Employee (Active),Todos los Empleados (Activos)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Cliente&gt; Grupo de clientes&gt; Territorio
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,Ver Ahora
DocType: BOM,Raw Material Cost,Costo de materia prima
DocType: Item Reorder,Re-Order Level,Nivel mínimo de stock.
@ -5322,7 +5328,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,Número de plazas
DocType: Issue,ISS-,ISS
DocType: Lab Test Groups,Lab Test Groups,Grupos de Pruebas de Laboratorio
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Cliente&gt; Grupo de clientes&gt; Territorio
DocType: Project,Total Expense Claim (via Expense Claims),Total reembolso (Vía reembolsos de gastos)
DocType: GST Settings,GST Summary,Resumen de GST
DocType: Assessment Result,Total Score,Puntaje Total
@ -5335,7 +5340,7 @@ DocType: Batch,Source Document Type,Tipo de documento de origen
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,Se crearon los siguientes horarios del curso
DocType: Journal Entry,Total Debit,Débito Total
DocType: Manufacturing Settings,Default Finished Goods Warehouse,Almacén predeterminado de productos terminados
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,Vendedores
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,Vendedores
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,Presupuesto y Centro de Costo
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,No se permiten múltiple métodos de pago predeterminados
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,para el/la
@ -5508,7 +5513,7 @@ DocType: Program,Program Name,Nombre del programa
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Considerar impuestos o cargos por
DocType: Driver,Driving License Category,Categoría de Licencia de Conducir
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,La cantidad real es obligatoria
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{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.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{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.
DocType: Asset Maintenance Team,Asset Maintenance Team,Equipo de mantenimiento de activos
DocType: Employee Loan,Loan Type,Tipo de préstamo
DocType: Scheduling Tool,Scheduling Tool,Herramienta de programación

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,Lab Prescription
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,Sorteeri hinnaga
,Delay Days,Viivituspäevad
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,Teenuse kulu
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},Seerianumber: {0} on juba viidatud müügiarve: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},Seerianumber: {0} on juba viidatud müügiarve: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,Arve
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,Tehke säilitusvaru kanne
DocType: Purchase Invoice Item,Item Weight Details,Artikli kaal detailid
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,Parent Detail docname
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","Viide: {0}, Kood: {1} ja kliendi: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,Kg
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,Avamine tööd.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},BOM-i ei ole määratud rühma {1} jaoks alltöövõtukoha jaoks {0}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},BOM-i ei ole määratud rühma {1} jaoks alltöövõtukoha jaoks {0}
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} Tulemus esitatakse
DocType: Item Attribute,Increment,Juurdekasv
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,Ajavahemik
@ -150,7 +150,7 @@ DocType: Patient,Married,Abielus
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},Ei ole lubatud {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,Võta esemed
DocType: Price List,Price Not UOM Dependant,Hind ei sõltu UOMist
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},Stock ei saa uuendada vastu saateleht {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},Stock ei saa uuendada vastu saateleht {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},Toote {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,Nr loetletud
DocType: Asset Repair,Error Description,Viga Kirjeldus
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,Sobita
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,Toiduained
DocType: Quality Inspection Reading,Reading 1,Lugemine 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,Pensionifondid
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,Järgmine kulum kuupäev ei saa olla enne Ostukuupäevale
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,Järgmine kulum kuupäev ei saa olla enne Ostukuupäevale
DocType: Crop,Perennial,Mitmeaastane
DocType: Consultation,Consultation Date,Konsulteerimise kuupäev
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,ERPNexti kasutajate toodete loetelu ja avastus
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,Kirjutage Off Cost Center
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""",nt &quot;algkool&quot; või &quot;Ülikool&quot;
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,Stock aruanded
DocType: Warehouse,Warehouse Detail,Ladu Detail
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},Krediidilimiit on ületanud kliendi {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},Krediidilimiit on ületanud kliendi {0} {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,"Term lõppkuupäev ei saa olla hilisem kui aasta lõpu kuupäev õppeaasta, mille mõiste on seotud (Academic Year {}). Palun paranda kuupäev ja proovi uuesti."
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","&quot;Kas Põhivarade&quot; ei saa märkimata, kui Asset Olemas vastu kirje"
DocType: Delivery Trip,Departure Time,Väljumisaeg
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,Student Logi
DocType: Quality Inspection,Get Specification Details,Saada tehnilisi üksikasju
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,Tarnijate tabeli näidised.
DocType: Lead,Interested,Huvitatud
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,Avaus
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,Avaus
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},Alates {0} kuni {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,Maksude seadistamine ebaõnnestus
DocType: Item,Copy From Item Group,Kopeeri Punkt Group
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,Leevendab kuupäev peab olema suurem kui Liitumis
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,Lehed aastas
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,"Row {0}: Palun vaadake &quot;Kas Advance&quot; vastu Konto {1}, kui see on ette sisenemist."
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},Ladu {0} ei kuulu firma {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},Ladu {0} ei kuulu firma {1}
DocType: Email Digest,Profit & Loss,Kasumiaruanne
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,Liiter
DocType: Task,Total Costing Amount (via Time Sheet),Kokku kuluarvestus summa (via Time Sheet)
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,Hinda ja summa
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,See põhineb tehingutel selle äriühingu vastu. Üksikasjalikuma teabe saamiseks lugege allpool toodud ajakava
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,"Soovin e-postiga loomiseks, automaatne Material taotlus"
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,Vastupidav
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Konsultatsioon
DocType: Journal Entry,Multi Currency,Multi Valuuta
DocType: Opening Invoice Creation Tool,Invoice Type,Arve Type
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,Toimetaja märkus
@ -528,7 +529,6 @@ DocType: Email Digest,Credit Balance,Kreeditsaldo
DocType: Employee,Widowed,Lesk
DocType: Request for Quotation,Request for Quotation,Hinnapäring
DocType: Healthcare Settings,Require Lab Test Approval,Nõuda laborikatse heakskiitmist
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Tootekood&gt; Elemendi grupp&gt; Bränd
DocType: Salary Slip Timesheet,Working Hours,Töötunnid
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,Kokku tasumata
DocType: Naming Series,Change the starting / current sequence number of an existing series.,Muuda algus / praegune järjenumber olemasoleva seeria.
@ -557,7 +557,7 @@ DocType: Subscription,Yearly,Iga-aastane
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,Palun sisestage Cost Center
DocType: Drug Prescription,Dosage,Annus
DocType: Journal Entry Account,Sales Order,Müügitellimuse
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,Keskm. Müügikurss
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,Keskm. Müügikurss
DocType: Assessment Plan,Examiner Name,Kontrollija nimi
DocType: Lab Test Template,No Result,No Tulemus
DocType: Purchase Invoice Item,Quantity and Rate,Kogus ja hind
@ -605,6 +605,7 @@ DocType: Employee,Health Concerns,Terviseprobleemid
DocType: Payroll Entry,Select Payroll Period,Vali palgaarvestuse Periood
DocType: Purchase Invoice,Unpaid,Palgata
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,Reserveeritud müük
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Palun seadke töötaja nimesüsteem inimressurss&gt; HR-seaded
DocType: Packing Slip,From Package No.,Siit Package No.
DocType: Item Attribute,To Range,Vahemik
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,Väärtpaberitesse ja hoiustesse
@ -629,11 +630,11 @@ DocType: Pricing Rule,Valid Upto,Kehtib Upto
DocType: Training Event,Workshop,töökoda
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,Hoiata ostutellimusi
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,Nimekiri paar oma klientidele. Nad võivad olla organisatsioonid ja üksikisikud.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,Aitab Parts ehitada
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,Aitab Parts ehitada
DocType: POS Profile User,POS Profile User,POS profiili kasutaja
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,Otsene tulu
DocType: Patient Appointment,Date TIme,Kuupäev Kellaaeg
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","Ei filtreerimiseks konto, kui rühmitatud konto"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","Ei filtreerimiseks konto, kui rühmitatud konto"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,Haldusspetsialist
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,Ettevõtte ja maksude asutamine
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,Palun valige Course
@ -643,7 +644,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,Erinevus konto
DocType: Purchase Invoice,Supplier GSTIN,Pakkuja GSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,Ei saa sulgeda ülesanne oma sõltuvad ülesande {0} ei ole suletud.
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,"Palun sisestage Warehouse, mille materjal taotlus tõstetakse"
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,"Palun sisestage Warehouse, mille materjal taotlus tõstetakse"
DocType: Production Order,Additional Operating Cost,Täiendav töökulud
DocType: Lab Test Template,Lab Routine,Lab Routine
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,Kosmeetika
@ -811,7 +812,7 @@ DocType: Employee,Passport Number,Passi number
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Seos Guardian2
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,Juhataja
DocType: Payment Entry,Payment From / To,Makse edasi / tagasi
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Uus krediidilimiit on alla praeguse tasumata summa kliendi jaoks. Krediidilimiit peab olema atleast {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Uus krediidilimiit on alla praeguse tasumata summa kliendi jaoks. Krediidilimiit peab olema atleast {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},Palun määrake konto Warehouse&#39;i {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,"""Tuleneb"" ja ""Grupeeri alusel"" ei saa olla sama"
DocType: Sales Person,Sales Person Targets,Sales Person Eesmärgid
@ -822,7 +823,7 @@ DocType: Lab Test Template,Compound,Ühend
DocType: Student Batch Name,Batch Name,partii Nimi
DocType: Fee Validity,Max number of visit,Maksimaalne külastuse arv
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,Töögraafik on loodud:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},Palun määra vaikimisi Raha või pangakonto makseviis {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},Palun määra vaikimisi Raha või pangakonto makseviis {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,registreerima
DocType: GST Settings,GST Settings,GST Seaded
DocType: Selling Settings,Customer Naming By,Kliendi nimetamine By
@ -946,7 +947,7 @@ DocType: Delivery Note,Customer's Purchase Order No,Kliendi ostutellimuse pole
DocType: Budget,Budget Against,Eelarve vastu
DocType: Employee,Cell Number,Mobiilinumber
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,"Antud kriteeriumide järgi töötaja pole. Kontrollige, kas palgafondid pole veel loodud."
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,Auto Material Taotlused Loodud
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,Auto Material Taotlused Loodud
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,Kaotsi läinud
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,Sa ei saa sisestada praegune voucher in &quot;Against päevikusissekanne veerus
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,Reserveeritud tootmine
@ -954,7 +955,7 @@ DocType: Soil Texture,Sand,Liiv
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,Energia
DocType: Opportunity,Opportunity From,Opportunity From
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,Kuupalga avalduse.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Rida {0}: {1} punkti {2} jaoks nõutavad seerianumbrid. Te olete esitanud {3}.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Rida {0}: {1} punkti {2} jaoks nõutavad seerianumbrid. Te olete esitanud {3}.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,Valige tabel
DocType: BOM,Website Specifications,Koduleht erisused
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} on kehtetu e-posti aadress &quot;Saajad&quot;
@ -1023,7 +1024,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,Tsiteerimine soovitud
DocType: Vital Signs,Heart Rate / Pulse,Südame löögisageduse / impulsi
DocType: Company,Default Bank Account,Vaikimisi Bank Account
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","Filtreerida põhineb Party, Party Tüüp esimene"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","Filtreerida põhineb Party, Party Tüüp esimene"
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},"Värskenda Stock &quot;ei saa kontrollida, sest punkte ei andnud kaudu {0}"
DocType: Vehicle,Acquisition Date,omandamise kuupäevast
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,Nos
@ -1047,7 +1048,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),Laadige üles oma kirjapead (hoia see veebipõhine nagu 900 pikslit 100 piksliga)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: Konto {2} ei saa olla Group
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,Punkt Row {idx}: {doctype} {DOCNAME} ei eksisteeri eespool {doctype} &quot;tabelis
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,Töögraafik {0} on juba lõpetatud või tühistatud
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,Töögraafik {0} on juba lõpetatud või tühistatud
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,ei ülesanded
DocType: Item Variant Settings,Copy Fields to Variant,Kopeerige väliid variandile
DocType: Asset,Opening Accumulated Depreciation,Avamine akumuleeritud kulum
@ -1159,9 +1160,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,Plan materjali sõlmed
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,Müük Partnerid ja territoorium
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,Bom {0} peab olema aktiivne
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),Sulgemine (avamine + kokku)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),Sulgemine (avamine + kokku)
DocType: Journal Entry,Depreciation Entry,Põhivara Entry
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Palun valige dokumendi tüüp esimene
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,Prindi Konto valuutas
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Tühista Material Külastusi {0} enne tühistades selle Hooldus Külasta
DocType: Crop Cycle,ISO 8016 standard,ISO 8016 standard
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},Serial No {0} ei kuulu Punkt {1}
@ -1187,7 +1189,7 @@ DocType: Purchase Receipt,Range,Range
DocType: Supplier,Default Payable Accounts,Vaikimisi on tasulised kontod
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,Töötaja {0} ei ole aktiivne või ei ole olemas
DocType: Fee Structure,Components,komponendid
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},Palun sisesta Põhivarakategoori punktis {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},Palun sisesta Põhivarakategoori punktis {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,Punkt variandid {0} uuendatud
DocType: Quality Inspection Reading,Reading 6,Lugemine 6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1239,6 +1241,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,firma nimi
DocType: SMS Center,Total Message(s),Kokku Sõnum (s)
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,Vali toode for Transfer
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Palun määrake seerianumbrite nime seeria {0} abil häälestus&gt; Seaded&gt; nime seeria
DocType: Purchase Invoice,Additional Discount Percentage,Täiendav allahindlusprotsendi
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,Vaata nimekirja kõigi abiga videod
DocType: Agriculture Analysis Criteria,Soil Texture,Mulla tekstuur
@ -1266,7 +1269,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,Bom Koduleht toode
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,Laadi üles oma kirjas pea ja logo. (seda saab muuta hiljem).
DocType: Timesheet Detail,Bill,arve
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,Järgmine kulum kuupäev on sisestatud viimase kuupäeva
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,Järgmine kulum kuupäev on sisestatud viimase kuupäeva
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,Valge
DocType: SMS Center,All Lead (Open),Kõik Plii (Open)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),Rida {0}: Kogus ole saadaval {4} laos {1} postitama aeg kanne ({2} {3})
@ -1282,7 +1285,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,Järgmine Kontakt kuupäev
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,Avamine Kogus
DocType: Healthcare Settings,Appointment Reminder,Kohtumise meeldetuletus
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,Palun sisesta konto muutuste summa
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,Palun sisesta konto muutuste summa
DocType: Program Enrollment Tool Student,Student Batch Name,Student Partii Nimi
DocType: Consultation,Doctor,Arst
DocType: Holiday List,Holiday List Name,Holiday nimekiri nimi
@ -1298,6 +1301,7 @@ DocType: Patient,Patient Relation,Patsiendi suhe
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,Jäta jaotamine Tool
DocType: Item,Hub Category to Publish,Keskuse kategooria avaldamiseks
DocType: Leave Block List,Leave Block List Dates,Jäta Block loetelu kuupäevad
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Palun seadistage külastuse numbrite seeria seaded&gt; nummering seeria abil
DocType: Sales Invoice,Billing Address GSTIN,Arveldusaadress GSTIN
DocType: Assessment Plan,Evaluate,Hinnake
DocType: Workstation,Net Hour Rate,Net Hour Rate
@ -1331,7 +1335,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,Ostutšekk toode
DocType: Purchase Receipt,PREC-RET-,PREC-RET-
DocType: POS Profile,Sales Invoice Payment,Müügiarve tasumine
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,Reserveeritud Warehouse Sales Order / valmistoodang Warehouse
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,Müügi summa
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,Müügi summa
DocType: Repayment Schedule,Interest Amount,Intressisummat
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,Olete kulul Approver selle kirje. Palun uuendage &quot;Status&quot; ja Save
DocType: Serial No,Creation Document No,Loomise dokument nr
@ -1422,7 +1426,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,Avamine Raamatupidamine Balance
,GST Sales Register,GST Sales Registreeri
DocType: Sales Invoice Advance,Sales Invoice Advance,Müügiarve Advance
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,Midagi nõuda
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,Midagi nõuda
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,Valige oma domeenid
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},Teine Eelarve rekord &quot;{0} &#39;on juba olemas vastu {1} {2}&quot; eelarveaastal {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,Valdkonnad kopeeritakse ainult loomise ajal.
@ -1432,11 +1436,11 @@ DocType: Cheque Print Template,Payer Settings,maksja seaded
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","See on lisatud Kood variandi. Näiteks, kui teie lühend on &quot;SM&quot;, ning objekti kood on &quot;T-särk&quot;, kirje kood variant on &quot;T-särk SM&quot;"
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,Netopalk (sõnadega) ilmuvad nähtavale kui salvestate palgatõend.
DocType: Purchase Invoice,Is Return,Kas Tagasi
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,Ettevaatust
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,Ettevaatust
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,Tagasi / võlateate
DocType: Price List Country,Price List Country,Hinnakiri Riik
DocType: Item,UOMs,UOMs
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} kehtiv serial-numbrid Punkt {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} kehtiv serial-numbrid Punkt {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Kood ei saa muuta Serial No.
DocType: Purchase Invoice Item,UOM Conversion Factor,UOM Conversion Factor
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,Palun sisesta Kood saada Partii number
@ -1540,7 +1544,7 @@ DocType: Journal Entry,Get Outstanding Invoices,Võta Tasumata arved
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,Sales Order {0} ei ole kehtiv
DocType: Supplier Scorecard,Warn for new Request for Quotations,Hoiata uue tsitaadi taotlemise eest
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,Ostutellimuste aidata teil planeerida ja jälgida oma ostud
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","Vabandame, ettevõtted ei saa liita"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","Vabandame, ettevõtted ei saa liita"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,Lab katsestavad retseptid
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",Kogu Issue / Transfer koguse {0} Material taotlus {1} \ saa olla suurem kui nõutud koguse {2} jaoks Punkt {3}
@ -1578,7 +1582,6 @@ DocType: Vehicle,Fuel UOM,Kütus UOM
DocType: Warehouse,Warehouse Contact Info,Ladu Kontakt
DocType: Payment Entry,Write Off Difference Amount,Kirjutage Off erinevuse koguse
DocType: Volunteer,Volunteer Name,Vabatahtlike nimi
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Palun seadke õpetaja nime sisestamine haridusse&gt; Hariduseseaded
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0}: Töötaja e-posti ei leitud, seega e-posti ei saadeta"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},Saatmise reegel ei kehti riigile {0}
DocType: Item,Foreign Trade Details,Väliskaubanduse detailid
@ -1590,7 +1593,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,Group Roll arv
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry","Sest {0}, ainult krediitkaardi kontod võivad olla seotud teise vastu deebetkanne"
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,Kokku kõigi ülesanne kaalu peaks 1. Palun reguleerida kaalu kõikide Project ülesandeid vastavalt
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,Toimetaja märkus {0} ei ole esitatud
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,Toimetaja märkus {0} ei ole esitatud
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,Punkt {0} peab olema allhanked toode
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,Capital seadmed
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Hinnakujundus Reegel on esimene valitud põhineb &quot;Rakenda On väljale, mis võib olla Punkt punkt Group või kaubamärgile."
@ -1615,7 +1618,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,Lapse ladu olemas selle lattu. Sa ei saa kustutada selle lattu.
DocType: Item,Website Item Groups,Koduleht Punkt Groups
DocType: Purchase Invoice,Total (Company Currency),Kokku (firma Valuuta)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,Serial number {0} sisestatud rohkem kui üks kord
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,Serial number {0} sisestatud rohkem kui üks kord
DocType: Journal Entry,Journal Entry,Päevikusissekanne
DocType: Expense Claim Advance,Unclaimed amount,Taotlematu summa
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} objekte pooleli
@ -1711,7 +1714,7 @@ DocType: Email Digest,For Company,Sest Company
apps/erpnext/erpnext/config/support.py +17,Communication log.,Side log.
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.","Hinnapäring on blokeeritud, et ligipääs portaali, rohkem kontrolli portaali seaded."
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,Tarnijate skoorikaardi skooride muutuja
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,Ostmine summa
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,Ostmine summa
DocType: Sales Invoice,Shipping Address Name,Kohaletoimetamine Aadress Nimi
DocType: Material Request,Terms and Conditions Content,Tingimused sisu
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,Kurssiplaani loomine tekitas vigu
@ -1973,7 +1976,7 @@ DocType: Expense Claim,Total Amount Reimbursed,Hüvitatud kogusummast
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,See põhineb palke vastu Vehicle. Vaata ajakava allpool lähemalt
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},Vastu Tarnija Arve {0} dateeritud {1}
DocType: Customer,Default Price List,Vaikimisi hinnakiri
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,Asset Liikumine rekord {0} loodud
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,Asset Liikumine rekord {0} loodud
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,Sa ei saa kustutada eelarveaastal {0}. Eelarveaastal {0} on määratud vaikimisi Global Settings
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,Sama nimega klient on juba olemas
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,See esitab Palkade loendused ja loob kogunenud ajakirja kande. Kas soovite jätkata?
@ -1987,6 +1990,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,hinnapoliitika
DocType: Quotation,Term Details,Term Details
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,Ei saa registreeruda rohkem kui {0} õpilasi tudeng rühm.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),Kokku (maksudeta)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,Lead Krahv
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} peab olema suurem kui 0
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,Varu saadaval
@ -2005,7 +2009,6 @@ DocType: Lab Test,Technician Name,Tehniku nimi
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,Lingi eemaldada Makse tühistamine Arve
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},Praegune Läbisõit sisestatud peaks olema suurem kui algne Sõiduki odomeetri {0}
DocType: Restaurant Reservation,No Show,Ei näita
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Palun määrake seerianumbrite nime seeria {0} abil häälestus&gt; Seaded&gt; nime seeria
DocType: Shipping Rule Country,Shipping Rule Country,Kohaletoimetamine Reegel Riik
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,Jätke ja osavõtt
DocType: Maintenance Visit,Partially Completed,Osaliselt täidetud
@ -2096,7 +2099,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,Student Group juhendaja
DocType: Grant Application,Assessment Mark (Out of 10),Hindamismärk (10-st)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 Mobile nr
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,Main
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,Main
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,Variant
DocType: Naming Series,Set prefix for numbering series on your transactions,Määra eesliide numeratsiooni seeria oma tehingute
DocType: Employee Attendance Tool,Employees HTML,Töötajad HTML
@ -2144,7 +2147,7 @@ DocType: Crop,Crop Spacing,Kärpide vahemaa
DocType: Course,Course Abbreviation,muidugi lühend
DocType: Student Leave Application,Student Leave Application,Student Jäta ostusoov
DocType: Item,Will also apply for variants,Kehtib ka variandid
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","Vara ei saa tühistada, sest see on juba {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","Vara ei saa tühistada, sest see on juba {0}"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},Töötaja {0} on Half päeval {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},Kokku tööaeg ei tohi olla suurem kui max tööaeg {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,edasi
@ -2328,9 +2331,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),Tegelik End Date (via Time Sheet)
DocType: Soil Texture,Soil Type,Mullatüüp
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},Summa {0} {1} vastu {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,Uus sõnum
,Quotation Trends,Tsitaat Trends
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},Punkt Group mainimata punktis kapteni kirje {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,Kanne konto peab olema võlgnevus konto
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,Kanne konto peab olema võlgnevus konto
DocType: Shipping Rule,Shipping Amount,Kohaletoimetamine summa
DocType: Supplier Scorecard Period,Period Score,Perioodi skoor
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,Lisa Kliendid
@ -2341,7 +2345,7 @@ DocType: Purchase Order,Delivered,Tarnitakse
,Vehicle Expenses,Sõidukite kulud
DocType: Serial No,Invoice Details,arve andmed
DocType: Grant Application,Show on Website,Näita veebisaidil
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},Oodatud väärtus pärast kasuliku eluea peab olema suurem või võrdne {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},Oodatud väärtus pärast kasuliku eluea peab olema suurem või võrdne {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,Alusta uuesti
DocType: Hub Category,Hub Category,Rummu kategooria
DocType: Purchase Invoice,SEZ,SEZ
@ -2372,7 +2376,7 @@ DocType: Patient,Patient Details,Patsiendi üksikasjad
DocType: Patient,B Positive,B Positiivne
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","Rida # {0}: Kogus peab olema 1, kui objekt on põhivarana. Palun kasutage eraldi rida mitu tk."
DocType: Leave Block List Allow,Leave Block List Allow,Jäta Block loetelu Laske
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,Lühend ei saa olla tühi või ruumi
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,Lühend ei saa olla tühi või ruumi
DocType: Patient Medical Record,Patient Medical Record,Patsiendi meditsiiniline aruanne
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,Grupi Non-Group
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,Spordi-
@ -2422,6 +2426,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,Saadud RFQ-d ei saa määrata tsiteerimata
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,Kokku mahaarvamine
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,Konto valuuta printimiseks valige konto
,Production Analytics,tootmise Analytics
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,See põhineb tehingutel selle patsiendi vastu. Täpsema teabe saamiseks vt allpool toodud ajakava
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,Kulude Uuendatud
@ -2476,7 +2481,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,Üksu
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,Valige ettevõtte ...
DocType: Leave Control Panel,Leave blank if considered for all departments,"Jäta tühjaks, kui arvestada kõik osakonnad"
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","Tüübid tööhõive (püsiv, leping, intern jne)."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} on kohustuslik Punkt {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} on kohustuslik Punkt {1}
DocType: Payroll Entry,Fortnightly,iga kahe nädala tagant
DocType: Currency Exchange,From Currency,Siit Valuuta
DocType: Vital Signs,Weight (In Kilogram),Kaal (kilogrammides)
@ -2552,7 +2557,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),Põhisumma (firma Valuut
DocType: Student,Guardians,Kaitsjad
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,"Hinnad ei näidata, kui hinnakiri ei ole valitud"
DocType: Stock Entry,Total Incoming Value,Kokku Saabuva Value
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,Kanne on vajalik
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,Kanne on vajalik
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Timesheets aitab jälgida aega, kulusid ja arveldamise aja veetmiseks teha oma meeskonda"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,Ostu hinnakiri
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,Pakkujate tulemuskaardi muutujate mallid.
@ -2653,7 +2658,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,Üksnes võrdluseks.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},Arst {0} pole saadaval {1}
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,Valige Partii nr
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},Vale {0} {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},Vale {0} {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Fee Validity,Reference Inv,Viide inv
@ -2690,8 +2695,8 @@ DocType: Fees,Send Payment Request,Saada makse taotlus
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.",Määrake tegevuse töökulud ja annab ainulaadse operatsiooni ei oma tegevuse.
DocType: Water Analysis,Origin,Päritolu
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,See dokument on üle piiri {0} {1} artiklijärgse {4}. Kas tegemist teise {3} samade {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,Palun määra korduvate pärast salvestamist
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,Vali muutus summa kontole
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,Palun määra korduvate pärast salvestamist
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,Vali muutus summa kontole
DocType: Purchase Invoice,Price List Currency,Hinnakiri Valuuta
DocType: Naming Series,User must always select,Kasutaja peab alati valida
DocType: Stock Settings,Allow Negative Stock,Laske Negatiivne Stock
@ -2747,7 +2752,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,Hoolduskava Det
DocType: Supplier Scorecard,Warn for new Purchase Orders,Hoiata uute ostutellimuste eest
DocType: Quality Inspection Reading,Reading 9,Lugemine 9
DocType: Supplier,Is Frozen,Kas Külmutatud
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,Group sõlme lattu ei tohi valida tehingute
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,Group sõlme lattu ei tohi valida tehingute
DocType: Buying Settings,Buying Settings,Ostmine Seaded
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,Bom No. jaoks Lõppenud Hea toode
DocType: Upload Attendance,Attendance To Date,Osalemine kuupäev
@ -2761,6 +2766,7 @@ DocType: Offer Letter,Accepted,Lubatud
DocType: Grant Application,Organization,organisatsioon
DocType: BOM Update Tool,BOM Update Tool,BOM-i värskendamise tööriist
DocType: SG Creation Tool Course,Student Group Name,Student Grupi nimi
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,Kuva laiendatud vaade
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,Tasude loomine
apps/erpnext/erpnext/setup/doctype/company/company.js +91,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.,"Palun veendu, et sa tõesti tahad kustutada kõik tehingud selle firma. Teie kapten andmed jäävad, nagu see on. Seda toimingut ei saa tagasi võtta."
DocType: Room,Room Number,Toa number
@ -2771,7 +2777,7 @@ DocType: Journal Entry Account,Payroll Entry,Palgaarvestuse sissekanne
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,Tehke maksumall
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,Kasutaja Foorum
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,Tooraine ei saa olla tühi.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","Ei uuendada laos, arve sisaldab tilk laevandus objekt."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","Ei uuendada laos, arve sisaldab tilk laevandus objekt."
DocType: Lab Test Sample,Lab Test Sample,Lab prooviproov
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,Quick päevikusissekanne
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,Sa ei saa muuta kiirust kui Bom mainitud agianst tahes kirje
@ -2842,7 +2848,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,USD
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,Tee arve
DocType: Selling Settings,Auto close Opportunity after 15 days,Auto sule võimalus pärast 15 päeva
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Ostukorraldused ei ole {0} jaoks lubatud {1} tulemuskaardi kohta.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Ostukorraldused ei ole {0} jaoks lubatud {1} tulemuskaardi kohta.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,End Aasta
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Quot / Plii%
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,Leping End Date peab olema suurem kui Liitumis
@ -2934,7 +2940,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90-Above
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,Rida # {0}: päevikusissekanne {1} ei ole arvesse {2} või juba võrreldakse teise kviitungi
DocType: Supplier Scorecard Criteria,Criteria Weight,Kriteeriumide kaal
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Tarnija&gt; Tarnija tüüp
DocType: Buying Settings,Default Buying Price List,Vaikimisi ostmine hinnakiri
DocType: Payroll Entry,Salary Slip Based on Timesheet,Palgatõend põhjal Töögraafik
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,Ostuhind
@ -3022,7 +3027,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,Rada viib Tööstuse tüüp.
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,Mine kleebiste juurde
DocType: Item Supplier,Item Supplier,Punkt Tarnija
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,Palun sisestage Kood saada partii ei
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,Palun sisestage Kood saada partii ei
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},Palun valige väärtust {0} quotation_to {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,Kõik aadressid.
DocType: Company,Stock Settings,Stock Seaded
@ -3199,6 +3204,7 @@ DocType: Employee Loan,Loan Details,laenu detailid
DocType: Company,Default Inventory Account,Vaikimisi Inventory konto
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,Rida {0}: Teostatud Kogus peab olema suurem kui null.
DocType: Antibiotic,Antibiotic Name,Antibiootikumi nimetus
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Tootekood&gt; Elemendi grupp&gt; Bränd
DocType: Purchase Invoice,Apply Additional Discount On,Rakendada täiendavaid soodustust
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,Valige tüüp ...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,"Link kõikidele maaühikutele, kus kasvab kultuur"
@ -3392,6 +3398,7 @@ DocType: Guardian Student,Guardian Student,Guardian Student
DocType: Supplier,Credit Limit,Krediidilimiit
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,Keskm. Hinnakirja hinna müügihind
DocType: Production Plan Sales Order,Salse Order Date,Salse Order Date
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Tarnija&gt; Tarnija tüüp
DocType: Salary Component,Salary Component,palk Component
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,Makse Sissekanded {0} on un-seotud
DocType: GL Entry,Voucher No,Voucher ei
@ -3400,7 +3407,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,Kõige populaars
DocType: Leave Allocation,Leave Allocation,Jäta jaotamine
DocType: Payment Request,Recipient Message And Payment Details,Saaja sõnum ja makse detailid
DocType: Training Event,Trainer Email,treener Post
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,Materjal Taotlused {0} loodud
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,Materjal Taotlused {0} loodud
DocType: Restaurant Reservation,No of People,Inimeste arv
DocType: Production Planning Tool,Include sub-contracted raw materials,Kaasa allhanked tooraine
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,Mall terminite või leping.
@ -3464,7 +3471,7 @@ DocType: Landed Cost Item,Receipt Document,laekumine Dokumendi
DocType: Production Planning Tool,Create Material Requests,Loo Material taotlused
DocType: Employee Education,School/University,Kool / Ülikool
DocType: Payment Request,Reference Details,Viide Üksikasjad
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,Oodatud väärtus pärast Kasulik Elu peab olema väiksem kui Gross ostusumma
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,Oodatud väärtus pärast Kasulik Elu peab olema väiksem kui Gross ostusumma
DocType: Sales Invoice Item,Available Qty at Warehouse,Saadaval Kogus lattu
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,Arve summa
DocType: Asset,Double Declining Balance,Double Degressiivne
@ -3476,7 +3483,7 @@ DocType: Attendance,On Leave,puhkusel
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,Saada värskendusi
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: Konto {2} ei kuulu Company {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,Valige vähemalt igast atribuudist vähemalt üks väärtus.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,Materjal taotlus {0} on tühistatud või peatatud
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,Materjal taotlus {0} on tühistatud või peatatud
apps/erpnext/erpnext/config/hr.py +310,Leave Management,Jäta juhtimine
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,Grupi poolt konto
DocType: Sales Order,Fully Delivered,Täielikult Tarnitakse
@ -3487,14 +3494,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},Väljastatud summa ei saa olla suurem kui Laenusumma {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,Avage programmid
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},Rida {0} # eraldatud summa {1} ei tohi olla suurem kui taotletud summa {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Palun seadistage külastuse numbrite seeria seaded&gt; nummering seeria abil
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},Ostutellimuse numbri vaja Punkt {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,Tootmise et mitte loodud
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',&quot;From Date&quot; tuleb pärast &quot;To Date&quot;
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},Selleks ei saa muuta üliõpilaste {0} on seotud õpilase taotluse {1}
DocType: Asset,Fully Depreciated,täielikult amortiseerunud
,Stock Projected Qty,Stock Kavandatav Kogus
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},Kliendi {0} ei kuulu projekti {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},Kliendi {0} ei kuulu projekti {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,Märkimisväärne osavõtt HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers","Hinnapakkumised on ettepanekuid, pakkumiste saadetud oma klientidele"
DocType: Sales Order,Customer's Purchase Order,Kliendi ostutellimuse
@ -3578,7 +3584,7 @@ DocType: Salary Slip,Hour Rate,Tund Rate
DocType: Stock Settings,Item Naming By,Punkt nimetamine By
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},Teine periood sulgemine Entry {0} on tehtud pärast {1}
DocType: Production Order,Material Transferred for Manufacturing,Materjal üleantud tootmine
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,Konto {0} ei ole olemas
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,Konto {0} ei ole olemas
DocType: Project,Project Type,Projekti tüüp
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,Selle ülesande jaoks on olemas lapse ülesanne. Seda ülesannet ei saa kustutada.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,Kas eesmärk Kogus või Sihtsummaks on kohustuslik.
@ -3680,11 +3686,11 @@ DocType: C-Form,I,mina
DocType: Company,Asset Depreciation Cost Center,Vara amortisatsioonikulu Center
DocType: Sales Order Item,Sales Order Date,Sales Order Date
DocType: Sales Invoice Item,Delivered Qty,Tarnitakse Kogus
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,Kokku Excl Maksu
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","Kui see on lubatud, kõik lapsed iga tootmise kirje lisatakse materjali taotlused."
DocType: Assessment Plan,Assessment Plan,hindamise kava
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,Klient {0} on loodud.
DocType: Stock Settings,Limit Percent,Limit protsent
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Palun seadke õpetaja nime sisestamine haridusse&gt; Hariduseseaded
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,Praegu pole ühtegi ladu saadaval
,Payment Period Based On Invoice Date,Makse kindlaksmääramisel tuginetakse Arve kuupäev
DocType: Sample Collection,No. of print,Prindi arv
@ -3700,12 +3706,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),Nõuded ({0})
DocType: Pricing Rule,Margin,varu
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,Uutele klientidele
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,Brutokasum%
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,Brutokasum%
DocType: Appraisal Goal,Weightage (%),Weightage (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,Muuda POS-profiili
DocType: Bank Reconciliation Detail,Clearance Date,Kliirens kuupäev
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,Hindamisaruanne
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,Gross ostusumma on kohustuslik
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,Gross ostusumma on kohustuslik
DocType: Lead,Address Desc,Aadress otsimiseks
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,Partei on kohustuslik
DocType: Journal Entry,JV-,JV-
@ -3737,7 +3743,6 @@ DocType: Account,Accumulated Depreciation,akumuleeritud kulum
DocType: Supplier Scorecard Scoring Standing,Standing Name,Alaline nimi
DocType: Stock Entry,Customer or Supplier Details,Klienditeenindus ja tarnijate andmed
DocType: Employee Loan Application,Required by Date,Vajalik kuupäev
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),Sulgemisbalanss (Dr - Cr)
DocType: Lead,Lead Owner,Plii Omanik
DocType: Bin,Requested Quantity,taotletud Kogus
DocType: Patient,Marital Status,Perekonnaseis
@ -3751,7 +3756,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,Mitmed variandid
DocType: Sales Invoice,Against Income Account,Sissetuleku konto
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% Tarnitakse
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Punkt {0}: Tellitud tk {1} ei saa olla väiksem kui minimaalne tellimuse tk {2} (vastab punktis).
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Punkt {0}: Tellitud tk {1} ei saa olla väiksem kui minimaalne tellimuse tk {2} (vastab punktis).
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,Kuu Distribution osakaal
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,Palun logige sisse teise kasutajana.
DocType: Territory,Territory Targets,Territoorium Eesmärgid
@ -3850,7 +3855,7 @@ DocType: Program Enrollment,School House,School House
DocType: Serial No,Out of AMC,Out of AMC
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,Arv Amortisatsiooniaruanne Broneeritud ei saa olla suurem kui koguarv Amortisatsiooniaruanne
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,Tee hooldus Külasta
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,"Palun pöörduge kasutaja, kes on Sales Master Manager {0} rolli"
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,"Palun pöörduge kasutaja, kes on Sales Master Manager {0} rolli"
DocType: Company,Default Cash Account,Vaikimisi arvelduskontole
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,Company (mitte kliendi või hankija) kapten.
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,See põhineb käimist Selle Student
@ -4000,7 +4005,6 @@ DocType: Delivery Note Item,From Warehouse,Siit Warehouse
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,Nendest kriteeriumidest töötajaid pole
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,Ei objektid Materjaliandmik et Tootmine
DocType: Restaurant,Default Customer,Vaikimisi klient
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Palun seadke töötaja nimesüsteem inimressurss&gt; HR-seaded
DocType: Assessment Plan,Supervisor Name,Juhendaja nimi
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,"Ärge kinnitage, kas kohtumine on loodud samal päeval"
DocType: Program Enrollment Course,Program Enrollment Course,Programm Registreerimine Course
@ -4118,7 +4122,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,Koduleht kirjeldus
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,Net omakapitali
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,Uusim
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,Palun tühistada ostuarve {0} esimene
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,Palun tühistada ostuarve {0} esimene
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","E-posti aadress peab olema unikaalne, juba olemas {0}"
DocType: Serial No,AMC Expiry Date,AMC Aegumisaja
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,kviitung
@ -4135,7 +4139,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,Nr Kliendid ve
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,Rahavoogude aruanne
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},Laenusumma ei tohi ületada Maksimaalne laenusumma {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,litsents
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},Palun eemalda see Arve {0} on C-vorm {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},Palun eemalda see Arve {0} on C-vorm {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,"Palun valige kanda, kui soovite ka lisada eelnenud eelarveaasta saldo jätab see eelarveaastal"
DocType: GL Entry,Against Voucher Type,Vastu Voucher Type
DocType: Physician,Phone (R),Telefon (R)
@ -4147,7 +4151,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,B on negatiivne
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,Hoolduse staatus tuleb tühistada või lõpetada esitamiseks
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},Konto {0} ei kuuluv ettevõte {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,Seerianumbrid järjest {0} ei ühti saateleht
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,Seerianumbrid järjest {0} ei ühti saateleht
DocType: Student,Guardian Details,Guardian detailid
DocType: C-Form,C-Form,C-Form
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,Mark õpib mitu töötajat
@ -4189,7 +4193,7 @@ DocType: Opening Invoice Creation Tool,Sales,Läbimüük
DocType: Stock Entry Detail,Basic Amount,Põhisummat
DocType: Training Event,Exam,eksam
DocType: Complaint,Complaint,Kaebus
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},Ladu vajalik varude Punkt {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},Ladu vajalik varude Punkt {0}
DocType: Leave Allocation,Unused leaves,Kasutamata lehed
DocType: Patient,Alcohol Past Use,Alkoholi varasem kasutamine
DocType: Fertilizer Content,Fertilizer Content,Väetise sisu
@ -4312,6 +4316,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,valem
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,Serial #
DocType: Lab Test Template,Lab Test Template,Lab Test Template
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,Müügikonto
DocType: Purchase Invoice Item,Total Weight,Kogukaal
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,Müügiprovisjon
DocType: Offer Letter Term,Value / Description,Väärtus / Kirjeldus
@ -4468,7 +4473,7 @@ Updated via 'Time Log'",protokoll Uuendatud kaudu &quot;Aeg Logi &#39;
DocType: Customer,From Lead,Plii
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,Tellimused lastud tootmist.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,Vali Fiscal Year ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,POS Profile vaja teha POS Entry
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,POS Profile vaja teha POS Entry
DocType: Program Enrollment Tool,Enroll Students,õppima üliõpilasi
DocType: Lab Test,Approved Date,Heakskiidetud kuupäev
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,Standard Selling
@ -4544,7 +4549,7 @@ DocType: Employee,Held On,Toimunud
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,Tootmine toode
,Employee Information,Töötaja Information
DocType: Stock Entry Detail,Additional Cost,Lisakulu
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","Ei filtreerimiseks Voucher Ei, kui rühmitatud Voucher"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","Ei filtreerimiseks Voucher Ei, kui rühmitatud Voucher"
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,Tee Tarnija Tsitaat
DocType: Quality Inspection,Incoming,Saabuva
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,Müügile ja ostule pääseb alla maksumallid.
@ -4561,7 +4566,7 @@ DocType: Batch,Batch ID,Partii nr
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},Märkus: {0}
,Delivery Note Trends,Toimetaja märkus Trends
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,Nädala kokkuvõte
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,Laos Kogus
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,Laos Kogus
DocType: Delivery Trip,Calculate Estimated Arrival Times,Arvuta hinnangulised saabumised
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,Konto: {0} saab uuendada ainult läbi Stock Tehingud
DocType: Student Group Creation Tool,Get Courses,saada Kursused
@ -4577,7 +4582,7 @@ DocType: Purchase Order,To Bill,Et Bill
DocType: Material Request,% Ordered,% Tellitud
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.","Kursuse aluseks Student Group, muidugi on kinnitatud iga tudeng õpib Kursused programmi Registreerimine."
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,Tükitöö
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,Keskm. Ostmine Rate
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,Keskm. Ostmine Rate
DocType: Task,Actual Time (in Hours),Tegelik aeg (tundides)
DocType: Employee,History In Company,Ajalugu Company
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},Uus saatja {sender}
@ -4625,7 +4630,7 @@ DocType: Asset Repair,Asset Repair,Varade parandamine
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},Rida {0}: valuuta Bom # {1} peaks olema võrdne valitud valuuta {2}
DocType: Journal Entry Account,Exchange Rate,Vahetuskurss
DocType: Patient,Additional information regarding the patient,Täiendav teave patsiendi kohta
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,Sales Order {0} ei ole esitatud
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,Sales Order {0} ei ole esitatud
DocType: Homepage,Tag Line,tag Line
DocType: Fee Component,Fee Component,Fee Component
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,Fleet Management
@ -4837,7 +4842,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,Hindamise tulemused t
DocType: Employee Education,Employee Education,Töötajate haridus
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,Duplicate kirje rühm leidis elemendi rühma tabelis
DocType: Land Unit,Parent Land Unit,Vanemate maaüksus
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,"See on vajalik, et tõmbad Punkt Details."
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,"See on vajalik, et tõmbad Punkt Details."
DocType: Fertilizer,Fertilizer Name,Väetise nimi
DocType: Salary Slip,Net Pay,Netopalk
DocType: Account,Account,Konto
@ -4916,7 +4921,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),Tegelik Kogus (tekkeko
DocType: Item Customer Detail,Ref Code,Ref kood
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,Kliendiprofiil on vajalik POS-profiilis
apps/erpnext/erpnext/config/hr.py +12,Employee records.,Töötaja arvestust.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,Palun määra Järgmine kulum kuupäev
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,Palun määra Järgmine kulum kuupäev
DocType: HR Settings,Payroll Settings,Palga Seaded
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,Match mitte seotud arved ja maksed.
DocType: POS Settings,POS Settings,POS-seaded
@ -5083,7 +5088,7 @@ DocType: Item,Customer Code,Kliendi kood
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},Sünnipäev Meeldetuletus {0}
DocType: Asset Maintenance Task,Last Completion Date,Viimase täitmise kuupäev
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,Päeva eelmisest Telli
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,Kanne konto peab olema bilansis
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,Kanne konto peab olema bilansis
DocType: Buying Settings,Naming Series,Nimetades Series
DocType: Leave Block List,Leave Block List Name,Jäta Block nimekiri nimi
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,Kindlustus Alguse kuupäev peaks olema väiksem kui Kindlustus Lõppkuupäev
@ -5209,6 +5214,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,Saada maksmine Sissekanded
DocType: Quotation Item,Against Docname,Vastu Docname
DocType: SMS Center,All Employee (Active),Kõik Töötaja (Active)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Klient&gt; Kliendi Grupp&gt; Territoorium
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,Vaata nüüd
DocType: BOM,Raw Material Cost,Tooraine hind
DocType: Item Reorder,Re-Order Level,Re-Order Level
@ -5307,7 +5313,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,istekohtade arv
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,Lab katserühmad
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Klient&gt; Kliendi Grupp&gt; Territoorium
DocType: Project,Total Expense Claim (via Expense Claims),Kogukulude nõue (via kuluaruanded)
DocType: GST Settings,GST Summary,GST kokkuvõte
DocType: Assessment Result,Total Score,punkte kokku
@ -5320,7 +5325,7 @@ DocType: Batch,Source Document Type,Allikas Dokumendi tüüp
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,Pärast kursuse ajakava loodi
DocType: Journal Entry,Total Debit,Kokku Deebet
DocType: Manufacturing Settings,Default Finished Goods Warehouse,Vaikimisi valmistoodangu ladu
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,Sales Person
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,Sales Person
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,Eelarve ja Kulukeskus
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,Mitu vaiketüüpi ei ole lubatud
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,Selle eest
@ -5493,7 +5498,7 @@ DocType: Program,Program Name,programmi nimi
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,"Mõtle maksu, sest"
DocType: Driver,Driving License Category,Juhiloa kategooria
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,Tegelik Kogus on kohustuslikuks
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0} praegu on tarnija tulemuskaart {1} ja selle tarnija ostutellimused peaksid olema ettevaatlikud.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0} praegu on tarnija tulemuskaart {1} ja selle tarnija ostutellimused peaksid olema ettevaatlikud.
DocType: Asset Maintenance Team,Asset Maintenance Team,Varahalduse meeskond
DocType: Employee Loan,Loan Type,laenu liik
DocType: Scheduling Tool,Scheduling Tool,Ajastus Tool

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,نسخه آزمایشگاهی
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,مرتب سازی بر اساس قیمت
,Delay Days,روزهای تأخیر
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,هزینه خدمات
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},شماره سریال: {0} در حال حاضر در فاکتور فروش اشاره: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},شماره سریال: {0} در حال حاضر در فاکتور فروش اشاره: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,فاکتور
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,ورودی ذخایر ذخیره را وارد کنید
DocType: Purchase Invoice Item,Item Weight Details,مورد وزن جزئیات
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,جزئیات docname پدر و ماد
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}",مرجع: {0}، کد مورد: {1} و ضوابط: {2}
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,کیلوگرم
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,باز کردن برای یک کار.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},BOM برای قرارداد قراردادن {0} در ردیف {1} مشخص نشده است
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},BOM برای قرارداد قراردادن {0} در ردیف {1} مشخص نشده است
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} نتایج ارسال شده
DocType: Item Attribute,Increment,افزایش
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,مدت زمان
@ -150,7 +150,7 @@ DocType: Patient,Married,متاهل
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},برای مجاز نیست {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,گرفتن اقلام از
DocType: Price List,Price Not UOM Dependant,قیمت وابسته به UOM نیست
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},سهام می تواند در برابر تحویل توجه نمی شود به روز شده {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},سهام می تواند در برابر تحویل توجه نمی شود به روز شده {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},محصولات {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,بدون موارد ذکر شده
DocType: Asset Repair,Error Description,شرح خطا
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,وفق دادن
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,خواربار
DocType: Quality Inspection Reading,Reading 1,خواندن 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,صندوق های بازنشستگی
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,بعدی تاریخ استهلاک نمی تواند قبل از تاریخ خرید می باشد
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,بعدی تاریخ استهلاک نمی تواند قبل از تاریخ خرید می باشد
DocType: Crop,Perennial,چند ساله
DocType: Consultation,Consultation Date,تاریخ مشاوره
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,لیست محصولات و کشف کاربران ERPNext
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,ارسال فعال مرکز هزین
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""",به عنوان مثال &quot;مدرسه ابتدایی&quot; یا &quot;دانشگاه&quot;
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,گزارش سهام
DocType: Warehouse,Warehouse Detail,جزئیات انبار
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},حد اعتبار شده است برای مشتری عبور {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},حد اعتبار شده است برای مشتری عبور {0} {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,تاریخ پایان ترم نمی تواند بعد از تاریخ سال پایان سال تحصیلی که مدت مرتبط است باشد (سال تحصیلی {}). لطفا تاریخ های صحیح و دوباره امتحان کنید.
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item",&quot;آیا دارایی ثابت&quot; نمی تواند بدون کنترل، به عنوان رکورد دارایی در برابر مورد موجود است
DocType: Delivery Trip,Departure Time,زمان خروج
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,ورود دانشجو
DocType: Quality Inspection,Get Specification Details,دریافت اطلاعات بیشتر مشخصات
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,قالب بندی مقاطع عرضه کننده.
DocType: Lead,Interested,علاقمند
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,افتتاح
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,افتتاح
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},از {0} به {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,تنظیم مالیات انجام نشد
DocType: Item,Copy From Item Group,کپی برداری از مورد گروه
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,تسکین تاریخ باید بیشتر از تاریخ پیوستن شود
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,برگ در سال
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,ردیف {0}: لطفا بررسی کنید آیا پیشرفته در برابر حساب {1} در صورتی که این یک ورودی پیش است.
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},انبار {0} به شرکت تعلق ندارد {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},انبار {0} به شرکت تعلق ندارد {1}
DocType: Email Digest,Profit & Loss,سود و زیان
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,لیتری
DocType: Task,Total Costing Amount (via Time Sheet),مجموع هزینه یابی مقدار (از طریق زمان ورق)
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,نرخ و مبلغ
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,این بر مبنای معاملات علیه این شرکت است. برای جزئیات بیشتر به جدول زمانی زیر مراجعه کنید
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,با رایانامه آگاه کن در ایجاد درخواست مواد اتوماتیک
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,مقاوم
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,مشاوره
DocType: Journal Entry,Multi Currency,چند ارز
DocType: Opening Invoice Creation Tool,Invoice Type,فاکتور نوع
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,رسید
@ -528,7 +529,6 @@ DocType: Email Digest,Credit Balance,میزان اعتبار
DocType: Employee,Widowed,بیوه
DocType: Request for Quotation,Request for Quotation,درخواست برای نقل قول
DocType: Healthcare Settings,Require Lab Test Approval,تصویب آزمایشی آزمایش مورد نیاز است
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,کد مورد&gt; گروه مورد&gt; نام تجاری
DocType: Salary Slip Timesheet,Working Hours,ساعات کاری
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,مجموع برجسته
DocType: Naming Series,Change the starting / current sequence number of an existing series.,تغییر شروع / شماره توالی فعلی از یک سری موجود است.
@ -557,7 +557,7 @@ DocType: Subscription,Yearly,سالیانه
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,لطفا وارد مرکز هزینه
DocType: Drug Prescription,Dosage,مصرف
DocType: Journal Entry Account,Sales Order,سفارش فروش
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,میانگین نرخ فروش
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,میانگین نرخ فروش
DocType: Assessment Plan,Examiner Name,نام امتحان
DocType: Lab Test Template,No Result,هیچ نتیجه
DocType: Purchase Invoice Item,Quantity and Rate,مقدار و نرخ
@ -605,6 +605,7 @@ DocType: Employee,Health Concerns,نگرانی های بهداشتی
DocType: Payroll Entry,Select Payroll Period,انتخاب کنید حقوق و دستمزد دوره
DocType: Purchase Invoice,Unpaid,پرداخت نشده
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,محفوظ برای فروش
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,لطفا سیستم نامگذاری کارمندان را در منابع انسانی تنظیم کنید&gt; تنظیمات HR
DocType: Packing Slip,From Package No.,از شماره بسته بندی
DocType: Item Attribute,To Range,به محدوده
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,اوراق بهادار و سپرده ها
@ -629,11 +630,11 @@ DocType: Pricing Rule,Valid Upto,معتبر تا حد
DocType: Training Event,Workshop,کارگاه
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,هشدار سفارشات خرید
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,لیست تعداد کمی از مشتریان خود را. آنها می تواند سازمان ها یا افراد.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,قطعات اندازه کافی برای ساخت
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,قطعات اندازه کافی برای ساخت
DocType: POS Profile User,POS Profile User,کاربر پروفایل POS
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,درآمد مستقیم
DocType: Patient Appointment,Date TIme,زمان قرار
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account",می توانید بر روی حساب نمی فیلتر بر اساس، در صورتی که توسط حساب گروه بندی
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account",می توانید بر روی حساب نمی فیلتر بر اساس، در صورتی که توسط حساب گروه بندی
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,افسر اداری
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,ایجاد شرکت و مالیات
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,لطفا دوره را انتخاب کنید
@ -643,7 +644,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,حساب تفاوت
DocType: Purchase Invoice,Supplier GSTIN,کننده GSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,می توانید کار نزدیک به عنوان وظیفه وابسته به آن {0} بسته نشده است نیست.
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,لطفا انبار که درخواست مواد مطرح خواهد شد را وارد کنید
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,لطفا انبار که درخواست مواد مطرح خواهد شد را وارد کنید
DocType: Production Order,Additional Operating Cost,هزینه های عملیاتی اضافی
DocType: Lab Test Template,Lab Routine,روال آزمایشگاهی
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,آرایشی و بهداشتی
@ -811,7 +812,7 @@ DocType: Employee,Passport Number,شماره پاسپورت
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,ارتباط با Guardian2
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,مدیر
DocType: Payment Entry,Payment From / To,پرداخت از / به
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},حد اعتبار جدید کمتر از مقدار برجسته فعلی برای مشتری است. حد اعتبار به حداقل می شود {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},حد اعتبار جدید کمتر از مقدار برجسته فعلی برای مشتری است. حد اعتبار به حداقل می شود {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},لطفا حساب را در Warehouse تنظیم کنید {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,"""بر اساس"" و ""گروه شده توسط"" نمی توانند همسان باشند"
DocType: Sales Person,Sales Person Targets,اهداف فروشنده
@ -822,7 +823,7 @@ DocType: Lab Test Template,Compound,ترکیب
DocType: Student Batch Name,Batch Name,نام دسته ای
DocType: Fee Validity,Max number of visit,حداکثر تعداد بازدید
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,برنامه زمانی ایجاد شده:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},لطفا نقدی پیش فرض و یا حساب بانکی در نحوه پرداخت را تعیین {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},لطفا نقدی پیش فرض و یا حساب بانکی در نحوه پرداخت را تعیین {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,ثبت نام کردن
DocType: GST Settings,GST Settings,تنظیمات GST
DocType: Selling Settings,Customer Naming By,نامگذاری مشتری توسط
@ -946,7 +947,7 @@ DocType: Delivery Note,Customer's Purchase Order No,مشتری سفارش خری
DocType: Budget,Budget Against,بودجه علیه
DocType: Employee,Cell Number,شماره همراه
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,برای معیارهای داده شده هیچ کارمند وجود ندارد چک کنید که حقوق و دستمزد قبلا ایجاد نشده است.
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,درخواست مواد تولید خودکار
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,درخواست مواد تولید خودکار
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,از دست رفته
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,"شما نمی توانید سند هزینه جاری را در ستون""علیه مجله "" وارد کنید"
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,محفوظ برای تولید
@ -954,7 +955,7 @@ DocType: Soil Texture,Sand,شن
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,انرژی
DocType: Opportunity,Opportunity From,فرصت از
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,بیانیه حقوق ماهانه.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,ردیف {0}: {1} شماره سریال مورد برای {2} مورد نیاز است. شما {3} را ارائه کرده اید.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,ردیف {0}: {1} شماره سریال مورد برای {2} مورد نیاز است. شما {3} را ارائه کرده اید.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,لطفا یک جدول را انتخاب کنید
DocType: BOM,Website Specifications,مشخصات وب سایت
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} یک آدرس ایمیل نا معتبردر «گیرندگان» است
@ -1023,7 +1024,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,درخواست نقل قول
DocType: Vital Signs,Heart Rate / Pulse,ضربان قلب / پالس
DocType: Company,Default Bank Account,به طور پیش فرض حساب بانکی
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first",برای فیلتر کردن بر اساس حزب، حزب انتخاب نوع اول
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first",برای فیلتر کردن بر اساس حزب، حزب انتخاب نوع اول
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},'به روز رسانی موجودی'نمی تواند انتخاب شود ، زیرا موارد از طریق تحویل نمی {0}
DocType: Vehicle,Acquisition Date,تاریخ اکتساب
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,شماره
@ -1047,7 +1048,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),سربرگ خود را بارگذاری کنید (به عنوان وب سایت دوستانه 900px بر روی 100px نگه دارید)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: حساب {2} نمی تواند یک گروه
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,مورد ردیف {IDX}: {} {DOCTYPE DOCNAME} در بالا وجود ندارد &#39;{} DOCTYPE جدول
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,برنامه زمانی {0} است در حال حاضر تکمیل و یا لغو
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,برنامه زمانی {0} است در حال حاضر تکمیل و یا لغو
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,وظایف
DocType: Item Variant Settings,Copy Fields to Variant,کپی زمینه به گزینه
DocType: Asset,Opening Accumulated Depreciation,باز کردن استهلاک انباشته
@ -1159,9 +1160,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,مواد را برای طرح زیر مجموعه
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,شرکای فروش و منطقه
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,BOM {0} باید فعال باشد
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),بسته شدن (باز کردن + مجموع)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),بسته شدن (باز کردن + مجموع)
DocType: Journal Entry,Depreciation Entry,ورود استهلاک
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,لطفا ابتدا نوع سند را انتخاب کنید
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,چاپ در حساب ارز
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,لغو مواد بازدید {0} قبل از لغو این نگهداری سایت
DocType: Crop Cycle,ISO 8016 standard,ایزو 8016 استاندارد
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},سریال بدون {0} به مورد تعلق ندارد {1}
@ -1187,7 +1189,7 @@ DocType: Purchase Receipt,Range,محدوده
DocType: Supplier,Default Payable Accounts,به طور پیش فرض حسابهای پرداختنی
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,کارمند {0} غیر فعال است و یا وجود ندارد
DocType: Fee Structure,Components,اجزاء
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},لطفا دارایی رده در آیتم را وارد کنید {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},لطفا دارایی رده در آیتم را وارد کنید {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,مورد انواع {0} به روز شده
DocType: Quality Inspection Reading,Reading 6,خواندن 6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1239,6 +1241,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,نام شرکت
DocType: SMS Center,Total Message(s),پیام ها (بازدید کنندگان)
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,انتخاب مورد انتقال
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,لطفا مجموعه نامگذاری را برای {0} از طریق تنظیمات&gt; تنظیمات&gt; نامگذاری سری
DocType: Purchase Invoice,Additional Discount Percentage,تخفیف اضافی درصد
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,نمایش یک لیست از تمام فیلم ها کمک
DocType: Agriculture Analysis Criteria,Soil Texture,بافت خاک
@ -1266,7 +1269,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,BOM مورد وب سایت
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,آپلود سر نامه و آرم خود را. (شما می توانید آنها را بعد از ویرایش).
DocType: Timesheet Detail,Bill,لایحه
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,بعدی تاریخ استهلاک به عنوان تاریخ گذشته وارد
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,بعدی تاریخ استهلاک به عنوان تاریخ گذشته وارد
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,سفید
DocType: SMS Center,All Lead (Open),همه سرب (باز)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),ردیف {0}: تعداد برای در دسترس نیست {4} در انبار {1} در زمان ارسال از ورود ({2} {3})
@ -1282,7 +1285,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,تماس با آمار بعدی
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,باز کردن تعداد
DocType: Healthcare Settings,Appointment Reminder,یادآوری انتصاب
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,لطفا حساب برای تغییر مقدار را وارد کنید
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,لطفا حساب برای تغییر مقدار را وارد کنید
DocType: Program Enrollment Tool Student,Student Batch Name,دانشجو نام دسته ای
DocType: Consultation,Doctor,دکتر
DocType: Holiday List,Holiday List Name,نام فهرست تعطیلات
@ -1298,6 +1301,7 @@ DocType: Patient,Patient Relation,رابطه بیمار
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,ترک ابزار تخصیص
DocType: Item,Hub Category to Publish,رده توزیع برای انتشار
DocType: Leave Block List,Leave Block List Dates,ترک فهرست بلوک خرما
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,لطفا شماره سریال را برای شرکت کنندگان از طریق Setup&gt; Numbering Series نصب کنید
DocType: Sales Invoice,Billing Address GSTIN,آدرس پرداخت GSTIN
DocType: Assessment Plan,Evaluate,ارزیابی کنید
DocType: Workstation,Net Hour Rate,خالص نرخ ساعت
@ -1331,7 +1335,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,خرید آیتم رسید
DocType: Purchase Receipt,PREC-RET-,PREC-RET-
DocType: POS Profile,Sales Invoice Payment,فاکتور فروش پرداخت
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,انبار محفوظ در سفارش فروش / به پایان رسید کالا انبار
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,فروش مقدار
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,فروش مقدار
DocType: Repayment Schedule,Interest Amount,مقدار بهره
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,شما تصویب‌کننده هزینه برای این پرونده هستید. لطفاٌ 'وضعیت' را بروزرسانی و سپس ذخیره نمایید
DocType: Serial No,Creation Document No,ایجاد سند بدون
@ -1422,7 +1426,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,باز کردن تعادل حسابداری
,GST Sales Register,GST فروش ثبت نام
DocType: Sales Invoice Advance,Sales Invoice Advance,فاکتور فروش پیشرفته
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,هیچ چیز برای درخواست
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,هیچ چیز برای درخواست
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,دامنه های خود را انتخاب کنید
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},دیگری را ضبط بودجه &#39;{0}&#39; در حال حاضر در برابر وجود دارد {1} &#39;{2} برای سال مالی {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,زمینه ها تنها در زمان ایجاد ایجاد می شوند.
@ -1432,11 +1436,11 @@ DocType: Cheque Print Template,Payer Settings,تنظیمات پرداخت کنن
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""",این خواهد شد به کد مورد از نوع اضافه خواهد شد. برای مثال، اگر شما مخفف &quot;SM&quot; است، و کد مورد است &quot;تی شرت&quot;، کد مورد از نوع خواهد بود &quot;تی شرت-SM&quot;
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,پرداخت خالص (به عبارت) قابل مشاهده خواهد بود یک بار شما را لغزش حقوق و دستمزد را نجات دهد.
DocType: Purchase Invoice,Is Return,آیا بازگشت
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,احتیاط
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,احتیاط
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,بازگشت / دبیت توجه
DocType: Price List Country,Price List Country,لیست قیمت کشور
DocType: Item,UOMs,UOMs
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} NOS سریال معتبر برای مورد {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} NOS سریال معتبر برای مورد {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,کد مورد می تواند برای شماره سریال نمی تواند تغییر
DocType: Purchase Invoice Item,UOM Conversion Factor,UOM عامل تبدیل
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,لطفا کد کالا وارد کنید برای دریافت شماره بچ
@ -1540,7 +1544,7 @@ DocType: Journal Entry,Get Outstanding Invoices,دریافت فاکتورها ب
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,سفارش فروش {0} معتبر نیست
DocType: Supplier Scorecard,Warn for new Request for Quotations,اخطار برای درخواست جدید برای نقل قول
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,سفارشات خرید به شما کمک کند برنامه ریزی و پیگیری خرید خود را
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged",با عرض پوزش، شرکت ها نمی توانند با هم ادغام شدند
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged",با عرض پوزش، شرکت ها نمی توانند با هم ادغام شدند
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,آزمایشات آزمایشی
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",کل مقدار شماره / انتقال {0} در درخواست پاسخ به مواد {1} \ نمی تواند بیشتر از مقدار درخواست {2} برای مورد {3}
@ -1578,7 +1582,6 @@ DocType: Vehicle,Fuel UOM,UOM سوخت
DocType: Warehouse,Warehouse Contact Info,انبار اطلاعات تماس
DocType: Payment Entry,Write Off Difference Amount,نوشتن کردن مقدار تفاوت
DocType: Volunteer,Volunteer Name,نام داوطلب
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,لطفا سیستم نامگذاری مربیان را در آموزش و پرورش&gt; تنظیمات تحصیلی تنظیم کنید
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent",{0}: ایمیل کارمند یافت نشد، از این رو ایمیل ارسال نمی
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},قانون حمل و نقل برای کشور قابل اجرا نیست {0}
DocType: Item,Foreign Trade Details,جزییات تجارت خارجی
@ -1590,7 +1593,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,گروه شماره رول
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry",برای {0}، تنها حساب های اعتباری می تواند در مقابل ورود بدهی دیگر مرتبط
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,در کل از همه وزن وظیفه باید باشد 1. لطفا وزن همه وظایف پروژه تنظیم بر این اساس
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,تحویل توجه داشته باشید {0} است ارسال نشده
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,تحویل توجه داشته باشید {0} است ارسال نشده
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,مورد {0} باید مورد-فرعی قرارداد است
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,تجهیزات سرمایه
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.",قانون قیمت گذاری شده است برای اولین بار بر اساس انتخاب &#39;درخواست در&#39; درست است که می تواند مورد، مورد گروه و یا تجاری.
@ -1615,7 +1618,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,انبار کودک برای این انبار وجود دارد. شما می توانید این انبار را حذف کنید.
DocType: Item,Website Item Groups,گروه مورد وب سایت
DocType: Purchase Invoice,Total (Company Currency),مجموع (شرکت ارز)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,شماره سریال {0} وارد بیش از یک بار
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,شماره سریال {0} وارد بیش از یک بار
DocType: Journal Entry,Journal Entry,ورودی دفتر
DocType: Expense Claim Advance,Unclaimed amount,مقدار نامعلوم
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} اقلام در حال انجام
@ -1711,7 +1714,7 @@ DocType: Email Digest,For Company,برای شرکت
apps/erpnext/erpnext/config/support.py +17,Communication log.,ورود به سیستم ارتباطات.
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.",درخواست برای نقل قول به دسترسی از پورتال غیر فعال است، برای اطلاعات بیشتر تنظیمات پورتال چک.
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,متغیر رتبه بندی کارت امتیازی تامین کننده
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,مقدار خرید
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,مقدار خرید
DocType: Sales Invoice,Shipping Address Name,حمل و نقل آدرس
DocType: Material Request,Terms and Conditions Content,شرایط و ضوابط محتوا
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,اشتباهاتی در ایجاد برنامه درس وجود داشت
@ -1974,7 +1977,7 @@ DocType: Expense Claim,Total Amount Reimbursed,مقدار کل بازپرداخ
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,این است که در سیاهههای مربوط در برابر این خودرو است. مشاهده جدول زمانی زیر برای جزئیات
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},در برابر تامین کننده فاکتور {0} تاریخ {1}
DocType: Customer,Default Price List,به طور پیش فرض لیست قیمت
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,ضبط حرکت دارایی {0} ایجاد
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,ضبط حرکت دارایی {0} ایجاد
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,شما نمی توانید حذف سال مالی {0}. سال مالی {0} به عنوان پیش فرض در تنظیمات جهانی تنظیم
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,یک مشتری با همین نام قبلا وجود دارد
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,این باعث می شود که حقوق و دستمزد را ایجاد کنید و مجله ورودی تعهدی ایجاد کنید. آیا شما می خواهید ادامه دهید؟
@ -1988,6 +1991,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,قیمت گذاری
DocType: Quotation,Term Details,جزییات مدت
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,نمی توانید بیش از {0} دانش آموزان برای این گروه از دانشجویان ثبت نام.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),مجموع (بدون مالیات)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,تعداد سرب
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} باید بزرگتر از 0 باشد
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,سهام موجود
@ -2006,7 +2010,6 @@ DocType: Lab Test,Technician Name,نام تکنسین
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,قطع ارتباط پرداخت در لغو فاکتور
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},خواندن کیلومترشمار فعلی وارد باید بیشتر از اولیه خودرو کیلومترشمار شود {0}
DocType: Restaurant Reservation,No Show,بدون نمایش
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,لطفا مجموعه نامگذاری را برای {0} از طریق تنظیمات&gt; تنظیمات&gt; نامگذاری سری
DocType: Shipping Rule Country,Shipping Rule Country,قانون حمل و نقل کشور
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,حضور و غیاب
DocType: Maintenance Visit,Partially Completed,نیمه تکمیل شده
@ -2097,7 +2100,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,مربی دانشجویی گروه
DocType: Grant Application,Assessment Mark (Out of 10),ارزیابی علامت (از 10)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 موبایل بدون
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,اصلی
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,اصلی
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,نوع دیگر
DocType: Naming Series,Set prefix for numbering series on your transactions,تنظیم پیشوند برای شماره سری در معاملات خود را
DocType: Employee Attendance Tool,Employees HTML,کارمندان HTML
@ -2145,7 +2148,7 @@ DocType: Crop,Crop Spacing,فاصله کاشت
DocType: Course,Course Abbreviation,مخفف دوره
DocType: Student Leave Application,Student Leave Application,دانشجو مرخصی کاربرد
DocType: Item,Will also apply for variants,همچنین برای انواع اعمال می شود
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}",دارایی نمی تواند لغو شود، آن است که در حال حاضر {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}",دارایی نمی تواند لغو شود، آن است که در حال حاضر {0}
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},کارمند {0} در روز نیمه در {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},کل ساعات کار نباید از ساعات کار حداکثر است بیشتر {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,بر
@ -2329,9 +2332,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),واقعی پایان تاریخ (از طریق زمان ورق)
DocType: Soil Texture,Soil Type,نوع خاک
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},مقدار {0} {1} در برابر {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,پیام جدید
,Quotation Trends,روند نقل قول
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},مورد گروه در مورد استاد برای آیتم ذکر نشده {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,بدهی به حساب باید یک حساب کاربری دریافتنی است
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,بدهی به حساب باید یک حساب کاربری دریافتنی است
DocType: Shipping Rule,Shipping Amount,مقدار حمل و نقل
DocType: Supplier Scorecard Period,Period Score,امتیاز دوره
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,اضافه کردن مشتریان
@ -2342,7 +2346,7 @@ DocType: Purchase Order,Delivered,تحویل
,Vehicle Expenses,هزینه های خودرو
DocType: Serial No,Invoice Details,جزئیات فاکتور
DocType: Grant Application,Show on Website,نمایش در وب سایت
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},مقدار مورد انتظار پس از عمر مفید باید بزرگتر یا مساوی به {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},مقدار مورد انتظار پس از عمر مفید باید بزرگتر یا مساوی به {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,شروع کن
DocType: Hub Category,Hub Category,رده هاب
DocType: Purchase Invoice,SEZ,SEZ
@ -2373,7 +2377,7 @@ DocType: Patient,Patient Details,جزئیات بیمار
DocType: Patient,B Positive,B مثبت
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.",ردیف # {0}: تعداد باید 1 باشد، به عنوان مورد دارایی ثابت است. لطفا ردیف جداگانه برای تعداد متعدد استفاده کنید.
DocType: Leave Block List Allow,Leave Block List Allow,ترک فهرست بلوک اجازه
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,مخفف نمیتواند خالی یا space باشد
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,مخفف نمیتواند خالی یا space باشد
DocType: Patient Medical Record,Patient Medical Record,پرونده پزشکی بیمار
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,گروه به غیر گروه
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,ورزشی
@ -2423,6 +2427,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,نمی توان RFQ دریافتی را بدون نقل قول تنظیم کرد
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,کسر مجموع
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,یک حساب کاربری برای چاپ در حساب حساب را انتخاب کنید
,Production Analytics,تجزیه و تحلیل ترافیک تولید
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,این بر مبنای معاملات در برابر این بیمار است. برای جزئیات بیشتر به جدول زمانی زیر مراجعه کنید
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,هزینه به روز رسانی
@ -2477,7 +2482,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,مو
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,انتخاب شرکت ...
DocType: Leave Control Panel,Leave blank if considered for all departments,خالی بگذارید اگر برای همه گروه ها در نظر گرفته
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).",انواع اشتغال (دائمی، قرارداد، و غیره کارآموز).
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} برای آیتم الزامی است {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} برای آیتم الزامی است {1}
DocType: Payroll Entry,Fortnightly,دوهفتگی
DocType: Currency Exchange,From Currency,از ارز
DocType: Vital Signs,Weight (In Kilogram),وزن (در کیلوگرم)
@ -2553,7 +2558,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),مقدار اولیه (
DocType: Student,Guardians,نگهبان
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,قیمت نشان داده نخواهد شد اگر لیست قیمت تنظیم نشده است
DocType: Stock Entry,Total Incoming Value,مجموع ارزش ورودی
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,بدهکاری به مورد نیاز است
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,بدهکاری به مورد نیاز است
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team",برنامه های زمانی کمک به پیگیری از زمان، هزینه و صدور صورت حساب برای فعالیت های انجام شده توسط تیم خود را
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,خرید لیست قیمت
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,الگوهای متغیرهای کارت امتیازی تامین کننده.
@ -2654,7 +2659,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,برای مرجع تنها.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},پزشک {0} در {1} در دسترس نیست
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,انتخاب دسته ای بدون
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},نامعتبر {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},نامعتبر {0}: {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Fee Validity,Reference Inv,مجله مرجع
@ -2691,8 +2696,8 @@ DocType: Fees,Send Payment Request,ارسال درخواست پرداخت
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.",مشخص عملیات، هزینه های عملیاتی و به یک عملیات منحصر به فرد بدون به عملیات خود را.
DocType: Water Analysis,Origin,اصل و نسب
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,این سند بیش از حد مجاز است {0} {1} برای آیتم {4}. آیا شما ساخت یکی دیگر از {3} در برابر همان {2}.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,لطفا پس از ذخیره در محدوده زمانی معین
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,انتخاب تغییر حساب مقدار
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,لطفا پس از ذخیره در محدوده زمانی معین
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,انتخاب تغییر حساب مقدار
DocType: Purchase Invoice,Price List Currency,لیست قیمت ارز
DocType: Naming Series,User must always select,کاربر همیشه باید انتخاب کنید
DocType: Stock Settings,Allow Negative Stock,اجازه می دهد بورس منفی
@ -2748,7 +2753,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,جزئیات ب
DocType: Supplier Scorecard,Warn for new Purchase Orders,اخطار سفارشات خرید جدید
DocType: Quality Inspection Reading,Reading 9,خواندن 9
DocType: Supplier,Is Frozen,آیا منجمد
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,انبار گره گروه مجاز به برای انجام معاملات را انتخاب کنید
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,انبار گره گروه مجاز به برای انجام معاملات را انتخاب کنید
DocType: Buying Settings,Buying Settings,تنظیمات خرید
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,شماره BOM برای مورد خوبی در دست اجرا
DocType: Upload Attendance,Attendance To Date,حضور و غیاب به روز
@ -2762,6 +2767,7 @@ DocType: Offer Letter,Accepted,پذیرفته
DocType: Grant Application,Organization,سازمان
DocType: BOM Update Tool,BOM Update Tool,ابزار به روز رسانی BOM
DocType: SG Creation Tool Course,Student Group Name,نام دانشجو گروه
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,نمایش نمایش منفرد
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,ایجاد هزینه ها
apps/erpnext/erpnext/setup/doctype/company/company.js +91,Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone.,لطفا مطمئن شوید که شما واقعا می خواهید به حذف تمام معاملات این شرکت. اطلاعات کارشناسی ارشد خود را باقی خواهد ماند آن را به عنوان است. این عمل قابل بازگشت نیست.
DocType: Room,Room Number,شماره اتاق
@ -2772,7 +2778,7 @@ DocType: Journal Entry Account,Payroll Entry,ورودی حقوق و دستمزد
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,قالب مالیاتی
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,انجمن کاربران
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,مواد اولیه نمی تواند خالی باشد.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.",می تواند سهام به روز رسانی نیست، فاکتور شامل آیتم افت حمل و نقل.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.",می تواند سهام به روز رسانی نیست، فاکتور شامل آیتم افت حمل و نقل.
DocType: Lab Test Sample,Lab Test Sample,آزمایش آزمایشی نمونه
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,سریع دانشگاه علوم پزشکی ورودی
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,اگر ذکر بی ا م در مقابل هر ایتمی باشد شما نمیتوانید نرخ را تغییر دهید
@ -2843,7 +2849,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,دلار آمریکا
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,را فاکتور
DocType: Selling Settings,Auto close Opportunity after 15 days,خودرو فرصت نزدیک پس از 15 روز
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,سفارشات خرید ممنوع است برای {0} به دلیل ایستادن کارت امتیازی از {1}.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,سفارشات خرید ممنوع است برای {0} به دلیل ایستادن کارت امتیازی از {1}.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,پایان سال
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Quot و / سرب٪
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,قرارداد تاریخ پایان باید از تاریخ پیوستن بیشتر
@ -2935,7 +2941,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90-بالاتر از
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,ردیف # {0}: مجله ورودی {1} می کند حساب کاربری ندارید {2} یا در حال حاضر همسان در برابر کوپن دیگر
DocType: Supplier Scorecard Criteria,Criteria Weight,معیارهای وزن
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,تامین کننده&gt; نوع تامین کننده
DocType: Buying Settings,Default Buying Price List,به طور پیش فرض لیست قیمت خرید
DocType: Payroll Entry,Salary Slip Based on Timesheet,لغزش حقوق و دستمزد بر اساس برنامه زمانی
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,نرخ خرید
@ -3023,7 +3028,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,آهنگ فرصت های نوع صنعت.
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,برو به نامه ها
DocType: Item Supplier,Item Supplier,تامین کننده مورد
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,لطفا کد مورد وارد کنید دسته ای هیچ
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,لطفا کد مورد وارد کنید دسته ای هیچ
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},لطفا یک ارزش برای {0} quotation_to انتخاب کنید {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,تمام آدرس.
DocType: Company,Stock Settings,تنظیمات سهام
@ -3200,6 +3205,7 @@ DocType: Employee Loan,Loan Details,وام جزییات
DocType: Company,Default Inventory Account,حساب پرسشنامه به طور پیش فرض
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,ردیف {0}: پایان تعداد باید بزرگتر از صفر باشد.
DocType: Antibiotic,Antibiotic Name,نام آنتی بیوتیک
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,کد مورد&gt; گروه مورد&gt; نام تجاری
DocType: Purchase Invoice,Apply Additional Discount On,درخواست تخفیف اضافی
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,انتخاب نوع ...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,لینک به تمام واحد های زمین که در آن محصول در حال رشد است
@ -3393,6 +3399,7 @@ DocType: Guardian Student,Guardian Student,نگهبان دانشجویی
DocType: Supplier,Credit Limit,محدودیت اعتبار
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,میانگین فروش قیمت نرخ قیمت
DocType: Production Plan Sales Order,Salse Order Date,Salse تاریخ سفارش
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,تامین کننده&gt; نوع تامین کننده
DocType: Salary Component,Salary Component,حقوق و دستمزد و اجزای
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,مطالب پرداخت {0} سازمان ملل متحد در ارتباط هستند
DocType: GL Entry,Voucher No,کوپن بدون
@ -3401,7 +3408,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,محبوبتری
DocType: Leave Allocation,Leave Allocation,ترک تخصیص
DocType: Payment Request,Recipient Message And Payment Details,گیرنده پیام و جزئیات پرداخت
DocType: Training Event,Trainer Email,ترینر ایمیل
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,درخواست مواد {0} ایجاد
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,درخواست مواد {0} ایجاد
DocType: Restaurant Reservation,No of People,بدون مردم
DocType: Production Planning Tool,Include sub-contracted raw materials,شامل مواد خام زیر قرارداد
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,الگو از نظر و یا قرارداد.
@ -3465,7 +3472,7 @@ DocType: Landed Cost Item,Receipt Document,سند دریافت
DocType: Production Planning Tool,Create Material Requests,ایجاد درخواست مواد
DocType: Employee Education,School/University,مدرسه / دانشگاه
DocType: Payment Request,Reference Details,اطلاعات مرجع
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,مقدار مورد انتظار پس از زندگی مفید باید کمتر از خالص خرید مقدار باشد
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,مقدار مورد انتظار پس از زندگی مفید باید کمتر از خالص خرید مقدار باشد
DocType: Sales Invoice Item,Available Qty at Warehouse,تعداد موجود در انبار
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,مقدار فاکتور شده
DocType: Asset,Double Declining Balance,دو موجودی نزولی
@ -3477,7 +3484,7 @@ DocType: Attendance,On Leave,در مرخصی
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,دریافت به روز رسانی
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: حساب {2} به شرکت تعلق ندارد {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,حداقل یک مقدار از هر یک از ویژگی ها را انتخاب کنید.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,درخواست مواد {0} است لغو و یا متوقف
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,درخواست مواد {0} است لغو و یا متوقف
apps/erpnext/erpnext/config/hr.py +310,Leave Management,ترک مدیریت
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,گروه های حساب
DocType: Sales Order,Fully Delivered,به طور کامل تحویل
@ -3488,14 +3495,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},میزان مبالغ هزینه نمی تواند بیشتر از وام مبلغ {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,به برنامه ها بروید
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},ردیف {0} # مقدار اختصاص داده شده {1} نمیتواند بیشتر از مقدار درخواست نشده باشد {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,لطفا شماره سریال را برای شرکت کنندگان از طریق Setup&gt; Numbering Series نصب کنید
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},خرید شماره سفارش مورد نیاز برای مورد {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,تولید سفارش ایجاد نمی
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"""از تاریخ"" باید پس از ""تا تاریخ"" باشد"
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},می توانید تغییر وضعیت به عنوان دانش آموز نمی {0} است با استفاده از دانش آموزان مرتبط {1}
DocType: Asset,Fully Depreciated,به طور کامل مستهلک
,Stock Projected Qty,سهام بینی تعداد
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},مشتری {0} تعلق ندارد به پروژه {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},مشتری {0} تعلق ندارد به پروژه {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,حضور و غیاب مشخص HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers",نقل قول پیشنهادات، مناقصه شما را به مشتریان خود ارسال
DocType: Sales Order,Customer's Purchase Order,سفارش خرید مشتری
@ -3579,7 +3585,7 @@ DocType: Salary Slip,Hour Rate,یک ساعت یک نرخ
DocType: Stock Settings,Item Naming By,مورد نامگذاری توسط
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},یکی دیگر از ورودی اختتامیه دوره {0} شده است پس از ساخته شده {1}
DocType: Production Order,Material Transferred for Manufacturing,مواد منتقل ساخت
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,حساب {0} وجود ندارد
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,حساب {0} وجود ندارد
DocType: Project,Project Type,نوع پروژه
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,وظیفه کودک برای این وظیفه وجود دارد. شما نمی توانید این کار را حذف کنید.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,در هر دو صورت تعداد هدف یا هدف مقدار الزامی است.
@ -3681,11 +3687,11 @@ DocType: C-Form,I,من
DocType: Company,Asset Depreciation Cost Center,دارایی مرکز استهلاک هزینه
DocType: Sales Order Item,Sales Order Date,تاریخ سفارش فروش
DocType: Sales Invoice Item,Delivered Qty,تحویل تعداد
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,کل Excl مالیات
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.",اگر علامت زده شود، همه بچه ها از هر یک از آیتم تولید خواهد شد در درخواست مواد گنجانده شده است.
DocType: Assessment Plan,Assessment Plan,طرح ارزیابی
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,مشتری {0} ایجاد شده است
DocType: Stock Settings,Limit Percent,درصد محدود
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,لطفا سیستم نامگذاری مربیان را در آموزش و پرورش&gt; تنظیمات تحصیلی تنظیم کنید
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,در حال حاضر هیچ کالایی در انبار وجود ندارد
,Payment Period Based On Invoice Date,دوره پرداخت بر اساس فاکتور عضویت
DocType: Sample Collection,No. of print,تعداد چاپ
@ -3701,12 +3707,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),بدهکاران ({0})
DocType: Pricing Rule,Margin,حاشیه
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,مشتریان جدید
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,سود ناخالص٪
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,سود ناخالص٪
DocType: Appraisal Goal,Weightage (%),بین وزنها (٪)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,تغییر مشخصات POS
DocType: Bank Reconciliation Detail,Clearance Date,ترخیص کالا از تاریخ
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,گزارش ارزیابی
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,مبلغ خرید خالص الزامی است
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,مبلغ خرید خالص الزامی است
DocType: Lead,Address Desc,نشانی محصول
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,حزب الزامی است
DocType: Journal Entry,JV-,JV-
@ -3738,7 +3744,6 @@ DocType: Account,Accumulated Depreciation,استهلاک انباشته
DocType: Supplier Scorecard Scoring Standing,Standing Name,نام مستعار
DocType: Stock Entry,Customer or Supplier Details,مشتری و یا تامین کننده
DocType: Employee Loan Application,Required by Date,مورد نیاز تاریخ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),تعادل تعادل (Dr - Cr)
DocType: Lead,Lead Owner,مالک راهبر
DocType: Bin,Requested Quantity,تعداد درخواست
DocType: Patient,Marital Status,وضعیت تاهل
@ -3752,7 +3757,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,گزینه های چندگانه
DocType: Sales Invoice,Against Income Account,به حساب درآمد
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}٪ تحویل داده شد
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,مورد {0}: تعداد مرتب {1} نمی تواند کمتر از حداقل تعداد سفارش {2} (تعریف شده در مورد).
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,مورد {0}: تعداد مرتب {1} نمی تواند کمتر از حداقل تعداد سفارش {2} (تعریف شده در مورد).
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,درصد ماهانه توزیع
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,لطفا به عنوان کاربر دیگری وارد شوید
DocType: Territory,Territory Targets,اهداف منطقه
@ -3851,7 +3856,7 @@ DocType: Program Enrollment,School House,مدرسه خانه
DocType: Serial No,Out of AMC,از AMC
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,تعداد Depreciations رزرو نمی تواند بیشتر از تعداد کل Depreciations
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,را نگهداری سایت
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,لطفا برای کاربری که فروش کارشناسی ارشد مدیریت {0} نقش دارند تماس
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,لطفا برای کاربری که فروش کارشناسی ارشد مدیریت {0} نقش دارند تماس
DocType: Company,Default Cash Account,به طور پیش فرض حساب های نقدی
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,شرکت (و نه مشتری و یا تامین کننده) استاد.
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,این است که در حضور این دانش آموز بر اساس
@ -4001,7 +4006,6 @@ DocType: Delivery Note Item,From Warehouse,از انبار
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,هیچ کارمند برای معیارهای ذکر شده
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,هیچ موردی با بیل از مواد برای تولید
DocType: Restaurant,Default Customer,مشتری پیش فرض
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,لطفا سیستم نامگذاری کارمندان را در منابع انسانی تنظیم کنید&gt; تنظیمات HR
DocType: Assessment Plan,Supervisor Name,نام استاد راهنما
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,تأیید نکرده اید که قرار ملاقات برای همان روز ایجاد شده باشد
DocType: Program Enrollment Course,Program Enrollment Course,برنامه ثبت نام دوره
@ -4119,7 +4123,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,وب سایت توضیحات
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,تغییر خالص در حقوق صاحبان سهام
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,جدیدترین
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,لطفا لغو خرید فاکتور {0} برای اولین بار
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,لطفا لغو خرید فاکتور {0} برای اولین بار
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}",آدرس ایمیل باید منحصر به فرد باشد، در حال حاضر برای {0} وجود دارد
DocType: Serial No,AMC Expiry Date,AMC تاریخ انقضاء
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,اعلام وصول
@ -4136,7 +4140,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,بدون مش
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,صورت جریان وجوه نقد
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},وام مبلغ می توانید حداکثر مبلغ وام از تجاوز نمی {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,مجوز
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},لطفا این فاکتور {0} از C-فرم حذف {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},لطفا این فاکتور {0} از C-فرم حذف {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,لطفا انتخاب کنید حمل به جلو اگر شما نیز می خواهید که شامل تعادل سال گذشته مالی برگ به سال مالی جاری
DocType: GL Entry,Against Voucher Type,در برابر نوع کوپن
DocType: Physician,Phone (R),تلفن (R)
@ -4148,7 +4152,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,B منفی است
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,وضعیت تعمیر و نگهداری باید لغو شود یا تکمیل شود
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},حساب {0} به شرکت {1} تعلق ندارد
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,شماره سریال در ردیف {0} با تحویل توجه مطابقت ندارد
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,شماره سریال در ردیف {0} با تحویل توجه مطابقت ندارد
DocType: Student,Guardian Details,نگهبان جزییات
DocType: C-Form,C-Form,C-فرم
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,حضور و غیاب علامت برای کارکنان متعدد
@ -4190,7 +4194,7 @@ DocType: Opening Invoice Creation Tool,Sales,فروش
DocType: Stock Entry Detail,Basic Amount,مقدار اولیه
DocType: Training Event,Exam,امتحان
DocType: Complaint,Complaint,شکایت
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},انبار مورد نیاز برای سهام مورد {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},انبار مورد نیاز برای سهام مورد {0}
DocType: Leave Allocation,Unused leaves,برگ استفاده نشده
DocType: Patient,Alcohol Past Use,مصرف الکل گذشته
DocType: Fertilizer Content,Fertilizer Content,محتوای کود
@ -4314,6 +4318,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,فرمول
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,سریال #
DocType: Lab Test Template,Lab Test Template,آزمایش آزمایشی
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,حساب فروش
DocType: Purchase Invoice Item,Total Weight,وزن مجموع
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,کمیسیون فروش
DocType: Offer Letter Term,Value / Description,ارزش / توضیحات
@ -4470,7 +4475,7 @@ Updated via 'Time Log'",در دقیقه به روز رسانی از طریق &#3
DocType: Customer,From Lead,از سرب
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,سفارشات برای تولید منتشر شد.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,انتخاب سال مالی ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,نمایش POS مورد نیاز برای ایجاد POS ورود
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,نمایش POS مورد نیاز برای ایجاد POS ورود
DocType: Program Enrollment Tool,Enroll Students,ثبت نام دانش آموزان
DocType: Lab Test,Approved Date,تاریخ تأیید
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,فروش استاندارد
@ -4546,7 +4551,7 @@ DocType: Employee,Held On,برگزار
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,مورد تولید
,Employee Information,اطلاعات کارمند
DocType: Stock Entry Detail,Additional Cost,هزینه های اضافی
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher",می توانید بر روی کوپن نه فیلتر بر اساس، در صورتی که توسط کوپن گروه بندی
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher",می توانید بر روی کوپن نه فیلتر بر اساس، در صورتی که توسط کوپن گروه بندی
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,را عین تامین کننده
DocType: Quality Inspection,Incoming,وارد شونده
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,قالب های پیش فرض مالی برای فروش و خرید ایجاد می شوند.
@ -4563,7 +4568,7 @@ DocType: Batch,Batch ID,دسته ID
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},توجه: {0}
,Delivery Note Trends,روند تحویل توجه داشته باشید
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,خلاصه این هفته
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,در انبار تعداد
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,در انبار تعداد
DocType: Delivery Trip,Calculate Estimated Arrival Times,محاسبه زمان ورود تخمینی
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,حساب: {0} تنها می تواند از طریق معاملات سهام به روز شده
DocType: Student Group Creation Tool,Get Courses,دوره های
@ -4579,7 +4584,7 @@ DocType: Purchase Order,To Bill,به بیل
DocType: Material Request,% Ordered,مرتب٪
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.",برای دوره بر اساس گروه دانشجویی، دوره خواهد شد برای هر دانشجو از دوره های ثبت نام شده در برنامه ثبت نام تایید شده است.
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,کار از روی مقاطعه
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,اوسط نرخ خرید
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,اوسط نرخ خرید
DocType: Task,Actual Time (in Hours),زمان واقعی (در ساعت)
DocType: Employee,History In Company,تاریخچه در شرکت
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},پیام جدید از {sender}
@ -4627,7 +4632,7 @@ DocType: Asset Repair,Asset Repair,تعمیرات دارایی
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},ردیف {0}: ارز BOM # در {1} باید به ارز انتخاب شده برابر باشد {2}
DocType: Journal Entry Account,Exchange Rate,مظنهء ارز
DocType: Patient,Additional information regarding the patient,اطلاعات اضافی مربوط به بیمار
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,سفارش فروش {0} است ارسال نشده
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,سفارش فروش {0} است ارسال نشده
DocType: Homepage,Tag Line,نقطه حساس
DocType: Fee Component,Fee Component,هزینه یدکی
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,مدیریت ناوگان
@ -4839,7 +4844,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,ارزیابی جزئ
DocType: Employee Education,Employee Education,آموزش و پرورش کارمند
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,گروه مورد تکراری در جدول گروه مورد
DocType: Land Unit,Parent Land Unit,واحد زمین والدین
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,آن را به واکشی اطلاعات مورد نیاز است.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,آن را به واکشی اطلاعات مورد نیاز است.
DocType: Fertilizer,Fertilizer Name,نام کود
DocType: Salary Slip,Net Pay,پرداخت خالص
DocType: Account,Account,حساب
@ -4918,7 +4923,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),تعداد واقعی
DocType: Item Customer Detail,Ref Code,کد
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,گروه مشتری در مشخصات اعتبار مورد نیاز است
apps/erpnext/erpnext/config/hr.py +12,Employee records.,سوابق کارکنان.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,لطفا بعد تاریخ استهلاک
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,لطفا بعد تاریخ استهلاک
DocType: HR Settings,Payroll Settings,تنظیمات حقوق و دستمزد
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,مطابقت فاکتورها غیر مرتبط و پرداخت.
DocType: POS Settings,POS Settings,تنظیمات POS
@ -5085,7 +5090,7 @@ DocType: Item,Customer Code,کد مشتری
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},یادآوری تاریخ تولد برای {0}
DocType: Asset Maintenance Task,Last Completion Date,آخرین تاریخ تکمیل
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,روز پس از آخرین سفارش
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,بدهکاری به حساب کاربری باید یک حساب ترازنامه شود
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,بدهکاری به حساب کاربری باید یک حساب ترازنامه شود
DocType: Buying Settings,Naming Series,نامگذاری سری
DocType: Leave Block List,Leave Block List Name,ترک نام فهرست بلوک
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,تاریخ بیمه شروع باید کمتر از تاریخ پایان باشد بیمه
@ -5211,6 +5216,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,مطلع مطالب پرداخت
DocType: Quotation Item,Against Docname,علیه Docname
DocType: SMS Center,All Employee (Active),همه کارکنان (فعال)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,مشتری&gt; گروه مشتری&gt; قلمرو
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,مشاهده در حال حاضر
DocType: BOM,Raw Material Cost,هزینه مواد خام
DocType: Item Reorder,Re-Order Level,ترتیب سطح
@ -5309,7 +5315,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,گنجایش
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,آزمایشگاه آزمایشگاه
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,مشتری&gt; گروه مشتری&gt; قلمرو
DocType: Project,Total Expense Claim (via Expense Claims),مجموع ادعای هزینه (از طریق ادعاهای هزینه)
DocType: GST Settings,GST Summary,GST خلاصه
DocType: Assessment Result,Total Score,نمره کل
@ -5322,7 +5327,7 @@ DocType: Batch,Source Document Type,منبع نوع سند
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,برنامه های دوره ای ایجاد شد
DocType: Journal Entry,Total Debit,دبیت مجموع
DocType: Manufacturing Settings,Default Finished Goods Warehouse,به طور پیش فرض به پایان رسید کالا انبار
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,فروشنده
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,فروشنده
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,بودجه و هزینه مرکز
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,حالت پیش پرداخت چندگانه مجاز نیست
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,برای
@ -5495,7 +5500,7 @@ DocType: Program,Program Name,نام برنامه
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,مالیات و یا هزینه در نظر بگیرید برای
DocType: Driver,Driving License Category,رده مجوز رانندگی
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,تعداد واقعی الزامی است
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0} در حال حاضر یک کارت امتیازی ارائه کننده {1} دارد و سفارشات خرید به این فروشنده باید با احتیاط صادر شود.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0} در حال حاضر یک کارت امتیازی ارائه کننده {1} دارد و سفارشات خرید به این فروشنده باید با احتیاط صادر شود.
DocType: Asset Maintenance Team,Asset Maintenance Team,تیم پشتیبانی دارایی
DocType: Employee Loan,Loan Type,نوع وام
DocType: Scheduling Tool,Scheduling Tool,ابزار برنامه ریزی

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,Lab Prescription
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,Lajittele Hinta
,Delay Days,Viivepäivät
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,palvelu Expense
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},Sarjanumero: {0} on jo viitattu myyntilasku: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},Sarjanumero: {0} on jo viitattu myyntilasku: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,lasku
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,Tee säilytyskurssi
DocType: Purchase Invoice Item,Item Weight Details,Kohde Painon tiedot
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,Pääselostuksen docname
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","Viite: {0}, kohta Koodi: {1} ja Asiakas: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,Kg
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,Avaaminen ja työn.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},BOM: tä ei ole määritetty alihankintakohteeseen {0} rivillä {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},BOM: tä ei ole määritetty alihankintakohteeseen {0} rivillä {1}
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} Tulos toimitettu
DocType: Item Attribute,Increment,Lisäys
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,Aikajänne
@ -150,7 +150,7 @@ DocType: Patient,Married,Naimisissa
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},Ei saa {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,Hae nimikkeet
DocType: Price List,Price Not UOM Dependant,Hinta ei ole UOM riippuvainen
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},varastoa ei voi päivittää lähetettä vastaan {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},varastoa ei voi päivittää lähetettä vastaan {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},Tuotteen {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,Ei luetellut
DocType: Asset Repair,Error Description,Virhe Kuvaus
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,Yhteensovitus
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,päivittäistavara
DocType: Quality Inspection Reading,Reading 1,Lukema 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,Eläkerahastot
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,Seuraava Poistot Date ei voi olla ennen Ostopäivä
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,Seuraava Poistot Date ei voi olla ennen Ostopäivä
DocType: Crop,Perennial,Monivuotinen
DocType: Consultation,Consultation Date,Kuulemispäivämäärä
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,Tuoteluettelon ja löytämisen ERP: n käyttäjille
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,Poiston kustannuspaikka
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""",esimerkiksi &quot;Primary School&quot; tai &quot;University&quot;
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,Perusraportit
DocType: Warehouse,Warehouse Detail,Varaston lisätiedot
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},asiakkaan {0} luottoraja on ylittynyt: {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},asiakkaan {0} luottoraja on ylittynyt: {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,Term Päättymispäivä ei voi olla myöhemmin kuin vuosi Päättymispäivä Lukuvuoden johon termiä liittyy (Lukuvuosi {}). Korjaa päivämäärät ja yritä uudelleen.
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","&quot;Is Fixed Asset&quot; ei voi olla valitsematta, koska Asset kirjaa olemassa vasten kohde"
DocType: Delivery Trip,Departure Time,Lähtöaika
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,Student Log
DocType: Quality Inspection,Get Specification Details,hae tekniset lisätiedot
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,Toimittajien sijoitusten mallit.
DocType: Lead,Interested,kiinnostunut
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,Aukko
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,Aukko
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},{0} -&gt; {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,Verojen asettaminen epäonnistui
DocType: Item,Copy From Item Group,kopioi tuoteryhmästä
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,Työsuhteen päättymisäpäivän on oltava aloituspäivän jälkeen
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,Vapaat vuodessa
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,"rivi {0}: täppää 'ennakko' kohdistettu tilille {1}, mikäli tämä on ennakkokirjaus"
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},Varasto {0} ei kuulu yritykselle {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},Varasto {0} ei kuulu yritykselle {1}
DocType: Email Digest,Profit & Loss,Voitonmenetys
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,litra
DocType: Task,Total Costing Amount (via Time Sheet),Yhteensä Costing Määrä (via Time Sheet)
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,Hinta &amp; määrä
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,Tämä perustuu liiketoimiin tätä yhtiötä vastaan. Katso yksityiskohtaisia tietoja aikajanasta
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Ilmoita automaattisen hankintapyynnön luomisesta sähköpostitse
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,kestävä
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Consultationt
DocType: Journal Entry,Multi Currency,Multi Valuutta
DocType: Opening Invoice Creation Tool,Invoice Type,lasku tyyppi
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,lähete
@ -528,7 +529,6 @@ DocType: Email Digest,Credit Balance,kredit tase
DocType: Employee,Widowed,Jäänyt leskeksi
DocType: Request for Quotation,Request for Quotation,Tarjouspyyntö
DocType: Healthcare Settings,Require Lab Test Approval,Vaaditaan Lab Test Approval
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Item Code&gt; Item Group&gt; Tuotemerkki
DocType: Salary Slip Timesheet,Working Hours,Työaika
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,Yhteensä erinomainen
DocType: Naming Series,Change the starting / current sequence number of an existing series.,muuta aloitusta / nykyselle järjestysnumerolle tai olemassa oleville sarjoille
@ -557,7 +557,7 @@ DocType: Subscription,Yearly,Vuosi
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,Syötä kustannuspaikka
DocType: Drug Prescription,Dosage,annostus
DocType: Journal Entry Account,Sales Order,Myyntitilaus
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,Myynnin keskihinta
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,Myynnin keskihinta
DocType: Assessment Plan,Examiner Name,Tutkijan Name
DocType: Lab Test Template,No Result,Ei tulosta
DocType: Purchase Invoice Item,Quantity and Rate,Määrä ja hinta
@ -605,6 +605,7 @@ DocType: Employee,Health Concerns,"terveys, huolenaiheet"
DocType: Payroll Entry,Select Payroll Period,Valitse Payroll Aika
DocType: Purchase Invoice,Unpaid,Palkaton
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,Varattu myytävänä
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Aseta henkilöstön nimeämisjärjestelmä henkilöresursseihin&gt; HR-asetukset
DocType: Packing Slip,From Package No.,pakkauksesta
DocType: Item Attribute,To Range,Vaihtuakseen
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,Arvopaperit ja talletukset
@ -629,11 +630,11 @@ DocType: Pricing Rule,Valid Upto,Voimassa asti
DocType: Training Event,Workshop,työpaja
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,Varoittaa ostotilauksia
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,Luettele muutamia asiakkaitasi. Asiakkaat voivat olla organisaatioita tai yksilöitä.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,Tarpeeksi osat rakentaa
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,Tarpeeksi osat rakentaa
DocType: POS Profile User,POS Profile User,POS-profiilin käyttäjä
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,suorat tulot
DocType: Patient Appointment,Date TIme,Treffiaika
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account",ei voi suodattaa tileittäin mkäli ryhmitelty tileittäin
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account",ei voi suodattaa tileittäin mkäli ryhmitelty tileittäin
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,hallintovirkailija
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,Yrityksen perustaminen ja verotus
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,Valitse kurssi
@ -643,7 +644,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,Erotuksen tili
DocType: Purchase Invoice,Supplier GSTIN,Toimittaja GSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,"ei voi sulkea sillä se on toisesta riippuvainen tehtävä {0}, tehtävää ei ole suljettu"
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,Syötä varasto jonne hankintapyyntö ohjataan
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,Syötä varasto jonne hankintapyyntö ohjataan
DocType: Production Order,Additional Operating Cost,lisätoimintokustannukset
DocType: Lab Test Template,Lab Routine,Lab Routine
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,kosmetiikka
@ -811,7 +812,7 @@ DocType: Employee,Passport Number,Passin numero
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Suhde Guardian2
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,Hallinta
DocType: Payment Entry,Payment From / To,Maksaminen / To
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Uusi luottoraja on pienempi kuin nykyinen jäljellä asiakkaalle. Luottoraja on oltava atleast {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Uusi luottoraja on pienempi kuin nykyinen jäljellä asiakkaalle. Luottoraja on oltava atleast {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},Aseta tili Warehouse {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,'perustaja' ja 'ryhmä' ei voi olla samat
DocType: Sales Person,Sales Person Targets,Myyjän tavoitteet
@ -822,7 +823,7 @@ DocType: Lab Test Template,Compound,Yhdiste
DocType: Student Batch Name,Batch Name,erä Name
DocType: Fee Validity,Max number of visit,Vierailun enimmäismäärä
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,Tuntilomake luotu:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},Valitse oletusmaksutapa kassa- tai pankkitili maksulle {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},Valitse oletusmaksutapa kassa- tai pankkitili maksulle {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,kirjoittautua
DocType: GST Settings,GST Settings,GST Asetukset
DocType: Selling Settings,Customer Naming By,asiakkaan nimennyt
@ -946,7 +947,7 @@ DocType: Delivery Note,Customer's Purchase Order No,asiakkaan ostotilaus numero
DocType: Budget,Budget Against,Budget Against
DocType: Employee,Cell Number,solunumero
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,"Ei ole työntekijää annettuihin kriteereihin. Tarkista, että palkkapeltoja ei ole vielä luotu."
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,Automaattinen hankintapyyntö luotu
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,Automaattinen hankintapyyntö luotu
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,Hävitty
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,kyseistä tositetta ei voi kohdistaa 'päiväkirjakirjaus' sarakkeessa
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,Varattu valmistus
@ -954,7 +955,7 @@ DocType: Soil Texture,Sand,Hiekka
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,energia
DocType: Opportunity,Opportunity From,tilaisuuteen
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,kuukausipalkka tosite
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Rivi {0}: {1} Sarjanumerot kohdasta {2}. Olet antanut {3}.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Rivi {0}: {1} Sarjanumerot kohdasta {2}. Olet antanut {3}.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,Valitse taulukko
DocType: BOM,Website Specifications,Verkkosivuston tiedot
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients','Vastaanottajat' luettelossa on virheellinen sähköpostiosoite {0}
@ -1023,7 +1024,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,Pyydetty pyyntö
DocType: Vital Signs,Heart Rate / Pulse,Syke / pulssi
DocType: Company,Default Bank Account,oletus pankkitili
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first",Valitse osapuoli tyyppi saadaksesi osapuolen mukaisen suodatuksen
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first",Valitse osapuoli tyyppi saadaksesi osapuolen mukaisen suodatuksen
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},"'Päivitä varasto' ei voida käyttää tuotteille, joita ei ole toimitettu {0} kautta"
DocType: Vehicle,Acquisition Date,Hankintapäivä
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,Nos
@ -1047,7 +1048,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),Lähetä kirjeesi pään (Pidä se web friendly kuin 900px 100px)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: Tili {2} ei voi olla ryhmä
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,Kohta Rivi {idx}: {DOCTYPE} {DOCNAME} ei ole olemassa edellä {DOCTYPE} table
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,Tuntilomake {0} on jo täytetty tai peruttu
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,Tuntilomake {0} on jo täytetty tai peruttu
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,ei tehtäviä
DocType: Item Variant Settings,Copy Fields to Variant,Kopioi kentät versioksi
DocType: Asset,Opening Accumulated Depreciation,Avaaminen Kertyneet poistot
@ -1159,9 +1160,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,Suunnittele materiaalit alituotantoon
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,Myynnin Partners ja Territory
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,BOM {0} tulee olla aktiivinen
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),Sulkeminen (avaaminen + yhteensä)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),Sulkeminen (avaaminen + yhteensä)
DocType: Journal Entry,Depreciation Entry,Poistot Entry
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Valitse ensin asiakirjan tyyppi
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,Tulosta tili-valuuttaan
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Peru materiaalikäynti {0} ennen huoltokäynnin perumista
DocType: Crop Cycle,ISO 8016 standard,ISO 8016 -standardi
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},Sarjanumero {0} ei kuulu tuotteelle {1}
@ -1187,7 +1189,7 @@ DocType: Purchase Receipt,Range,Alue
DocType: Supplier,Default Payable Accounts,oletus maksettava tilit
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,Työntekijä {0} ei ole aktiivinen tai sitä ei ole olemassa
DocType: Fee Structure,Components,komponentit
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},Syötä Asset Luokka momentille {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},Syötä Asset Luokka momentille {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,Tuotemallit {0} päivitetty
DocType: Quality Inspection Reading,Reading 6,Lukema 6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1239,6 +1241,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,Yrityksen nimi
DocType: SMS Center,Total Message(s),viestit yhteensä
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,Valitse siirrettävä tuote
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Aseta Naming-sarja {0} asetukseksi Setup&gt; Settings&gt; Naming Series
DocType: Purchase Invoice,Additional Discount Percentage,Lisäalennusprosentti
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,Katso luettelo kaikista ohjevideot
DocType: Agriculture Analysis Criteria,Soil Texture,Maaperän rakenne
@ -1266,7 +1269,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,BOM-sivuston Kohta
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,Tuo kirjeen ylätunniste ja logo. (voit muokata niitä myöhemmin)
DocType: Timesheet Detail,Bill,Laskuttaa
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,Seuraavaksi Poistot Date kirjataan ohi päivämäärä
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,Seuraavaksi Poistot Date kirjataan ohi päivämäärä
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,Valkoinen
DocType: SMS Center,All Lead (Open),Kaikki Liidit (Avoimet)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),Rivi {0}: Määrä ei saatavilla {4} varasto {1} klo lähettämistä tullessa ({2} {3})
@ -1282,7 +1285,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,seuraava yhteydenottopvä
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,Avaus yksikkömäärä
DocType: Healthcare Settings,Appointment Reminder,Nimitysohje
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,Anna Account for Change Summa
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,Anna Account for Change Summa
DocType: Program Enrollment Tool Student,Student Batch Name,Opiskelijan Erä Name
DocType: Consultation,Doctor,Lääkäri
DocType: Holiday List,Holiday List Name,lomaluettelo nimi
@ -1298,6 +1301,7 @@ DocType: Patient,Patient Relation,Potilaan suhde
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,Vapaiden kohdistustyökalu
DocType: Item,Hub Category to Publish,Hub Luokka julkaista
DocType: Leave Block List,Leave Block List Dates,"poistu estoluettelo, päivät"
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Aseta numeerinen sarja osallistumiselle Setup&gt; Numerosarjan kautta
DocType: Sales Invoice,Billing Address GSTIN,Laskutusosoite GSTIN
DocType: Assessment Plan,Evaluate,Arvioida
DocType: Workstation,Net Hour Rate,tuntihinta (netto)
@ -1331,7 +1335,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,Saapumistositteen nimike
DocType: Purchase Receipt,PREC-RET-,PREC-jälkikä-
DocType: POS Profile,Sales Invoice Payment,Myynnin lasku Payment
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,varattu varastosta myyntitilaukseen / valmiit tuotteet varastoon
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,Myynnin arvomäärä
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,Myynnin arvomäärä
DocType: Repayment Schedule,Interest Amount,Korko Arvo
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,"Olet tämän tietueen hyväksyjä, päivitä 'tila' ja tallenna"
DocType: Serial No,Creation Document No,Dokumentin luonti nro
@ -1422,7 +1426,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,Avaa kirjanpidon tase
,GST Sales Register,GST Sales Register
DocType: Sales Invoice Advance,Sales Invoice Advance,"Myyntilasku, ennakko"
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,Ei mitään pyydettävää
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,Ei mitään pyydettävää
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,Valitse verkkotunnuksesi
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},Toinen Budget record &#39;{0}&#39; on jo olemassa vastaan {1} {2} &#39;verovuodelta {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,Kentät kopioidaan vain luomisajankohtana.
@ -1432,11 +1436,11 @@ DocType: Cheque Print Template,Payer Settings,Maksajan Asetukset
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","Tämä liitetään mallin tuotenumeroon esim, jos lyhenne on ""SM"" ja tuotekoodi on ""T-PAITA"", mallin tuotekoodi on ""T-PAITA-SM"""
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,Nettomaksu (sanoina) näkyy kun tallennat palkkalaskelman.
DocType: Purchase Invoice,Is Return,on palautus
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,varovaisuus
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,varovaisuus
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,Tuotto / veloitusilmoituksen
DocType: Price List Country,Price List Country,Hinnasto Maa
DocType: Item,UOMs,Mittayksiköt
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} oikea sarjanumero (nos) tuotteelle {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} oikea sarjanumero (nos) tuotteelle {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,sarjanumeron tuotekoodia ei voi vaihtaa
DocType: Purchase Invoice Item,UOM Conversion Factor,Mittayksikön muuntokerroin
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,Syötä tuotenumero saada eränumero
@ -1540,7 +1544,7 @@ DocType: Journal Entry,Get Outstanding Invoices,hae odottavat laskut
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,Myyntitilaus {0} ei ole kelvollinen
DocType: Supplier Scorecard,Warn for new Request for Quotations,Varo uutta tarjouspyyntöä
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,Ostotilaukset auttaa suunnittelemaan ja seurata ostoksistasi
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged",Yhtiöitä ei voi yhdistää
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged",Yhtiöitä ei voi yhdistää
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,Lab Test Prescriptions
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",Nimikkeen {3} kokonaismäärä {0} ei voi ylittää hankintapyynnön {1} tarvemäärää {2}
@ -1578,7 +1582,6 @@ DocType: Vehicle,Fuel UOM,Polttoaine UOM
DocType: Warehouse,Warehouse Contact Info,Varaston yhteystiedot
DocType: Payment Entry,Write Off Difference Amount,Kirjoita Off Ero Määrä
DocType: Volunteer,Volunteer Name,Vapaaehtoinen nimi
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Aseta Instructor Naming System in Education&gt; Koulutusasetukset
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0}: Työntekijän sähköpostiosoitetta ei löytynyt, joten sähköpostia ei lähetetty"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},Toimitussääntö ei koske maata {0}
DocType: Item,Foreign Trade Details,Ulkomaankauppa Yksityiskohdat
@ -1590,7 +1593,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,Ryhmä rullanumero
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry","{0}, vain kredit tili voidaan kohdistaa debet kirjaukseen"
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,Yhteensä Kaikkien tehtävän painojen tulisi olla 1. Säädä painoja Project tehtävien mukaisesti
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,Lähete {0} ei ole vahvistettu
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,Lähete {0} ei ole vahvistettu
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,Nimikkeen {0} pitää olla alihankittava nimike
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,käyttöomaisuuspääoma
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Hinnoittelusääntö tulee ensin valita 'käytä tässä' kentästä, joka voi olla tuote, tuoteryhmä tai brändi"
@ -1615,7 +1618,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,Lapsi varasto olemassa tähän varastoon. Et voi poistaa tätä varasto.
DocType: Item,Website Item Groups,Tuoteryhmien verkkosivu
DocType: Purchase Invoice,Total (Company Currency),Yhteensä (yrityksen valuutta)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,Sarjanumero {0} kirjattu useammin kuin kerran
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,Sarjanumero {0} kirjattu useammin kuin kerran
DocType: Journal Entry,Journal Entry,päiväkirjakirjaus
DocType: Expense Claim Advance,Unclaimed amount,Velvoittamaton määrä
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} kohdetta käynnissä
@ -1711,7 +1714,7 @@ DocType: Email Digest,For Company,Yritykselle
apps/erpnext/erpnext/config/support.py +17,Communication log.,Viestintäloki
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.",Tarjouspyyntö on lopetettu pääsy portaalin enemmän tarkistaa portaalin asetuksia.
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,Toimittajan tuloskortin pisteytysmuuttuja
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,Oston määrä
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,Oston määrä
DocType: Sales Invoice,Shipping Address Name,Toimitusosoitteen nimi
DocType: Material Request,Terms and Conditions Content,Ehdot ja säännöt sisältö
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,Kurssin aikataulua luotiin virheitä
@ -1974,7 +1977,7 @@ DocType: Expense Claim,Total Amount Reimbursed,Hyvitys yhteensä
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,Tämä perustuu tukkien vastaan Vehicle. Katso aikajana lisätietoja alla
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},toimittajan ostolaskun kohdistus {0} päiväys {1}
DocType: Customer,Default Price List,oletus hinnasto
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,Asset Movement record {0} luotu
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,Asset Movement record {0} luotu
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,Et voi poistaa tilikautta {0}. Tilikausi {0} on asetettu oletustilikaudeksi järjestelmäasetuksissa.
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,Saman nimen omaava asiakas on jo olemassa
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,Tämä lähettää palkkapäiväsijoitukset ja luo suoritepäiväkirja-merkinnän. Haluatko edetä?
@ -1988,6 +1991,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,Hinnoittelu
DocType: Quotation,Term Details,Ehdon lisätiedot
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,Ei voi ilmoittautua enintään {0} opiskelijat tälle opiskelijaryhmälle.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),Yhteensä (ilman veroa)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,lyijy Count
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} on oltava suurempi kuin 0
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,Varastossa saatavilla
@ -2006,7 +2010,6 @@ DocType: Lab Test,Technician Name,Tekniikan nimi
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,Linkityksen Maksu mitätöinti Lasku
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},Matkamittarin lukema merkitään pitäisi olla suurempi kuin alkuperäisen ajoneuvon matkamittarin {0}
DocType: Restaurant Reservation,No Show,Ei näytä
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Aseta Naming-sarja {0} asetukseksi Setup&gt; Settings&gt; Naming Series
DocType: Shipping Rule Country,Shipping Rule Country,Toimitustavan maa
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,Vapaat ja läsnäolot
DocType: Maintenance Visit,Partially Completed,Osittain Valmis
@ -2097,7 +2100,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,Opiskelijaryhmän Ohjaaja
DocType: Grant Application,Assessment Mark (Out of 10),Arviointimerkki (kymmenestä)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 Mobile Ei
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,Tärkein
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,Tärkein
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,Malli
DocType: Naming Series,Set prefix for numbering series on your transactions,Aseta sarjojen numeroinnin etuliite tapahtumiin
DocType: Employee Attendance Tool,Employees HTML,Työntekijät HTML
@ -2145,7 +2148,7 @@ DocType: Crop,Crop Spacing,Rajaa väli
DocType: Course,Course Abbreviation,Course lyhenne
DocType: Student Leave Application,Student Leave Application,Student Jätä Application
DocType: Item,Will also apply for variants,Sovelletaan myös tuotemalleissa
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","Asset ei voi peruuttaa, koska se on jo {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","Asset ei voi peruuttaa, koska se on jo {0}"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},Työntekijän {0} Half päivä {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},Yhteensä työaika ei saisi olla suurempi kuin max työaika {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,Päällä
@ -2329,9 +2332,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),Todellinen Lopetuspäivä (via kellokortti)
DocType: Soil Texture,Soil Type,Maaperätyyppi
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},Määrä {0} {1} vastaan {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,Uusi viesti
,Quotation Trends,Tarjousten kehitys
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},tuotteen {0} tuoteryhmää ei ole mainittu kohdassa tuote työkalu
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,tilin debet tulee olla saatava tili
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,tilin debet tulee olla saatava tili
DocType: Shipping Rule,Shipping Amount,Toimituskustannus arvomäärä
DocType: Supplier Scorecard Period,Period Score,Ajanjakso
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,Lisää Asiakkaat
@ -2342,7 +2346,7 @@ DocType: Purchase Order,Delivered,toimitettu
,Vehicle Expenses,ajoneuvojen kulut
DocType: Serial No,Invoice Details,laskun tiedot
DocType: Grant Application,Show on Website,Näytä verkkosivustolla
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},"Odotettu arvo sen jälkeen, kun käyttöiän on oltava suurempi tai yhtä suuri kuin {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},"Odotettu arvo sen jälkeen, kun käyttöiän on oltava suurempi tai yhtä suuri kuin {0}"
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,Aloita
DocType: Hub Category,Hub Category,Hub-luokka
DocType: Purchase Invoice,SEZ,SEZ
@ -2373,7 +2377,7 @@ DocType: Patient,Patient Details,Potilastiedot
DocType: Patient,B Positive,B Positiivinen
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","Rivi # {0}: Määrä on 1, kun kohde on kiinteän omaisuuden. Käytä erillistä rivi useita kpl."
DocType: Leave Block List Allow,Leave Block List Allow,Salli
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,lyhenne ei voi olla tyhjä tai välilyönti
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,lyhenne ei voi olla tyhjä tai välilyönti
DocType: Patient Medical Record,Patient Medical Record,Potilaan lääketieteellinen tietue
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,Ryhmä Non-ryhmän
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,urheilu
@ -2423,6 +2427,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,Vastaanotettua pyyntöä ei voi määrittää Ei lainkaan
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,Vähennys yhteensä
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,"Valitse tili, jonka haluat tulostaa tilin valuuttana"
,Production Analytics,Tuotanto-analytiikka
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,Tämä perustuu potilaaseen kohdistuviin liiketoimiin. Katso lisätietoja alla olevasta aikataulusta
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,kustannukset päivitetty
@ -2477,7 +2482,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,Kohta
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,Valitse yritys...
DocType: Leave Control Panel,Leave blank if considered for all departments,tyhjä mikäli se pidetään vaihtoehtona kaikilla osastoilla
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","työsopimuksen tyypit (jatkuva, sopimus, sisäinen jne)"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} on pakollinen tuotteelle {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} on pakollinen tuotteelle {1}
DocType: Payroll Entry,Fortnightly,joka toinen viikko
DocType: Currency Exchange,From Currency,valuutasta
DocType: Vital Signs,Weight (In Kilogram),Paino (kilogrammoina)
@ -2553,7 +2558,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),Basic Summa (Company val
DocType: Student,Guardians,Guardians
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,"Hinnat ei näytetä, jos hinnasto ei ole asetettu"
DocType: Stock Entry,Total Incoming Value,"Kokonaisarvo, saapuva"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,Veloituksen tarvitaan
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,Veloituksen tarvitaan
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Tuntilomakkeet auttavat seuraamaan aikaa, kustannuksia ja laskutusta tiimisi toiminnasta."
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,Ostohinta List
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,Toimittajan tuloskortin muuttujien mallipohjat.
@ -2654,7 +2659,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,vain viitteeksi
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},Lääkäri {0} ei ole käytettävissä {1}
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,Valitse Erä
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},virheellinen {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},virheellinen {0}: {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-jälkikä-
DocType: Fee Validity,Reference Inv,Viite Inv
@ -2691,8 +2696,8 @@ DocType: Fees,Send Payment Request,Lähetä maksupyyntö
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","määritä toiminnot, käyttökustannukset ja anna toiminnoille oma uniikki numero"
DocType: Water Analysis,Origin,alkuperä
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,Tämä asiakirja on yli rajan {0} {1} alkion {4}. Teetkö toisen {3} vasten samalla {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,Ole hyvä ja aseta toistuvuustieto vasta lomakkeen tallentamisen jälkeen.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,Valitse muutoksen suuruuden tili
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,Ole hyvä ja aseta toistuvuustieto vasta lomakkeen tallentamisen jälkeen.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,Valitse muutoksen suuruuden tili
DocType: Purchase Invoice,Price List Currency,"Hinnasto, valuutta"
DocType: Naming Series,User must always select,Käyttäjän tulee aina valita
DocType: Stock Settings,Allow Negative Stock,salli negatiivinen varastoarvo
@ -2748,7 +2753,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,huoltoaikataulu
DocType: Supplier Scorecard,Warn for new Purchase Orders,Varo uusia ostotilauksia
DocType: Quality Inspection Reading,Reading 9,Lukema 9
DocType: Supplier,Is Frozen,on jäädytetty
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,Ryhmä solmu varasto ei saa valita liiketoimien
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,Ryhmä solmu varasto ei saa valita liiketoimien
DocType: Buying Settings,Buying Settings,Oston asetukset
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,BOM nro valmiille tuotteelle
DocType: Upload Attendance,Attendance To Date,osallistuminen päivään
@ -2762,6 +2767,7 @@ DocType: Offer Letter,Accepted,hyväksytyt
DocType: Grant Application,Organization,organisaatio
DocType: BOM Update Tool,BOM Update Tool,BOM-päivitystyökalu
DocType: SG Creation Tool Course,Student Group Name,Opiskelijan Group Name
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,Näytä räjähdysnäkymä
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,Maksujen luominen
apps/erpnext/erpnext/setup/doctype/company/company.js +91,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.,"Haluatko varmasti poistaa kaikki tämän yrityksen tapahtumat, päätyedostosi säilyy silti entisellään, tätä toimintoa ei voi peruuttaa"
DocType: Room,Room Number,Huoneen numero
@ -2772,7 +2778,7 @@ DocType: Journal Entry Account,Payroll Entry,Palkkasumma
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,Tee veromalli
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,Keskustelupalsta
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,Raaka-aineet ei voi olla tyhjiä
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","Ei voinut päivittää hyllyssä, lasku sisältää pudota merenkulku erä."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","Ei voinut päivittää hyllyssä, lasku sisältää pudota merenkulku erä."
DocType: Lab Test Sample,Lab Test Sample,Lab Test -näyte
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,Nopea Päiväkirjakirjaus
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,"hintaa ei voi muuttaa, jos BOM liitetty johonkin tuotteeseen"
@ -2843,7 +2849,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,USD
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,tee Lasku
DocType: Selling Settings,Auto close Opportunity after 15 days,Auto lähellä Mahdollisuus 15 päivän jälkeen
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,"Ostosopimukset eivät ole sallittuja {0}, koska tulosvastine on {1}."
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,"Ostosopimukset eivät ole sallittuja {0}, koska tulosvastine on {1}."
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,end Year
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Quot / Lyijy%
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,sopimuksen päättymispäivä tulee olla liittymispäivän jälkeen
@ -2935,7 +2941,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90 ja yli
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,Rivi # {0}: Päiväkirjakirjaus {1} ei ole huomioon {2} tai jo sovitettu toista voucher
DocType: Supplier Scorecard Criteria,Criteria Weight,Kriteerit Paino
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Toimittaja&gt; Toimittajan tyyppi
DocType: Buying Settings,Default Buying Price List,Ostohinnasto (oletus)
DocType: Payroll Entry,Salary Slip Based on Timesheet,Palkka tuntilomakkeen mukaan
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,Ostaminen
@ -3023,7 +3028,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,Seuraa vihjeitä toimialan mukaan
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,Siirry kirjelomakkeisiin
DocType: Item Supplier,Item Supplier,tuote toimittaja
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,Syötä tuotekoodi saadaksesi eränumeron
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,Syötä tuotekoodi saadaksesi eränumeron
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},Syötä arvot tarjouksesta {0} tarjoukseen {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,kaikki osoitteet
DocType: Company,Stock Settings,varastoasetukset
@ -3200,6 +3205,7 @@ DocType: Employee Loan,Loan Details,Loan tiedot
DocType: Company,Default Inventory Account,Oletus Inventory Tili
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,Rivi {0}: Valmis Määrä on oltava suurempi kuin nolla.
DocType: Antibiotic,Antibiotic Name,Antibioottin nimi
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Item Code&gt; Item Group&gt; Tuotemerkki
DocType: Purchase Invoice,Apply Additional Discount On,käytä lisäalennusta
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,Valitse tyyppi ...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,"Linkki kaikkiin maayksiköihin, joissa viljely kasvaa"
@ -3393,6 +3399,7 @@ DocType: Guardian Student,Guardian Student,Guardian Student
DocType: Supplier,Credit Limit,luottoraja
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,Keskim. Myynnin hinnasto
DocType: Production Plan Sales Order,Salse Order Date,Salse Tilauksen päivämäärä
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Toimittaja&gt; Toimittajan tyyppi
DocType: Salary Component,Salary Component,Palkanosasta
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,Maksu merkinnät {0} ovat un sidottu
DocType: GL Entry,Voucher No,Tosite nro
@ -3401,7 +3408,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,Suosituin
DocType: Leave Allocation,Leave Allocation,Vapaan kohdistus
DocType: Payment Request,Recipient Message And Payment Details,Vastaanottaja Message ja maksutiedot
DocType: Training Event,Trainer Email,Trainer Sähköposti
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,Hankintapyyntöjä luotu {0}
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,Hankintapyyntöjä luotu {0}
DocType: Restaurant Reservation,No of People,Ihmisten määrä
DocType: Production Planning Tool,Include sub-contracted raw materials,Sisällytä alihankintaa raaka
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,Sopimusehtojen mallipohja
@ -3465,7 +3472,7 @@ DocType: Landed Cost Item,Receipt Document,kuitti Document
DocType: Production Planning Tool,Create Material Requests,Luo hankintapyyntö
DocType: Employee Education,School/University,Koulu/Yliopisto
DocType: Payment Request,Reference Details,Viite Tietoja
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,Odotusarvo jälkeen käyttöiän on oltava alle Gross Purchase Määrä
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,Odotusarvo jälkeen käyttöiän on oltava alle Gross Purchase Määrä
DocType: Sales Invoice Item,Available Qty at Warehouse,saatava varaston yksikkömäärä
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,laskutettu
DocType: Asset,Double Declining Balance,Double jäännösarvopoisto
@ -3477,7 +3484,7 @@ DocType: Attendance,On Leave,lomalla
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,Liity sähköpostilistalle
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: Tili {2} ei kuulu yhtiön {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,Valitse ainakin yksi arvo kustakin attribuutista.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,Hankintapyyntö {0} on peruttu tai keskeytetty
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,Hankintapyyntö {0} on peruttu tai keskeytetty
apps/erpnext/erpnext/config/hr.py +310,Leave Management,Vapaiden hallinta
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,tilin ryhmä
DocType: Sales Order,Fully Delivered,täysin toimitettu
@ -3488,14 +3495,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},Maksettu summa ei voi olla suurempi kuin lainan määrä {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,Siirry kohtaan Ohjelmat
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},Rivi {0} # Sallittu määrä {1} ei voi olla suurempi kuin lunastamaton summa {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Aseta numeerinen sarja osallistumiselle Setup&gt; Numerosarjan kautta
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},Ostotilauksen numero vaaditaan tuotteelle {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,Tuotantotilaus ei luonut
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',Aloituspäivän tulee olla ennen päättymispäivää
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},Ei voida muuttaa asemaa opiskelija {0} liittyy opiskelijavalinta {1}
DocType: Asset,Fully Depreciated,täydet poistot
,Stock Projected Qty,ennustettu varaston yksikkömäärä
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},asiakas {0} ei kuulu projektiin {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},asiakas {0} ei kuulu projektiin {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,Merkitty Läsnäolo HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers","Lainaukset ovat ehdotuksia, tarjouksia olet lähettänyt asiakkaille"
DocType: Sales Order,Customer's Purchase Order,Asiakkaan Ostotilaus
@ -3579,7 +3585,7 @@ DocType: Salary Slip,Hour Rate,tuntitaso
DocType: Stock Settings,Item Naming By,tuotteen nimeäjä
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},toinen jakson sulkukirjaus {0} on tehty {1} jälkeen
DocType: Production Order,Material Transferred for Manufacturing,Tuotantoon siirretyt materiaalit
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,Tiliä {0} ei löydy
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,Tiliä {0} ei löydy
DocType: Project,Project Type,projektin tyyppi
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,Tätä tehtävää varten on tehtävä lapsesi tehtävä. Et voi poistaa tätä tehtävää.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,tavoite yksikkömäärä tai tavoite arvomäärä vaaditaan
@ -3681,11 +3687,11 @@ DocType: C-Form,I,minä
DocType: Company,Asset Depreciation Cost Center,Poistojen kustannuspaikka
DocType: Sales Order Item,Sales Order Date,"Myyntitilaus, päivä"
DocType: Sales Invoice Item,Delivered Qty,toimitettu yksikkömäärä
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,Kokonaissumma Verottaa
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.",Valittuna kaikkien tuotantonimikkeiden alarakenteista luodaan hankintapyynnöt
DocType: Assessment Plan,Assessment Plan,arviointi Plan
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,Asiakas {0} luodaan.
DocType: Stock Settings,Limit Percent,raja Prosenttia
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Aseta Instructor Naming System in Education&gt; Koulutusasetukset
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,"Tällä hetkellä ei varastossa,"
,Payment Period Based On Invoice Date,Maksuaikaa perustuu laskun päiväykseen
DocType: Sample Collection,No. of print,Tulosteiden määrä
@ -3701,12 +3707,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),Velalliset ({0})
DocType: Pricing Rule,Margin,Marginaali
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,Uudet asiakkaat
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,bruttovoitto %
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,bruttovoitto %
DocType: Appraisal Goal,Weightage (%),Painoarvo (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,Muuta POS-profiilia
DocType: Bank Reconciliation Detail,Clearance Date,tilityspäivä
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,Arviointikertomus
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,Gross Ostoksen kokonaissumma on pakollinen
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,Gross Ostoksen kokonaissumma on pakollinen
DocType: Lead,Address Desc,osoitetiedot
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,Osapuoli on pakollinen
DocType: Journal Entry,JV-,JV-
@ -3738,7 +3744,6 @@ DocType: Account,Accumulated Depreciation,Kertyneet poistot
DocType: Supplier Scorecard Scoring Standing,Standing Name,Pysyvä nimi
DocType: Stock Entry,Customer or Supplier Details,Asiakkaan tai tavarantoimittajan Tietoja
DocType: Employee Loan Application,Required by Date,Vaaditaan Date
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),Loppusumma (Dr - Cr)
DocType: Lead,Lead Owner,Liidin vastuullinen
DocType: Bin,Requested Quantity,pyydetty määrä
DocType: Patient,Marital Status,Siviilisääty
@ -3752,7 +3757,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,Useita vaihtoehtoja
DocType: Sales Invoice,Against Income Account,tulotilin kodistus
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% toimitettu
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Nimikkeen {0}: tilattu yksikkömäärä {1} ei voi olla pienempi kuin pienin tilaus yksikkömäärä {2} (määritetty nimikkeelle)
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Nimikkeen {0}: tilattu yksikkömäärä {1} ei voi olla pienempi kuin pienin tilaus yksikkömäärä {2} (määritetty nimikkeelle)
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,"toimitus kuukaudessa, prosenttiosuus"
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,Ole hyvä ja kirjaudu sisään toisena käyttäjänä.
DocType: Territory,Territory Targets,Aluetavoite
@ -3851,7 +3856,7 @@ DocType: Program Enrollment,School House,School House
DocType: Serial No,Out of AMC,Ylläpitosopimus ei ole voimassa
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,Määrä Poistot varatut ei voi olla suurempi kuin kokonaismäärä Poistot
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,tee huoltokäynti
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,"Ota yhteyttä käyttäjään, jolla on myynninhallinnan valvojan rooli {0}"
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,"Ota yhteyttä käyttäjään, jolla on myynninhallinnan valvojan rooli {0}"
DocType: Company,Default Cash Account,oletus kassatili
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,yrityksen valvonta (ei asiakas tai toimittaja)
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,Tämä perustuu läsnäolo tämän Student
@ -4001,7 +4006,6 @@ DocType: Delivery Note Item,From Warehouse,Varastosta
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,Ei työntekijöitä mainituilla kriteereillä
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,Kohteita ei Bill materiaalien valmistus
DocType: Restaurant,Default Customer,Oletusasiakas
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Aseta henkilöstön nimeämisjärjestelmä henkilöresursseihin&gt; HR-asetukset
DocType: Assessment Plan,Supervisor Name,ohjaaja Name
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,"Älä vahvista, onko tapaaminen luotu samalle päivälle"
DocType: Program Enrollment Course,Program Enrollment Course,Ohjelma Ilmoittautuminen kurssi
@ -4119,7 +4123,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,Verkkosivuston kuvaus
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,Nettomuutos Equity
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,Uusin
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,Peru ostolasku {0} ensin
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,Peru ostolasku {0} ensin
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","Sähköpostiosoite täytyy olla yksilöllinen, on jo olemassa {0}"
DocType: Serial No,AMC Expiry Date,Ylläpidon umpeutumispäivä
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,kuitti
@ -4136,7 +4140,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,Ei Asiakkaat v
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,Rahavirtalaskelma
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},Lainamäärä voi ylittää suurin lainamäärä on {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,lisenssi
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},Poista lasku {0} C-kaaviosta {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},Poista lasku {0} C-kaaviosta {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,Valitse jatka eteenpäin mikäli haluat sisällyttää edellisen tilikauden taseen tälle tilikaudelle
DocType: GL Entry,Against Voucher Type,tositteen tyyppi kohdistus
DocType: Physician,Phone (R),Puhelin (R)
@ -4148,7 +4152,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,B Negatiivinen
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,Huoltotila on peruutettava tai tehtävä lähetettäväksi
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},Tili {0} ei kuulu yritykselle {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,Sarjanumeroita peräkkäin {0} ei vastaa lähetysluettelon
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,Sarjanumeroita peräkkäin {0} ei vastaa lähetysluettelon
DocType: Student,Guardian Details,Guardian Tietoja
DocType: C-Form,C-Form,C-muoto
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,Mark Läsnäolo useita työntekijöitä
@ -4190,7 +4194,7 @@ DocType: Opening Invoice Creation Tool,Sales,Myynti
DocType: Stock Entry Detail,Basic Amount,Perusmäärät
DocType: Training Event,Exam,Koe
DocType: Complaint,Complaint,Valitus
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},Varasto vaaditaan varastotuotteelle {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},Varasto vaaditaan varastotuotteelle {0}
DocType: Leave Allocation,Unused leaves,Käyttämättömät lehdet
DocType: Patient,Alcohol Past Use,Alkoholin aiempi käyttö
DocType: Fertilizer Content,Fertilizer Content,Lannoitteen sisältö
@ -4315,6 +4319,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,Kaava
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,Sarja #
DocType: Lab Test Template,Lab Test Template,Lab Test Template
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,Myynti tili
DocType: Purchase Invoice Item,Total Weight,Kokonaispaino
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,provisio myynti
DocType: Offer Letter Term,Value / Description,Arvo / Kuvaus
@ -4471,7 +4476,7 @@ Updated via 'Time Log'","""aikaloki"" päivitys minuuteissa"
DocType: Customer,From Lead,Liidistä
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,tuotantoon luovutetut tilaukset
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,Valitse tilikausi ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,POS profiili vaatii POS kirjauksen
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,POS profiili vaatii POS kirjauksen
DocType: Program Enrollment Tool,Enroll Students,Ilmoittaudu Opiskelijat
DocType: Lab Test,Approved Date,Hyväksytty päivämäärä
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,perusmyynti
@ -4547,7 +4552,7 @@ DocType: Employee,Held On,järjesteltiin
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,Tuotanto tuote
,Employee Information,Työntekijöiden tiedot
DocType: Stock Entry Detail,Additional Cost,Muita Kustannukset
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher",ei voi suodattaa tositenumero pohjalta mikäli tosite on ryhmässä
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher",ei voi suodattaa tositenumero pohjalta mikäli tosite on ryhmässä
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,Tee toimituskykytiedustelu
DocType: Quality Inspection,Incoming,saapuva
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,Myynnin ja ostoksen oletusmaksumalleja luodaan.
@ -4564,7 +4569,7 @@ DocType: Batch,Batch ID,Erän tunnus
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},Huomautus: {0}
,Delivery Note Trends,Lähetysten kehitys
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,Viikon yhteenveto
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,Varastossa Määrä
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,Varastossa Määrä
DocType: Delivery Trip,Calculate Estimated Arrival Times,Laske arvioitu saapumisaikasi
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,Tiliä {0} voi päivittää vain varastotapahtumien kautta
DocType: Student Group Creation Tool,Get Courses,Get Kurssit
@ -4580,7 +4585,7 @@ DocType: Purchase Order,To Bill,Laskuta
DocType: Material Request,% Ordered,% järjestetty
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.",Kurssille pohjainen opiskelija Groupin Kurssi validoitu jokaiselle oppilaalle päässä kirjoilla Kurssit Program Ilmoittautuminen.
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,Urakkatyö
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,Oston keskihinta
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,Oston keskihinta
DocType: Task,Actual Time (in Hours),todellinen aika (tunneissa)
DocType: Employee,History In Company,yrityksen historia
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},Uusi viesti {lähettäjältä}
@ -4628,7 +4633,7 @@ DocType: Asset Repair,Asset Repair,Omaisuuden korjaus
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},Rivi {0}: valuutta BOM # {1} pitäisi olla yhtä suuri kuin valittu valuutta {2}
DocType: Journal Entry Account,Exchange Rate,Valuuttakurssi
DocType: Patient,Additional information regarding the patient,Lisätietoja potilaasta
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,Myyntitilaus {0} ei ole vahvistettu
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,Myyntitilaus {0} ei ole vahvistettu
DocType: Homepage,Tag Line,Tagirivi
DocType: Fee Component,Fee Component,Fee Component
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,Kaluston hallinta
@ -4846,7 +4851,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,Arviointi Tulos Detai
DocType: Employee Education,Employee Education,työntekijä koulutus
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,Monista kohde ryhmä löysi erään ryhmätaulukkoon
DocType: Land Unit,Parent Land Unit,Vanhempainmaan yksikkö
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,Sitä tarvitaan hakemaan Osa Tiedot.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,Sitä tarvitaan hakemaan Osa Tiedot.
DocType: Fertilizer,Fertilizer Name,Lannoitteen nimi
DocType: Salary Slip,Net Pay,Nettomaksu
DocType: Account,Account,tili
@ -4925,7 +4930,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),todellinen yksikkömä
DocType: Item Customer Detail,Ref Code,Viite Koodi
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,Asiakasryhmä on pakollinen POS-profiilissa
apps/erpnext/erpnext/config/hr.py +12,Employee records.,työntekijä tietue
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,Määritä Seuraava Poistot Date
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,Määritä Seuraava Poistot Date
DocType: HR Settings,Payroll Settings,Palkanlaskennan asetukset
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,täsmää linkittämättömät maksut ja laskut
DocType: POS Settings,POS Settings,POS-asetukset
@ -5092,7 +5097,7 @@ DocType: Item,Customer Code,Asiakkaan yrityskoodi
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},Syntymäpäivämuistutus {0}
DocType: Asset Maintenance Task,Last Completion Date,Viimeinen päättymispäivä
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,päivää edellisestä tilauksesta
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,Debit tilin on oltava tase tili
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,Debit tilin on oltava tase tili
DocType: Buying Settings,Naming Series,Nimeä sarjat
DocType: Leave Block List,Leave Block List Name,nimi
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,Vakuutus Aloituspäivä pitäisi olla alle Insurance Päättymispäivä
@ -5218,6 +5223,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,Get Payment Merkinnät
DocType: Quotation Item,Against Docname,Dokumentin nimi kohdistus
DocType: SMS Center,All Employee (Active),kaikki työntekijät (aktiiviset)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Asiakas&gt; Asiakasryhmä&gt; Alue
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,Näytä nyt
DocType: BOM,Raw Material Cost,Raaka-ainekustannukset
DocType: Item Reorder,Re-Order Level,Täydennystilaustaso
@ -5316,7 +5322,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,Istumapaikkoja
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,Lab testiryhmät
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Asiakas&gt; Asiakasryhmä&gt; Alue
DocType: Project,Total Expense Claim (via Expense Claims),Kulukorvaus yhteensä (kulukorvauksesta)
DocType: GST Settings,GST Summary,GST Yhteenveto
DocType: Assessment Result,Total Score,Kokonaispisteet
@ -5329,7 +5334,7 @@ DocType: Batch,Source Document Type,Lähde Asiakirjan tyyppi
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,Seuraavat kurssisuunnitelmat luotiin
DocType: Journal Entry,Total Debit,Debet yhteensä
DocType: Manufacturing Settings,Default Finished Goods Warehouse,Valmiiden tavaroiden oletusvarasto
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,Myyjä
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,Myyjä
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,Talousarvio ja kustannuspaikka
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,Useita oletusmaksutapoja ei sallita
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,varten
@ -5502,7 +5507,7 @@ DocType: Program,Program Name,Ohjelman nimi
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,pidetään veroille tai maksuille
DocType: Driver,Driving License Category,Ajokorttiluokka
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,todellinen yksikkömäärä on pakollinen arvo
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} on tällä hetkellä {1} toimittajan tuloskortin seisominen, ja tämän toimittajan antamat ostotilaukset tulisi antaa varoen."
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} on tällä hetkellä {1} toimittajan tuloskortin seisominen, ja tämän toimittajan antamat ostotilaukset tulisi antaa varoen."
DocType: Asset Maintenance Team,Asset Maintenance Team,Omaisuudenhoitoyhtiö
DocType: Employee Loan,Loan Type,laina Tyyppi
DocType: Scheduling Tool,Scheduling Tool,Ajoitustyökalun

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,Prescription de laboratoire
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,Trier par prix
,Delay Days,Jours de retard
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,Frais de Service
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},Numéro de Série: {0} est déjà référencé dans la Facture de Vente: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},Numéro de Série: {0} est déjà référencé dans la Facture de Vente: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,Facture
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,Faire une entrée en stock de rétention
DocType: Purchase Invoice Item,Item Weight Details,Détails du poids de l&#39;article
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,Nom de Document du Détail Parent
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","Référence: {0}, Code de l&#39;article: {1} et Client: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,Kg
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,Ouverture d'un Emploi.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},La nomenclature n&#39;est pas spécifiée pour l&#39;article de sous-traitance {0} sur la ligne {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},La nomenclature n&#39;est pas spécifiée pour l&#39;article de sous-traitance {0} sur la ligne {1}
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,Résultat {0} soumis
DocType: Item Attribute,Increment,Incrément
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,Période
@ -150,7 +150,7 @@ DocType: Patient,Married,Marié
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},Non autorisé pour {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,Obtenir les articles de
DocType: Price List,Price Not UOM Dependant,Prix non UOM Dependent
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},Stock ne peut pas être mis à jour pour le Bon de Livraison {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},Stock ne peut pas être mis à jour pour le Bon de Livraison {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},Produit {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,Aucun article référencé
DocType: Asset Repair,Error Description,Erreur de description
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,Réconcilier
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,Épicerie
DocType: Quality Inspection Reading,Reading 1,Lecture 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,Fonds de Pension
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,La Date de lAmortissement Suivant ne peut pas être avant la Date dAchat
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,La Date de lAmortissement Suivant ne peut pas être avant la Date dAchat
DocType: Crop,Perennial,Vivace
DocType: Consultation,Consultation Date,Date de Consultation
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,Listes et découverte de produits pour les utilisateurs d'ERPNext
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,Centre de Coûts des Reprises
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""","e.g. ""École Primaire"" ou ""Université"""
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,Rapports de Stock
DocType: Warehouse,Warehouse Detail,Détail de l'Entrepôt
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},La limite de crédit a été franchie pour le client {0} {1}/{2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},La limite de crédit a été franchie pour le client {0} {1}/{2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,La Date de Fin de Terme ne peut pas être postérieure à la Date de Fin de l'Année Académique à laquelle le terme est lié (Année Académique {}). Veuillez corriger les dates et essayer à nouveau.
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item",'Est un Actif Immobilisé doit être coché car il existe une entrée dActif pour cet article
DocType: Delivery Trip,Departure Time,Heure de départ
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,Journal des Étudiants
DocType: Quality Inspection,Get Specification Details,Obtenir les Détails de la Spécification
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,Modèles de Classements Fournisseurs.
DocType: Lead,Interested,Intéressé
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,Ouverture
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,Ouverture
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},Du {0} au {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,Échec de la configuration des taxes
DocType: Item,Copy From Item Group,Copier Depuis un Groupe d'Articles
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,La Date de Relève doit être postérieure à la Date dEmbauche
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,Congés par Année
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,Ligne {0} : Veuillez vérifier 'Est Avance' sur le compte {1} si c'est une avance.
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},L'entrepôt {0} n'appartient pas à la société {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},L'entrepôt {0} n'appartient pas à la société {1}
DocType: Email Digest,Profit & Loss,Profits & Pertes
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,Litre
DocType: Task,Total Costing Amount (via Time Sheet),Montant Total des Coûts (via Feuille de Temps)
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,Taux et Montant
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,Ceci est basé sur les transactions contre cette Société. Voir le calendrier ci-dessous pour plus de détails
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Notifier par Email lors de la création automatique de la Demande de Matériel
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,Résistant
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Consultationt
DocType: Journal Entry,Multi Currency,Multi-Devise
DocType: Opening Invoice Creation Tool,Invoice Type,Type de Facture
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,Bon de Livraison
@ -528,7 +529,6 @@ DocType: Email Digest,Credit Balance,Solde du Crédit
DocType: Employee,Widowed,Veuf
DocType: Request for Quotation,Request for Quotation,Appel d'Offre
DocType: Healthcare Settings,Require Lab Test Approval,Nécessite l'Approbation du Test de Laboratoire
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Code de l&#39;article&gt; Groupe de produits&gt; Marque
DocType: Salary Slip Timesheet,Working Hours,Heures de Travail
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,Total en suspens
DocType: Naming Series,Change the starting / current sequence number of an existing series.,Changer le numéro initial/actuel d'une série existante.
@ -557,7 +557,7 @@ DocType: Subscription,Yearly,Annuel
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,Veuillez entrer un Centre de Coûts
DocType: Drug Prescription,Dosage,Dosage
DocType: Journal Entry Account,Sales Order,Commande Client
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,Moy. Taux de vente
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,Moy. Taux de vente
DocType: Assessment Plan,Examiner Name,Nom de l'Examinateur
DocType: Lab Test Template,No Result,Aucun Résultat
DocType: Purchase Invoice Item,Quantity and Rate,Quantité et Taux
@ -605,6 +605,7 @@ DocType: Employee,Health Concerns,Problèmes de Santé
DocType: Payroll Entry,Select Payroll Period,Sélectionner la Période de Paie
DocType: Purchase Invoice,Unpaid,Impayé
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,Réservé à la Vente
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Veuillez configurer le système de dénomination des employés dans Ressources humaines&gt; Paramètres RH
DocType: Packing Slip,From Package No.,Du N° de Colis
DocType: Item Attribute,To Range,Au Rang
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,Titres et Dépôts
@ -629,11 +630,11 @@ DocType: Pricing Rule,Valid Upto,Valide Jusqu'au
DocType: Training Event,Workshop,Atelier
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,Avertir lors de Bons de Commande
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,Listez quelques-uns de vos clients. Ils peuvent être des entreprise ou des individus.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,Pièces Suffisantes pour Construire
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,Pièces Suffisantes pour Construire
DocType: POS Profile User,POS Profile User,Utilisateur du profil PDV
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,Revenu Direct
DocType: Patient Appointment,Date TIme,Date Heure
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","Impossible de filtrer sur le Compte , si les lignes sont regroupées par Compte"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","Impossible de filtrer sur le Compte , si les lignes sont regroupées par Compte"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,Agent Administratif
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,Création d&#39;entreprise et taxes
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,Veuillez sélectionner un Cours
@ -643,7 +644,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,Compte dÉcart
DocType: Purchase Invoice,Supplier GSTIN,GSTIN du Fournisseur
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,Impossible de fermer une tâche si tâche dépendante {0} n'est pas fermée.
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,Veuillez entrer lEntrepôt pour lequel une Demande de Matériel sera faite
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,Veuillez entrer lEntrepôt pour lequel une Demande de Matériel sera faite
DocType: Production Order,Additional Operating Cost,Coût d'Exploitation Supplémentaires
DocType: Lab Test Template,Lab Routine,Routine de laboratoire
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,Produits de Beauté
@ -811,7 +812,7 @@ DocType: Employee,Passport Number,Numéro de Passeport
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Relation avec Tuteur2
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,Directeur
DocType: Payment Entry,Payment From / To,Paiement De / À
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Nouvelle limite de crédit est inférieure à l'encours actuel pour le client. Limite de crédit doit être au moins de {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Nouvelle limite de crédit est inférieure à l'encours actuel pour le client. Limite de crédit doit être au moins de {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},Veuillez définir un compte dans l&#39;entrepôt {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,'Basé sur' et 'Groupé par' ne peuvent pas être identiques
DocType: Sales Person,Sales Person Targets,Objectifs des Commerciaux
@ -822,7 +823,7 @@ DocType: Lab Test Template,Compound,Composé
DocType: Student Batch Name,Batch Name,Nom du Lot
DocType: Fee Validity,Max number of visit,Nombre maximum de visites
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,Feuille de Temps créée :
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},Veuillez définir un compte de Caisse ou de Banque par défaut pour le Mode de Paiement {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},Veuillez définir un compte de Caisse ou de Banque par défaut pour le Mode de Paiement {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,Inscrire
DocType: GST Settings,GST Settings,Paramètres GST
DocType: Selling Settings,Customer Naming By,Client Nommé par
@ -946,7 +947,7 @@ DocType: Delivery Note,Customer's Purchase Order No,Numéro bon de commande du c
DocType: Budget,Budget Against,Budget Pour
DocType: Employee,Cell Number,Numéro de Téléphone
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,Il n&#39;y a pas d&#39;employé pour les critères donnés. Vérifiez que les bordereaux de salaire n&#39;ont pas déjà été créés.
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,Demandes de Matériel Générées Automatiquement
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,Demandes de Matériel Générées Automatiquement
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,Perdu
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,Vous ne pouvez pas entrer le bon actuel dans la colonne 'Pour l'Écriture de Journal'
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,Réservé pour la Fabrication
@ -954,7 +955,7 @@ DocType: Soil Texture,Sand,Le sable
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,Énergie
DocType: Opportunity,Opportunity From,Opportunité De
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,Fiche de paie mensuelle.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Ligne {0}: {1} Numéros de série requis pour l'article {2}. Vous en avez fourni {3}.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Ligne {0}: {1} Numéros de série requis pour l'article {2}. Vous en avez fourni {3}.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,Veuillez sélectionner une table
DocType: BOM,Website Specifications,Spécifications du Site Web
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} est une adresse e-mail invalide dans 'Destinataires'
@ -1043,7 +1044,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,Devis demandé
DocType: Vital Signs,Heart Rate / Pulse,Fréquence Cardiaque / Pouls
DocType: Company,Default Bank Account,Compte Bancaire par Défaut
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","Pour filtrer en fonction du Tiers, sélectionnez dabord le Type de Tiers"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","Pour filtrer en fonction du Tiers, sélectionnez dabord le Type de Tiers"
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},'Mettre à Jour le Stock' ne peut pas être coché car les articles ne sont pas livrés par {0}
DocType: Vehicle,Acquisition Date,Date d'Aquisition
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,
@ -1067,7 +1068,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),Téléchargez votre tête de lettre (Gardez-le web comme 900px par 100px)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1} : Compte {2} ne peut pas être un Groupe
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,Ligne d'Article {idx}: {doctype} {docname} n'existe pas dans la table '{doctype}' ci-dessus
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,La Feuille de Temps {0} est déjà terminée ou annulée
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,La Feuille de Temps {0} est déjà terminée ou annulée
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,Aucune tâche
DocType: Item Variant Settings,Copy Fields to Variant,Copier les Champs dans une Variante
DocType: Asset,Opening Accumulated Depreciation,Amortissement Cumulé d'Ouverture
@ -1179,9 +1180,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,Plan de matériaux pour les sous-ensembles
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,Partenaires Commerciaux et Régions
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,LDM {0} doit être active
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),Fermeture (ouverture + total)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),Fermeture (ouverture + total)
DocType: Journal Entry,Depreciation Entry,Ecriture dAmortissement
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Veuillez dabord sélectionner le type de document
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,Imprimer dans la devise du compte
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Annuler les Visites Matérielles {0} avant d'annuler cette Visite de Maintenance
DocType: Crop Cycle,ISO 8016 standard,Norme ISO 8016
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},N° de Série {0} n'appartient pas à l'Article {1}
@ -1207,7 +1209,7 @@ DocType: Purchase Receipt,Range,Plage
DocType: Supplier,Default Payable Accounts,Comptes Créditeur par Défaut
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,"L'employé {0} n'est pas actif, ou n'existe pas"
DocType: Fee Structure,Components,Composants
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},Veuillez entrer une Catégorie d'Actif dans la rubrique {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},Veuillez entrer une Catégorie d'Actif dans la rubrique {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,Variantes de l'Article {0} mises à jour
DocType: Quality Inspection Reading,Reading 6,Lecture 6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1259,6 +1261,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,Nom de la Société
DocType: SMS Center,Total Message(s),Total des Messages
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,Sélectionner l'Article à Transferer
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Veuillez définir la série de dénomination pour {0} via Configuration&gt; Paramètres&gt; Naming Series
DocType: Purchase Invoice,Additional Discount Percentage,Pourcentage de réduction supplémentaire
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,Afficher la liste de toutes les vidéos d'aide
DocType: Agriculture Analysis Criteria,Soil Texture,Texture du sol
@ -1286,7 +1289,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,Article de LDM du Site Internet
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,Charger votre en-tête et logo. (vous pouvez les modifier ultérieurement).
DocType: Timesheet Detail,Bill,Facture
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,La Date de lAmortissement Suivant est obligatoire pour un nouvel Actif
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,La Date de lAmortissement Suivant est obligatoire pour un nouvel Actif
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,Blanc
DocType: SMS Center,All Lead (Open),Toutes les pistes (Ouvertes)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),Ligne {0} : Qté non disponible pour {4} dans l'entrepôt {1} au moment de la comptabilisation de lécriture ({2} {3})
@ -1302,7 +1305,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,Date du Prochain Contact
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,Quantité d'Ouverture
DocType: Healthcare Settings,Appointment Reminder,Rappel de Rendez-Vous
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,Veuillez entrez un Compte pour le Montant de Change
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,Veuillez entrez un Compte pour le Montant de Change
DocType: Program Enrollment Tool Student,Student Batch Name,Nom du Lot d'Étudiants
DocType: Consultation,Doctor,Docteur
DocType: Holiday List,Holiday List Name,Nom de la Liste de Vacances
@ -1318,6 +1321,7 @@ DocType: Patient,Patient Relation,Relation patient
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,Outil de Répartition des Congés
DocType: Item,Hub Category to Publish,Catégorie du Hub à publier
DocType: Leave Block List,Leave Block List Dates,Dates de la Liste de Blocage des Congés
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Veuillez configurer la série de numéros pour la présence via Setup&gt; Série de numéros
DocType: Sales Invoice,Billing Address GSTIN,Adresse de Facturation GSTIN
DocType: Assessment Plan,Evaluate,Évaluer
DocType: Workstation,Net Hour Rate,Taux Horaire Net
@ -1351,7 +1355,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,Article du Reçu dAchat
DocType: Purchase Receipt,PREC-RET-,PREC-RET-
DocType: POS Profile,Sales Invoice Payment,Paiement de la Facture de Vente
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,Entrepôt Réservé aux Commandes Clients / Entrepôt de Produits Finis
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,Montant de Vente
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,Montant de Vente
DocType: Repayment Schedule,Interest Amount,Montant d'Intérêts
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,Vous êtes l'Approbateur de Dépenses pour cet enregistrement. Veuillez Mettre à Jour le 'Status' et Enregistrer
DocType: Serial No,Creation Document No,N° du Document de Création
@ -1442,7 +1446,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,Solde d'Ouverture de Comptabilité
,GST Sales Register,Registre de Vente GST
DocType: Sales Invoice Advance,Sales Invoice Advance,Avance sur Facture de Vente
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,Aucune requête à effectuer
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,Aucune requête à effectuer
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,Sélectionnez vos domaines
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},Un autre enregistrement de Budget '{0}' existe déjà pour {1} '{2}' pour l'exercice {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,Les champs seront copiés uniquement au moment de la création.
@ -1452,11 +1456,11 @@ DocType: Cheque Print Template,Payer Settings,Paramètres du Payeur
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","Ce sera ajoutée au Code de la Variante de l'Article. Par exemple, si votre abréviation est «SM», et le code de l'article est ""T-SHIRT"", le code de l'article de la variante sera ""T-SHIRT-SM"""
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,Salaire Net (en lettres) sera visible une fois que vous aurez enregistré la Fiche de Paie.
DocType: Purchase Invoice,Is Return,Est un Retour
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,Mise en Garde
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,Mise en Garde
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,Retour / Note de Débit
DocType: Price List Country,Price List Country,Pays de la Liste des Prix
DocType: Item,UOMs,UDMs
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} numéro de série valide pour l'objet {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} numéro de série valide pour l'objet {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Code de l'Article ne peut pas être modifié pour le Numéro de Série
DocType: Purchase Invoice Item,UOM Conversion Factor,Facteur de Conversion de l'UDM
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,Veuillez entrer le Code d'Article pour obtenir le Numéro de Lot
@ -1560,7 +1564,7 @@ DocType: Journal Entry,Get Outstanding Invoices,Obtenir les Factures Impayées
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,Commande Client {0} invalide
DocType: Supplier Scorecard,Warn for new Request for Quotations,Avertir lors d'une nouvelle Demande de Devis
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,Les Bons de Commande vous aider à planifier et à assurer le suivi de vos achats
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","Désolé, les sociétés ne peuvent pas être fusionnées"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","Désolé, les sociétés ne peuvent pas être fusionnées"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,Prescriptions de test de laboratoire
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",La quantité totale dÉmission / Transfert {0} dans la Demande de Matériel {1} \ ne peut pas être supérieure à la quantité demandée {2} pour lArticle {3}
@ -1598,7 +1602,6 @@ DocType: Vehicle,Fuel UOM,UDM Carburant
DocType: Warehouse,Warehouse Contact Info,Info de Contact de l'Entrepôt
DocType: Payment Entry,Write Off Difference Amount,Montant de la Différence de la Reprise
DocType: Volunteer,Volunteer Name,Nom du bénévole
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Veuillez configurer le système de nommage de l&#39;instructeur dans Education&gt; Paramètres de l&#39;éducation
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent",{0} : Adresse email de l'employé introuvable : lemail n'a pas été envoyé
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},Règle d&#39;expédition non applicable pour le pays {0}
DocType: Item,Foreign Trade Details,Détails du Commerce Extérieur
@ -1610,7 +1613,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,Numéro de Groupe
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry","Pour {0}, seuls les comptes de crédit peuvent être liés avec une autre écriture de débit"
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,Le total des poids des tâches doit être égal à 1. Veuillez ajuster les poids de toutes les tâches du Projet en conséquence
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,Bon de Livraison {0} n'est pas soumis
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,Bon de Livraison {0} n'est pas soumis
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,L'article {0} doit être un Article Sous-traité
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,Capitaux Immobilisés
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","La Règle de Tarification est d'abord sélectionnée sur la base du champ Appliquer Sur, qui peut être un Article, un Groupe d'Articles ou une Marque."
@ -1635,7 +1638,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,Un entrepôt enfant existe pour cet entrepôt. Vous ne pouvez pas supprimer cet entrepôt.
DocType: Item,Website Item Groups,Groupes d'Articles du Site Web
DocType: Purchase Invoice,Total (Company Currency),Total (Devise Société)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,Numéro de série {0} est entré plus d'une fois
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,Numéro de série {0} est entré plus d'une fois
DocType: Journal Entry,Journal Entry,Écriture de Journal
DocType: Expense Claim Advance,Unclaimed amount,Montant non réclamé
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} articles en cours
@ -1731,7 +1734,7 @@ DocType: Email Digest,For Company,Pour la Société
apps/erpnext/erpnext/config/support.py +17,Communication log.,Journal des communications.
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.","Laccès au portail est désactivé pour les Appels dOffres. Pour plus dinformations, vérifiez les réglages du portail."
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,Variable de la Fiche d'Évaluation Fournisseur
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,Montant d'Achat
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,Montant d'Achat
DocType: Sales Invoice,Shipping Address Name,Nom de l'Adresse de Livraison
DocType: Material Request,Terms and Conditions Content,Contenu des Termes et Conditions
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,Des erreurs se sont produites lors de la création du programme
@ -1994,7 +1997,7 @@ DocType: Expense Claim,Total Amount Reimbursed,Montant Total Remboursé
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,Basé sur les journaux de ce Véhicule. Voir la chronologie ci-dessous pour plus de détails
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},Pour la Facture Fournisseur {0} datée {1}
DocType: Customer,Default Price List,Liste des Prix par Défaut
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,Registre de Mouvement de l'Actif {0} créé
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,Registre de Mouvement de l'Actif {0} créé
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,Vous ne pouvez pas supprimer l'Exercice {0}. L'exercice {0} est défini par défaut dans les Réglages Globaux
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,Un client avec un nom identique existe déjà
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,Cela permettra de soumettre des bulletins de salaire et de créer une écriture de journal d&#39;accumulation. Voulez-vous poursuivre?
@ -2008,6 +2011,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,Tarification
DocType: Quotation,Term Details,Détails du Terme
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,Inscription de plus de {0} étudiants impossible pour ce groupe d'étudiants.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),Total (hors taxes)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,Nombre de Prospects
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} doit être supérieur à 0
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,Stock disponible
@ -2026,7 +2030,6 @@ DocType: Lab Test,Technician Name,Nom du Technicien
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,Délier Paiement à l'Annulation de la Facture
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},Le Compteur(kms) Actuel entré devrait être plus grand que le Compteur(kms) initial du Véhicule {0}
DocType: Restaurant Reservation,No Show,Non Présenté
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Veuillez définir la série de dénomination pour {0} via Configuration&gt; Paramètres&gt; Naming Series
DocType: Shipping Rule Country,Shipping Rule Country,Pays de la Règle de Livraison
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,Congés et Présences
DocType: Maintenance Visit,Partially Completed,Partiellement Complété
@ -2117,7 +2120,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,Instructeur de Groupe d'Étudiant
DocType: Grant Application,Assessment Mark (Out of 10),Note d&#39;évaluation (sur 10)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,N° du Mobile du Tuteur 1
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,Principal
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,Principal
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,Variante
DocType: Naming Series,Set prefix for numbering series on your transactions,Définir le préfixe des séries numérotées pour vos transactions
DocType: Employee Attendance Tool,Employees HTML,Employés HTML
@ -2165,7 +2168,7 @@ DocType: Crop,Crop Spacing,Espacement des cultures
DocType: Course,Course Abbreviation,Abréviation du Cours
DocType: Student Leave Application,Student Leave Application,Demande de Congé d'Étudiant
DocType: Item,Will also apply for variants,S'appliquera également pour les variantes
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","L'actif ne peut être annulé, car il est déjà {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","L'actif ne peut être annulé, car il est déjà {0}"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},Employé {0} sur une demi-journée sur {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},Le nombre total d'heures travaillées ne doit pas être supérieur à la durée maximale du travail {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,Sur
@ -2350,9 +2353,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),Date de Fin Réelle (via la Feuille de Temps)
DocType: Soil Texture,Soil Type,Le type de sol
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},Montant {0} {1} pour {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,Nouveau Message
,Quotation Trends,Tendances des Devis
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},Le Groupe d'Articles n'est pas mentionné dans la fiche de l'article pour l'article {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,Le compte de débit doit être un compte Débiteur
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,Le compte de débit doit être un compte Débiteur
DocType: Shipping Rule,Shipping Amount,Montant de la Livraison
DocType: Supplier Scorecard Period,Period Score,Score de la Période
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,Ajouter des Clients
@ -2363,7 +2367,7 @@ DocType: Purchase Order,Delivered,Livré
,Vehicle Expenses,Frais de Véhicule
DocType: Serial No,Invoice Details,Détails de la Facture
DocType: Grant Application,Show on Website,Afficher sur le site Web
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},Valeur attendue après utilisation complète doit être supérieure ou égale à {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},Valeur attendue après utilisation complète doit être supérieure ou égale à {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,Démarrer
DocType: Hub Category,Hub Category,Catégorie du Hub
DocType: Purchase Invoice,SEZ,SEZ
@ -2394,7 +2398,7 @@ DocType: Patient,Patient Details,Détails du patient
DocType: Patient,B Positive,B Positif
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","Ligne #{0} : Qté doit égale à 1, car lArticle est un actif immobilisé. Veuillez utiliser une ligne distincte pour une qté multiple."
DocType: Leave Block List Allow,Leave Block List Allow,Autoriser la Liste de Blocage des Congés
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,Abré. ne peut être vide ou contenir un espace
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,Abré. ne peut être vide ou contenir un espace
DocType: Patient Medical Record,Patient Medical Record,Registre médical du patient
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,Groupe vers Non-Groupe
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,Sportif
@ -2444,6 +2448,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,Impossible de lier une Réponse à Appel d'Offres reçue à Aucun Devis
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,Déduction Totale
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,Sélectionnez un compte à imprimer dans la devise du compte
,Production Analytics,Analyse de la Production
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,Ceci est basé sur les transactions de ce patient. Voir la chronologie ci-dessous pour plus de détails
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,Coût Mise à Jour
@ -2498,7 +2503,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,Param
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,Sélectionner la Société ...
DocType: Leave Control Panel,Leave blank if considered for all departments,Laisser vide pour tous les départements
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","Type demploi (CDI, CDD, Stagiaire, etc.)"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} est obligatoire pour lArticle {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} est obligatoire pour lArticle {1}
DocType: Payroll Entry,Fortnightly,Bimensuel
DocType: Currency Exchange,From Currency,De la Devise
DocType: Vital Signs,Weight (In Kilogram),Poids (En Kilogramme)
@ -2574,7 +2579,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),Montant de Base (Devise
DocType: Student,Guardians,Tuteurs
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,Les Prix ne seront pas affichés si la Liste de Prix n'est pas définie
DocType: Stock Entry,Total Incoming Value,Valeur Entrante Totale
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,Compte de Débit Requis
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,Compte de Débit Requis
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Les Feuilles de Temps aident au suivi du temps, coût et facturation des activités effectuées par votre équipe"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,Liste des Prix d'Achat
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,Modèles des Variables de Fiche d'Évaluation Fournisseur.
@ -2675,7 +2680,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,Pour Référence Seulement.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},Le médecin {0} n'est pas disponible le {1}
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,Sélectionnez le N° de Lot
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},Invalide {0} : {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},Invalide {0} : {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Fee Validity,Reference Inv,Facture de Référence
@ -2712,8 +2717,8 @@ DocType: Fees,Send Payment Request,Envoyer une Demande de Paiement
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Spécifier les opérations, le coût d'exploitation et donner un N° d'Opération unique à vos opérations."
DocType: Water Analysis,Origin,Origine
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,Ce document excède la limite de {0} {1} pour larticle {4}. Faites-vous un autre {3} contre le même {2} ?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,Veuillez définir la récurrence après avoir sauvegardé
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,Sélectionner le compte de change
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,Veuillez définir la récurrence après avoir sauvegardé
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,Sélectionner le compte de change
DocType: Purchase Invoice,Price List Currency,Devise de la Liste de Prix
DocType: Naming Series,User must always select,L'utilisateur doit toujours sélectionner
DocType: Stock Settings,Allow Negative Stock,Autoriser un Stock Négatif
@ -2769,7 +2774,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,Détails de l'
DocType: Supplier Scorecard,Warn for new Purchase Orders,Avertir lors des nouveaux Bons de Commande
DocType: Quality Inspection Reading,Reading 9,Lecture 9
DocType: Supplier,Is Frozen,Est Gelé
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,Un noeud de groupe d'entrepôt ne peut pas être sélectionné pour les transactions
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,Un noeud de groupe d'entrepôt ne peut pas être sélectionné pour les transactions
DocType: Buying Settings,Buying Settings,Réglages d'Achat
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,N° dArticle Produit Fini LDM
DocType: Upload Attendance,Attendance To Date,Présence Jusqu'à
@ -2783,6 +2788,7 @@ DocType: Offer Letter,Accepted,Accepté
DocType: Grant Application,Organization,Organisation
DocType: BOM Update Tool,BOM Update Tool,Outil de mise à jour de LDM
DocType: SG Creation Tool Course,Student Group Name,Nom du Groupe d'Étudiants
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,Afficher la vue éclatée
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,Création d'Honoraires
apps/erpnext/erpnext/setup/doctype/company/company.js +91,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.,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.
DocType: Room,Room Number,Numéro de la Chambre
@ -2793,7 +2799,7 @@ DocType: Journal Entry Account,Payroll Entry,Entrée de la paie
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,Créer un modèle d&#39;imposition
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,Forum de l'Utilisateur
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,Matières Premières ne peuvent pas être vides.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","Impossible de mettre à jour de stock, facture contient un élément en livraison directe."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","Impossible de mettre à jour de stock, facture contient un élément en livraison directe."
DocType: Lab Test Sample,Lab Test Sample,Échantillon de test de laboratoire
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,Écriture Rapide dans le Journal
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,Vous ne pouvez pas modifier le taux si la LDM est mentionnée pour un article
@ -2864,7 +2870,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,USD
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,Faire une Facture
DocType: Selling Settings,Auto close Opportunity after 15 days,Fermer automatiquement les Opportunités après 15 jours
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Les Bons de Commande ne sont pas autorisés pour {0} en raison d'une note sur la fiche d'évaluation de {1}.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Les Bons de Commande ne sont pas autorisés pour {0} en raison d'une note sur la fiche d'évaluation de {1}.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,Année de Fin
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Devis / Prospects %
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,La Date de Fin de Contrat doit être supérieure à la Date d'Embauche
@ -2976,7 +2982,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90-Dessus
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,Ligne #{0} : LÉcriture de Journal {1} n'a pas le compte {2} ou est déjà réconciliée avec une autre référence
DocType: Supplier Scorecard Criteria,Criteria Weight,Pondération du Critère
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Fournisseur&gt; Type de fournisseur
DocType: Buying Settings,Default Buying Price List,Liste des Prix d'Achat par Défaut
DocType: Payroll Entry,Salary Slip Based on Timesheet,Fiche de Paie basée sur la Feuille de Temps
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,Prix d'achat
@ -3064,7 +3069,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,Suivre les Prospects par Type d'Industrie
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,Aller aux papiers à en-tête
DocType: Item Supplier,Item Supplier,Fournisseur de l'Article
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,Veuillez entrer le Code d'Article pour obtenir n° de lot
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,Veuillez entrer le Code d'Article pour obtenir n° de lot
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},Veuillez sélectionner une valeur pour {0} devis à {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,Toutes les Adresses.
DocType: Company,Stock Settings,Réglages de Stock
@ -3253,6 +3258,7 @@ DocType: Employee Loan,Loan Details,Détails du Prêt
DocType: Company,Default Inventory Account,Compte d'Inventaire par Défaut
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,Ligne {0} : Qté Complétée doit être supérieure à zéro.
DocType: Antibiotic,Antibiotic Name,Nom de l'Antibiotique
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Code de l&#39;article&gt; Groupe de produits&gt; Marque
DocType: Purchase Invoice,Apply Additional Discount On,Appliquer une Remise Supplémentaire Sur
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,Sélectionner le Type...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,Un lien vers toutes les unités terrestres dans lesquelles la culture se développe
@ -3446,6 +3452,7 @@ DocType: Guardian Student,Guardian Student,Tuteur de l'Étudiant
DocType: Supplier,Credit Limit,Limite de crédit
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,Moyenne de la liste de prix de vente
DocType: Production Plan Sales Order,Salse Order Date,Date de la Commande Client
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Fournisseur&gt; Type de fournisseur
DocType: Salary Component,Salary Component,Composante Salariale
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,Écritures de Paiement {0} ne sont pas liées
DocType: GL Entry,Voucher No,N° de Référence
@ -3454,7 +3461,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,Le Plus Populair
DocType: Leave Allocation,Leave Allocation,Allocation de Congés
DocType: Payment Request,Recipient Message And Payment Details,Message du Destinataire et Détails de Paiement
DocType: Training Event,Trainer Email,Email du Formateur
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,Les Demandes de Matérielles {0} créées
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,Les Demandes de Matérielles {0} créées
DocType: Restaurant Reservation,No of People,Nbr de Personnes
DocType: Production Planning Tool,Include sub-contracted raw materials,Inclure les matières premières sous-traitées
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,Modèle de termes ou de contrat.
@ -3518,7 +3525,7 @@ DocType: Landed Cost Item,Receipt Document,Reçu
DocType: Production Planning Tool,Create Material Requests,Créer des Demandes de Matériel
DocType: Employee Education,School/University,École/Université
DocType: Payment Request,Reference Details,Détails de la Référence
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,Valeur Attendue Après Utilisation Complète doit être inférieure au Montant d'Achat Brut
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,Valeur Attendue Après Utilisation Complète doit être inférieure au Montant d'Achat Brut
DocType: Sales Invoice Item,Available Qty at Warehouse,Qté Disponible à l'Entrepôt
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,Montant Facturé
DocType: Asset,Double Declining Balance,Double Solde Dégressif
@ -3530,7 +3537,7 @@ DocType: Attendance,On Leave,En Congé
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,Obtenir les Mises à jour
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1} : Compte {2} ne fait pas partie de la Société {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,Sélectionnez au moins une valeur de chacun des attributs.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,Demande de Matériel {0} est annulé ou arrêté
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,Demande de Matériel {0} est annulé ou arrêté
apps/erpnext/erpnext/config/hr.py +310,Leave Management,Gestion des Congés
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,Grouper par Compte
DocType: Sales Order,Fully Delivered,Entièrement Livré
@ -3541,14 +3548,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},Le Montant Remboursé ne peut pas être supérieur au Montant du Prêt {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,Aller aux Programmes
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},La ligne {0} # Montant alloué {1} ne peut pas être supérieure au montant non réclamé {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Veuillez configurer la série de numéros pour la présence via Setup&gt; Série de numéros
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},Numéro de Bon de Commande requis pour l'Article {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,Ordre de Production non créé
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',La Date de Début doit être antérieure à la Date de Fin
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},Impossible de changer le statut car l'étudiant {0} est lié à la candidature de l'étudiant {1}
DocType: Asset,Fully Depreciated,Complètement Déprécié
,Stock Projected Qty,Qté de Stock Projeté
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},Le Client {0} ne fait pas parti du projet {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},Le Client {0} ne fait pas parti du projet {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,HTML des Présences Validées
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers","Les devis sont des propositions, offres que vous avez envoyées à vos clients"
DocType: Sales Order,Customer's Purchase Order,N° de Bon de Commande du Client
@ -3632,7 +3638,7 @@ DocType: Salary Slip,Hour Rate,Tarif Horaire
DocType: Stock Settings,Item Naming By,Nomenclature d'Article Par
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},Une autre Entrée de Clôture de Période {0} a été faite après {1}
DocType: Production Order,Material Transferred for Manufacturing,Matériel Transféré pour la Fabrication
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,Le compte {0} n'existe pas
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,Le compte {0} n'existe pas
DocType: Project,Project Type,Type de Projet
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,Une tâche enfant existe pour cette tâche. Vous ne pouvez pas supprimer cette tâche.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,Soit la qté cible soit le montant cible est obligatoire.
@ -3734,11 +3740,11 @@ DocType: C-Form,I,I
DocType: Company,Asset Depreciation Cost Center,Centre de Coûts de l'Amortissement d'Actifs
DocType: Sales Order Item,Sales Order Date,Date de la Commande Client
DocType: Sales Invoice Item,Delivered Qty,Qté Livrée
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,Total Excl. Impôt
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","Si cochée, tous les enfants de chaque article de production seront inclus dans les Demandes de Matériel."
DocType: Assessment Plan,Assessment Plan,Plan d'Évaluation
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,Le client {0} est créé.
DocType: Stock Settings,Limit Percent,Pourcentage Limite
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Veuillez configurer le système de nommage de l&#39;instructeur dans Education&gt; Paramètres de l&#39;éducation
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,"Actuellement, aucun stock disponible dans aucun entrepôt"
,Payment Period Based On Invoice Date,Période de Paiement basée sur la Date de la Facture
DocType: Sample Collection,No. of print,Nbre d'impressions
@ -3754,12 +3760,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),Débiteurs ({0})
DocType: Pricing Rule,Margin,Marge
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,Nouveaux Clients
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,Bénéfice Brut %
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,Bénéfice Brut %
DocType: Appraisal Goal,Weightage (%),Poids (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,Modifier le profil POS
DocType: Bank Reconciliation Detail,Clearance Date,Date de Compensation
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,Rapport d'Évaluation
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,Montant d'Achat Brut est obligatoire
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,Montant d'Achat Brut est obligatoire
DocType: Lead,Address Desc,Adresse Desc
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,Le Tiers est obligatoire
DocType: Journal Entry,JV-,JV-
@ -3791,7 +3797,6 @@ DocType: Account,Accumulated Depreciation,Amortissement Cumulé
DocType: Supplier Scorecard Scoring Standing,Standing Name,Nom du Classement
DocType: Stock Entry,Customer or Supplier Details,Détails du Client ou du Fournisseur
DocType: Employee Loan Application,Required by Date,Requis à cette Date
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),Solde de clôture (Dr - Cr)
DocType: Lead,Lead Owner,Responsable du Prospect
DocType: Bin,Requested Quantity,Quantité Demandée
DocType: Patient,Marital Status,État Civil
@ -3805,7 +3810,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,Variantes multiples
DocType: Sales Invoice,Against Income Account,Pour le Compte de Produits
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% Livré
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,L'article {0} : Qté commandée {1} ne peut pas être inférieure à la qté de commande minimum {2} (défini dans l'Article).
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,L'article {0} : Qté commandée {1} ne peut pas être inférieure à la qté de commande minimum {2} (défini dans l'Article).
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,Pourcentage de Répartition Mensuelle
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,Veuillez vous connecter en tant qu&#39;un autre utilisateur.
DocType: Territory,Territory Targets,Objectifs Régionaux
@ -3904,7 +3909,7 @@ DocType: Program Enrollment,School House,Maison de l'École
DocType: Serial No,Out of AMC,Sur AMC
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,Nombre dAmortissements Comptabilisés ne peut pas être supérieur à Nombre Total d'Amortissements
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,Effectuer une Visite d'Entretien
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,Veuillez contactez l'utilisateur qui a le rôle de Directeur des Ventes {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,Veuillez contactez l'utilisateur qui a le rôle de Directeur des Ventes {0}
DocType: Company,Default Cash Account,Compte de Caisse par Défaut
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,Données de base de la Société (ni les Clients ni les Fournisseurs)
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,Basé sur la présence de cet Étudiant
@ -4054,7 +4059,6 @@ DocType: Delivery Note Item,From Warehouse,De l'Entrepôt
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,Aucun employé pour les critères mentionnés
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,Aucun Article avec une Liste de Matériel à Fabriquer
DocType: Restaurant,Default Customer,Client par Défaut
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Veuillez configurer le système de dénomination des employés dans Ressources humaines&gt; Paramètres RH
DocType: Assessment Plan,Supervisor Name,Nom du Superviseur
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,Ne confirmez pas si le rendez-vous est créé pour le même jour
DocType: Program Enrollment Course,Program Enrollment Course,Cours d'Inscription au Programme
@ -4172,7 +4176,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,Description du Site Web
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,Variation Nette de Capitaux Propres
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,Plus Récent
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,Veuillez dabord annuler la Facture d'Achat {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,Veuillez dabord annuler la Facture d'Achat {0}
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","Adresse Email doit être unique, existe déjà pour {0}"
DocType: Serial No,AMC Expiry Date,Date d'Expiration CMA
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,Reçu
@ -4189,7 +4193,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,Pas encore de
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,États des Flux de Trésorerie
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},Le Montant du prêt ne peut pas dépasser le Montant Maximal du Prêt de {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,Licence
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},Veuillez retirez cette Facture {0} du C-Form {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},Veuillez retirez cette Facture {0} du C-Form {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,Veuillez sélectionnez Report si vous souhaitez également inclure le solde des congés de l'exercice précédent à cet exercice
DocType: GL Entry,Against Voucher Type,Pour le Type de Bon
DocType: Physician,Phone (R),Téléphone (R)
@ -4201,7 +4205,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,B Négatif
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,Le statut de maintenance doit être annulé ou complété pour pouvoir être envoyé
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},Le compte {0} n'appartient pas à la société {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,Les Numéros de Série dans la ligne {0} ne correspondent pas au Bon de Livraison
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,Les Numéros de Série dans la ligne {0} ne correspondent pas au Bon de Livraison
DocType: Student,Guardian Details,Détails du Tuteur
DocType: C-Form,C-Form,Formulaire-C
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,Valider la Présence de plusieurs employés
@ -4243,7 +4247,7 @@ DocType: Opening Invoice Creation Tool,Sales,Ventes
DocType: Stock Entry Detail,Basic Amount,Montant de Base
DocType: Training Event,Exam,Examen
DocType: Complaint,Complaint,Plainte
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},Lentrepôt est obligatoire pour l'article du stock {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},Lentrepôt est obligatoire pour l'article du stock {0}
DocType: Leave Allocation,Unused leaves,Congés non utilisés
DocType: Patient,Alcohol Past Use,Consommation Passée d'Alcool
DocType: Fertilizer Content,Fertilizer Content,Contenu d&#39;engrais
@ -4367,6 +4371,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,Formule
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,Série #
DocType: Lab Test Template,Lab Test Template,Modèle de test de laboratoire
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,Compte de vente
DocType: Purchase Invoice Item,Total Weight,Poids total
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,Commission sur les Ventes
DocType: Offer Letter Term,Value / Description,Valeur / Description
@ -4523,7 +4528,7 @@ Updated via 'Time Log'",en Minutes Mises à Jour via le 'Journal des Temps'
DocType: Customer,From Lead,Du Prospect
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,Commandes validées pour la production.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,Sélectionner Exercice ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,Profil PDV nécessaire pour faire une écriture de PDV
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,Profil PDV nécessaire pour faire une écriture de PDV
DocType: Program Enrollment Tool,Enroll Students,Inscrire des Étudiants
DocType: Lab Test,Approved Date,Date Approuvée
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,Vente Standard
@ -4599,7 +4604,7 @@ DocType: Employee,Held On,Tenu le
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,Article de Production
,Employee Information,Renseignements sur l'Employé
DocType: Stock Entry Detail,Additional Cost,Frais Supplémentaire
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","Impossible de filtrer sur la base du N° de Coupon, si les lignes sont regroupées par Coupon"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","Impossible de filtrer sur la base du N° de Coupon, si les lignes sont regroupées par Coupon"
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,Créer un Devis Fournisseur
DocType: Quality Inspection,Incoming,Entrant
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,Les modèles de taxe par défaut pour les ventes et les achats sont créés.
@ -4616,7 +4621,7 @@ DocType: Batch,Batch ID,ID du Lot
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},Note : {0}
,Delivery Note Trends,Tendance des Bordereaux de Livraisons
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,Résumé Hebdomadaire
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,Qté En Stock
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,Qté En Stock
DocType: Delivery Trip,Calculate Estimated Arrival Times,Calculer les heures d&#39;arrivée estimées
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,Compte : {0} peut uniquement être mis à jour via les Mouvements de Stock
DocType: Student Group Creation Tool,Get Courses,Obtenir les Cours
@ -4632,7 +4637,7 @@ DocType: Purchase Order,To Bill,À Facturer
DocType: Material Request,% Ordered,% Commandé
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.","Pour un groupe étudiant basé sur un cours, le cours sera validé pour chaque élève inscrit aux cours du programme."
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,Travail à la Pièce
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,Moy. Taux d'achat
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,Moy. Taux d'achat
DocType: Task,Actual Time (in Hours),Temps Réel (en Heures)
DocType: Employee,History In Company,Ancienneté dans la Société
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},Nouveau message de {expéditeur}
@ -4680,7 +4685,7 @@ DocType: Asset Repair,Asset Repair,Réparation d'Actif
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},Ligne {0} : La devise de la LDM #{1} doit être égale à la devise sélectionnée {2}
DocType: Journal Entry Account,Exchange Rate,Taux de Change
DocType: Patient,Additional information regarding the patient,Informations complémentaires concernant le patient
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,Commande Client {0} n'a pas été transmise
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,Commande Client {0} n'a pas été transmise
DocType: Homepage,Tag Line,Ligne de Tag
DocType: Fee Component,Fee Component,Composant d'Honoraires
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,Gestion de Flotte
@ -4893,7 +4898,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,Détails des Résulta
DocType: Employee Education,Employee Education,Formation de l'Employé
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,Groupe darticles en double trouvé dans la table des groupes d'articles
DocType: Land Unit,Parent Land Unit,Unité Terre-Parent
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,Nécessaire pour aller chercher les Détails de l'Article.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,Nécessaire pour aller chercher les Détails de l'Article.
DocType: Fertilizer,Fertilizer Name,Nom de l&#39;engrais
DocType: Salary Slip,Net Pay,Salaire Net
DocType: Account,Account,Compte
@ -4972,7 +4977,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),Qté Réelle (à la so
DocType: Item Customer Detail,Ref Code,Code de Réf.
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,Le Groupe de Clients est Requis dans le Profil POS
apps/erpnext/erpnext/config/hr.py +12,Employee records.,Dossiers de l'Employé.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,Veuillez définir la Prochaine Date dAmortissement
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,Veuillez définir la Prochaine Date dAmortissement
DocType: HR Settings,Payroll Settings,Réglages de la Paie
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,Rapprocher les Factures non liées avec les Paiements.
DocType: POS Settings,POS Settings,Paramètres PDV
@ -5139,7 +5144,7 @@ DocType: Item,Customer Code,Code Client
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},Rappel d'Anniversaire pour {0}
DocType: Asset Maintenance Task,Last Completion Date,Dernière date d&#39;achèvement
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,Jours Depuis la Dernière Commande
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,Le compte de débit doit être un compte de Bilan
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,Le compte de débit doit être un compte de Bilan
DocType: Buying Settings,Naming Series,Nom de la Série
DocType: Leave Block List,Leave Block List Name,Nom de la Liste de Blocage des Congés
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,Date de Début d'Assurance devrait être antérieure à la Date de Fin d'Assurance
@ -5265,6 +5270,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,Obtenir les Écritures de Paiement
DocType: Quotation Item,Against Docname,Pour le docName
DocType: SMS Center,All Employee (Active),Tous les Employés (Actifs)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Client&gt; Groupe de clients&gt; Territoire
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,Voir Maintenant
DocType: BOM,Raw Material Cost,Coût de Matière Première
DocType: Item Reorder,Re-Order Level,Niveau de Réapprovisionnement
@ -5363,7 +5369,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,Nombre de places
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,Groupes de test de laboratoire
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Client&gt; Groupe de clients&gt; Territoire
DocType: Project,Total Expense Claim (via Expense Claims),Total des Notes de Frais (via Notes de Frais)
DocType: GST Settings,GST Summary,Résumé GST
DocType: Assessment Result,Total Score,Score Total
@ -5376,7 +5381,7 @@ DocType: Batch,Source Document Type,Type de Document Source
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,Les horaires de cours suivants ont été créés
DocType: Journal Entry,Total Debit,Total Débit
DocType: Manufacturing Settings,Default Finished Goods Warehouse,Entrepôt de Produits Finis par Défaut
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,Vendeur
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,Vendeur
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,Centre de Budget et Coûts
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,De multiples modes de paiement par défaut ne sont pas autorisés
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,pour le
@ -5549,7 +5554,7 @@ DocType: Program,Program Name,Nom du Programme
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Tenir Compte de la Taxe et des Frais pour
DocType: Driver,Driving License Category,Catégorie de permis de conduire
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,Qté Réelle est obligatoire
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{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.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{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.
DocType: Asset Maintenance Team,Asset Maintenance Team,Équipe de Maintenance des Actifs
DocType: Employee Loan,Loan Type,Type de Prêt
DocType: Scheduling Tool,Scheduling Tool,Outil de Planification

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,લેબ પ્રિસ્ક્ર
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,ભાવ દ્વારા સૉર્ટ કરો
,Delay Days,વિલંબ દિવસો
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,સેવા ખર્ચ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},શૃંખલા ક્રમાંક: {0} પહેલાથી સેલ્સ ઇન્વોઇસ સંદર્ભ થયેલ છે: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},શૃંખલા ક્રમાંક: {0} પહેલાથી સેલ્સ ઇન્વોઇસ સંદર્ભ થયેલ છે: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,ભરતિયું
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,રીટેન્શન સ્ટોક એન્ટ્રી બનાવો
DocType: Purchase Invoice Item,Item Weight Details,આઇટમ વજન વિગતો
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,પિતૃ વિગતવાર do
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","સંદર્ભ: {0}, આઇટમ કોડ: {1} અને ગ્રાહક: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,કિલો ગ્રામ
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,નોકરી માટે ખોલીને.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},{1} પંક્તિ {1} પર ઉપ કોન્ટેક્ટિંગ આઇટમ માટે સ્પષ્ટ નથી BOM
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},{1} પંક્તિ {1} પર ઉપ કોન્ટેક્ટિંગ આઇટમ માટે સ્પષ્ટ નથી BOM
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} પરિણામ મળ્યું
DocType: Item Attribute,Increment,વૃદ્ધિ
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,સમય ગાળો
@ -150,7 +150,7 @@ DocType: Patient,Married,પરણિત
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},માટે પરવાનગી નથી {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,વસ્તુઓ મેળવો
DocType: Price List,Price Not UOM Dependant,ભાવ અમોમ આધારિત નથી
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},સ્ટોક બોલ પર કોઈ નોંધ સામે અપડેટ કરી શકાતું નથી {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},સ્ટોક બોલ પર કોઈ નોંધ સામે અપડેટ કરી શકાતું નથી {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},ઉત્પાદન {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,કોઈ આઇટમ સૂચિબદ્ધ નથી
DocType: Asset Repair,Error Description,ભૂલ વર્ણન
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,સમાધાન
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,કરિયાણા
DocType: Quality Inspection Reading,Reading 1,1 વાંચન
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,પેન્શન ફંડ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,આગળ અવમૂલ્યન તારીખ પહેલાં ખરીદી તારીખ ન હોઈ શકે
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,આગળ અવમૂલ્યન તારીખ પહેલાં ખરીદી તારીખ ન હોઈ શકે
DocType: Crop,Perennial,બારમાસી
DocType: Consultation,Consultation Date,કન્સલ્ટેશન તારીખ
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,ERP નેક્સ્ટ વપરાશકર્તાઓ માટે ઉત્પાદન સૂચિ અને શોધ
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,ખર્ચ કેન્દ્રન
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""",દા.ત. &quot;પ્રાથમિક શાળા&quot; અથવા &quot;યુનિવર્સિટી&quot;
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,સ્ટોક અહેવાલ
DocType: Warehouse,Warehouse Detail,વેરહાઉસ વિગતવાર
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},ક્રેડિટ મર્યાદા ગ્રાહક માટે ઓળંગી કરવામાં આવી છે {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},ક્રેડિટ મર્યાદા ગ્રાહક માટે ઓળંગી કરવામાં આવી છે {0} {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,ટર્મ સમાપ્તિ તારીખ કરતાં પાછળથી શૈક્ષણિક વર્ષ સમાપ્તિ તારીખ જે શબ્દ સાથે કડી થયેલ છે હોઈ શકે નહિં (શૈક્ષણિક વર્ષ {}). તારીખો સુધારવા અને ફરીથી પ્રયાસ કરો.
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","""સ્થિર સંપત્તિ"" અનચેક કરી શકાતી નથી કારણ કે આ વસ્તુ સામે સંપત્તિ વ્યવહાર અસ્તિત્વમાં છે"""
DocType: Delivery Trip,Departure Time,પ્રસ્થાન સમય
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,વિદ્યાર્થી પ્રવે
DocType: Quality Inspection,Get Specification Details,સ્પષ્ટીકરણ વિગતો મેળવવા
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,સપ્લાયર સ્ટેન્ડિંગના નમૂનાઓ.
DocType: Lead,Interested,રસ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,ખુલી
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,ખુલી
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},પ્રતિ {0} માટે {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,કર સેટ કરવામાં નિષ્ફળ
DocType: Item,Copy From Item Group,વસ્તુ ગ્રુપ નકલ
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,તારીખ રાહત જોડાયા તારીખ કરતાં મોટી હોવી જ જોઈએ
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,દર વર્ષે પાંદડાં
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,રો {0}: કૃપા કરીને તપાસો એકાઉન્ટ સામે &#39;અગાઉથી છે&#39; {1} આ એક અગાઉથી પ્રવેશ હોય તો.
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},{0} વેરહાઉસ કંપની ને અનુલક્ષતું નથી {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},{0} વેરહાઉસ કંપની ને અનુલક્ષતું નથી {1}
DocType: Email Digest,Profit & Loss,નફો અને નુકસાન
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,Litre
DocType: Task,Total Costing Amount (via Time Sheet),કુલ પડતર રકમ (સમયનો શીટ મારફતે)
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,દર અને રકમ
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,આ કંપની સામેના વ્યવહારો પર આધારિત છે. વિગતો માટે નીચેની ટાઇમલાઇન જુઓ
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,આપોઆપ સામગ્રી વિનંતી બનાવટ પર ઇમેઇલ દ્વારા સૂચિત
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,રેઝિસ્ટન્ટ
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,કન્સલ્ટેશન
DocType: Journal Entry,Multi Currency,મલ્ટી કરન્સી
DocType: Opening Invoice Creation Tool,Invoice Type,ભરતિયું પ્રકાર
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,ડિલીવરી નોંધ
@ -528,7 +529,6 @@ DocType: Email Digest,Credit Balance,ક્રેડિટ બેલેન્સ
DocType: Employee,Widowed,વિધવા
DocType: Request for Quotation,Request for Quotation,અવતરણ માટે વિનંતી
DocType: Healthcare Settings,Require Lab Test Approval,લેબ ટેસ્ટ મંજૂરીની આવશ્યકતા છે
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,આઇટમ કોડ&gt; આઇટમ ગ્રુપ&gt; બ્રાન્ડ
DocType: Salary Slip Timesheet,Working Hours,કામ નાં કલાકો
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,કુલ ઉત્કૃષ્ટ
DocType: Naming Series,Change the starting / current sequence number of an existing series.,હાલની શ્રેણી શરૂ / વર્તમાન ક્રમ નંબર બદલો.
@ -557,7 +557,7 @@ DocType: Subscription,Yearly,વાર્ષિક
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,ખર્ચ કેન્દ્રને દાખલ કરો
DocType: Drug Prescription,Dosage,ડોઝ
DocType: Journal Entry Account,Sales Order,વેચાણ ઓર્ડર
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,સરેરાશ. વેચાણ દર
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,સરેરાશ. વેચાણ દર
DocType: Assessment Plan,Examiner Name,એક્ઝામિનર નામ
DocType: Lab Test Template,No Result,કોઈ પરિણામ
DocType: Purchase Invoice Item,Quantity and Rate,જથ્થો અને દર
@ -605,6 +605,7 @@ DocType: Employee,Health Concerns,આરોગ્ય ચિંતા
DocType: Payroll Entry,Select Payroll Period,પગારપત્રક અવધિ પસંદ
DocType: Purchase Invoice,Unpaid,અવેતન
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,વેચાણ માટે આરક્ષિત
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,હ્યુમન રિસોર્સ&gt; એચઆર સેટિંગ્સમાં કર્મચારીનું નામકરણ પદ્ધતિ સેટ કરો
DocType: Packing Slip,From Package No.,પેકેજ નંબર પ્રતિ
DocType: Item Attribute,To Range,શ્રેણી
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,સિક્યોરિટીઝ અને થાપણો
@ -629,11 +630,11 @@ DocType: Pricing Rule,Valid Upto,માન્ય સુધી
DocType: Training Event,Workshop,વર્કશોપ
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,ખરીદ ઓર્ડર ચેતવો
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,તમારા ગ્રાહકો થોડા યાદી આપે છે. તેઓ સંસ્થાઓ અથવા વ્યક્તિઓ હોઈ શકે છે.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,પૂરતી ભાગો બિલ્ડ કરવા માટે
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,પૂરતી ભાગો બિલ્ડ કરવા માટે
DocType: POS Profile User,POS Profile User,POS પ્રોફાઇલ વપરાશકર્તા
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,સીધી આવક
DocType: Patient Appointment,Date TIme,તારીખ સમય
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","એકાઉન્ટ દ્વારા જૂથ, તો એકાઉન્ટ પર આધારિત ફિલ્ટર કરી શકો છો"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","એકાઉન્ટ દ્વારા જૂથ, તો એકાઉન્ટ પર આધારિત ફિલ્ટર કરી શકો છો"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,વહીવટી અધિકારીશ્રી
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,કંપની અને ટેક્સની સ્થાપના
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,કૃપા કરીને અભ્યાસક્રમનો પસંદ
@ -643,7 +644,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,તફાવત એકાઉન્ટ
DocType: Purchase Invoice,Supplier GSTIN,પુરવઠોકર્તા GSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,તેના આશ્રિત કાર્ય {0} બંધ નથી નજીક કાર્ય નથી કરી શકો છો.
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,"સામગ્રી વિનંતી ઊભા કરવામાં આવશે, જેના માટે વેરહાઉસ દાખલ કરો"
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,"સામગ્રી વિનંતી ઊભા કરવામાં આવશે, જેના માટે વેરહાઉસ દાખલ કરો"
DocType: Production Order,Additional Operating Cost,વધારાની ઓપરેટીંગ ખર્ચ
DocType: Lab Test Template,Lab Routine,લેબ રાબેતા મુજબનું
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,કોસ્મેટિક્સ
@ -811,7 +812,7 @@ DocType: Employee,Passport Number,પાસપોર્ટ નંબર
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Guardian2 સાથે સંબંધ
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,વ્યવસ્થાપક
DocType: Payment Entry,Payment From / To,ચુકવણી / to
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},નવું ક્રેડિટ મર્યાદા ગ્રાહક માટે વર્તમાન બાકી રકમ કરતાં ઓછી છે. ક્રેડિટ મર્યાદા ઓછામાં ઓછા હોઈ શકે છે {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},નવું ક્રેડિટ મર્યાદા ગ્રાહક માટે વર્તમાન બાકી રકમ કરતાં ઓછી છે. ક્રેડિટ મર્યાદા ઓછામાં ઓછા હોઈ શકે છે {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},વેરહાઉસમાં એકાઉન્ટ સેટ કરો {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,'પર આધારિત' અને 'જૂથ દ્વારા' સમાન ન હોઈ શકે
DocType: Sales Person,Sales Person Targets,વેચાણ વ્યક્તિ લક્ષ્યાંક
@ -822,7 +823,7 @@ DocType: Lab Test Template,Compound,કમ્પાઉન્ડ
DocType: Student Batch Name,Batch Name,બેચ નામ
DocType: Fee Validity,Max number of visit,મુલાકાતની મહત્તમ સંખ્યા
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,Timesheet બનાવવામાં:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},ચૂકવણીની પદ્ધતિ મૂળભૂત કેશ અથવા બેન્ક એકાઉન્ટ સેટ કરો {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},ચૂકવણીની પદ્ધતિ મૂળભૂત કેશ અથવા બેન્ક એકાઉન્ટ સેટ કરો {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,નોંધણી
DocType: GST Settings,GST Settings,જીએસટી સેટિંગ્સ
DocType: Selling Settings,Customer Naming By,કરીને ગ્રાહક નામકરણ
@ -946,7 +947,7 @@ DocType: Delivery Note,Customer's Purchase Order No,ગ્રાહક ખરી
DocType: Budget,Budget Against,બજેટ સામે
DocType: Employee,Cell Number,સેલ સંખ્યા
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,આપેલ માપદંડ માટે કોઈ કર્મચારી નથી. તપાસ કરો કે પગાર સ્લિપ પહેલેથી જ બનાવવામાં આવી નથી.
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,ઓટો સામગ્રી અરજીઓ પેદા
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,ઓટો સામગ્રી અરજીઓ પેદા
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,લોસ્ટ
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,તમે સ્તંભ &#39;જર્નલ પ્રવેશ સામે વર્તમાન વાઉચર દાખલ નહીં કરી શકો
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,ઉત્પાદન માટે અનામત
@ -954,7 +955,7 @@ DocType: Soil Texture,Sand,રેતી
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,એનર્જી
DocType: Opportunity,Opportunity From,પ્રતિ તક
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,માસિક પગાર નિવેદન.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,પંક્તિ {0}: {1} વસ્તુ {2} માટે આવશ્યક ક્રમાંક ક્રમાંક. તમે {3} પ્રદાન કરેલ છે
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,પંક્તિ {0}: {1} વસ્તુ {2} માટે આવશ્યક ક્રમાંક ક્રમાંક. તમે {3} પ્રદાન કરેલ છે
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,કોષ્ટક પસંદ કરો
DocType: BOM,Website Specifications,વેબસાઇટ તરફથી
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} &#39;પ્રાપ્તકર્તાઓ&#39; માં અયોગ્ય ઇમેઇલ સરનામું છે
@ -1023,7 +1024,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,ભાવની વિનંતી કરી
DocType: Vital Signs,Heart Rate / Pulse,હાર્ટ રેટ / પલ્સ
DocType: Company,Default Bank Account,મૂળભૂત બેન્ક એકાઉન્ટ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","પાર્ટી પર આધારિત ફિલ્ટર કરવા માટે, પસંદ પાર્ટી પ્રથમ પ્રકાર"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","પાર્ટી પર આધારિત ફિલ્ટર કરવા માટે, પસંદ પાર્ટી પ્રથમ પ્રકાર"
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},'અદ્યતન સ્ટોક' ચેક ના કરી શકાય કારણ કે વસ્તુઓ {0}મારફતે વિતરિત કરેલ નથી
DocType: Vehicle,Acquisition Date,સંપાદન તારીખ
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,અમે
@ -1047,7 +1048,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),તમારા અક્ષર વડાને અપલોડ કરો (તેને વેબ તરીકે મૈત્રીપૂર્ણ રાખો 900px દ્વારા 100px)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: એકાઉન્ટ {2} એક જૂથ હોઈ શકે છે
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,વસ્તુ રો {IDX}: {Doctype} {DOCNAME} ઉપર અસ્તિત્વમાં નથી &#39;{Doctype}&#39; ટેબલ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,Timesheet {0} પહેલેથી જ પૂર્ણ અથવા રદ થયેલ છે
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,Timesheet {0} પહેલેથી જ પૂર્ણ અથવા રદ થયેલ છે
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,કોઈ કાર્યો
DocType: Item Variant Settings,Copy Fields to Variant,ફીલ્ડ્સ ટુ વેરિએન્ટને કૉપિ કરો
DocType: Asset,Opening Accumulated Depreciation,ખુલવાનો સંચિત અવમૂલ્યન
@ -1159,9 +1160,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,પેટા-સ્થળોના માટે યોજના સામગ્રી
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,સેલ્સ પાર્ટનર્સ અને પ્રદેશ
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,BOM {0} સક્રિય હોવા જ જોઈએ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),સમાપન (ખુલીને + કુલ)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),સમાપન (ખુલીને + કુલ)
DocType: Journal Entry,Depreciation Entry,અવમૂલ્યન એન્ટ્રી
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,પ્રથમ દસ્તાવેજ પ્રકાર પસંદ કરો
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,એકાઉન્ટ ચલણમાં છાપો
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,આ જાળવણી મુલાકાત લો રદ રદ સામગ્રી મુલાકાત {0}
DocType: Crop Cycle,ISO 8016 standard,આઇએસઓ 8016 સ્ટાન્ડર્ડ
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},સીરીયલ કોઈ {0} વસ્તુ ને અનુલક્ષતું નથી {1}
@ -1187,7 +1189,7 @@ DocType: Purchase Receipt,Range,રેંજ
DocType: Supplier,Default Payable Accounts,મૂળભૂત ચૂકવવાપાત્ર હિસાબ
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,{0} કર્મચારીનું સક્રિય નથી અથવા અસ્તિત્વમાં નથી
DocType: Fee Structure,Components,ઘટકો
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},વસ્તુ દાખલ કરો એસેટ વર્ગ {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},વસ્તુ દાખલ કરો એસેટ વર્ગ {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,વસ્તુ ચલો {0} સુધારાશે
DocType: Quality Inspection Reading,Reading 6,6 વાંચન
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1239,6 +1241,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,કંપની નું નામ
DocType: SMS Center,Total Message(s),કુલ સંદેશ (ઓ)
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,ટ્રાન્સફર માટે પસંદ વસ્તુ
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,{0} સેટઅપ&gt; સેટિંગ્સ&gt; નામકરણની શ્રેણી માટે નામકરણ શ્રેણી સેટ કરો
DocType: Purchase Invoice,Additional Discount Percentage,વધારાના ડિસ્કાઉન્ટ ટકાવારી
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,તમામ મદદ વિડિઓઝ યાદી જુઓ
DocType: Agriculture Analysis Criteria,Soil Texture,માટી સંરચના
@ -1266,7 +1269,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,BOM વેબસાઇટ વસ્તુ
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,તમારો પત્ર વડા અને લોગો અપલોડ કરો. (જો તમે પછીથી તેમને ફેરફાર કરી શકો છો).
DocType: Timesheet Detail,Bill,બિલ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,આગળ અવમૂલ્યન તારીખ છેલ્લા તારીખ તરીકે દાખલ થયેલ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,આગળ અવમૂલ્યન તારીખ છેલ્લા તારીખ તરીકે દાખલ થયેલ
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,વ્હાઇટ
DocType: SMS Center,All Lead (Open),બધા સીસું (ઓપન)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),રો {0}: Qty માટે ઉપલબ્ધ નથી {4} વેરહાઉસ {1} પ્રવેશ સમયે પોસ્ટ પર ({2} {3})
@ -1282,7 +1285,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,આગામી સંપર્ક તારીખ
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,Qty ખુલવાનો
DocType: Healthcare Settings,Appointment Reminder,નિમણૂંક રીમાઇન્ડર
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,જથ્થો બદલી માટે એકાઉન્ટ દાખલ કરો
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,જથ્થો બદલી માટે એકાઉન્ટ દાખલ કરો
DocType: Program Enrollment Tool Student,Student Batch Name,વિદ્યાર્થી બેચ નામ
DocType: Consultation,Doctor,ડોક્ટર
DocType: Holiday List,Holiday List Name,રજા યાદી નામ
@ -1298,6 +1301,7 @@ DocType: Patient,Patient Relation,પેશન્ટ રિલેશન
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,ફાળવણી સાધન મૂકો
DocType: Item,Hub Category to Publish,પ્રકાશિત હબ શ્રેણી
DocType: Leave Block List,Leave Block List Dates,બ્લોક યાદી તારીખો છોડો
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,કૃપા કરીને સેટઅપ&gt; ક્રમાંકન શ્રેણી દ્વારા હાજરી માટે શ્રેણી ક્રમાંક સેટ કરો
DocType: Sales Invoice,Billing Address GSTIN,બિલિંગ સરનામું GSTIN
DocType: Assessment Plan,Evaluate,મૂલ્યાંકન કરો
DocType: Workstation,Net Hour Rate,નેટ કલાક દર
@ -1331,7 +1335,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,ખરીદી રસીદ વ
DocType: Purchase Receipt,PREC-RET-,PREC-RET-
DocType: POS Profile,Sales Invoice Payment,વેચાણ ભરતિયું ચુકવણી
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,સેલ્સ ઓર્ડર / ફિનિશ્ડ ગૂડ્સ વેરહાઉસ માં અનામત વેરહાઉસ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,વેચાણ રકમ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,વેચાણ રકમ
DocType: Repayment Schedule,Interest Amount,વ્યાજ રકમ
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,તમે આ રેકોર્ડ માટે ખર્ચ તાજનો છે. જો &#39;પરિસ્થિતિ&#39; અને સાચવો અપડેટ કરો
DocType: Serial No,Creation Document No,બનાવટ દસ્તાવેજ કોઈ
@ -1422,7 +1426,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,ખુલવાનો હિસાબી બેલેન્સ
,GST Sales Register,જીએસટી સેલ્સ રજિસ્ટર
DocType: Sales Invoice Advance,Sales Invoice Advance,સેલ્સ ભરતિયું એડવાન્સ
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,કંઈ વિનંતી કરવા
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,કંઈ વિનંતી કરવા
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,તમારા ડોમેન્સ પસંદ કરો
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},અન્ય બજેટ રેકોર્ડ &#39;{0}&#39; પહેલાથી જ સામે અસ્તિત્વમાં {1} &#39;{2}&#39; નાણાકીય વર્ષ માટે {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,બનાવટના સમયે જ ક્ષેત્રોની નકલ કરવામાં આવશે.
@ -1432,11 +1436,11 @@ DocType: Cheque Print Template,Payer Settings,ચુકવણીકાર સે
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","આ ચલ વસ્તુ કોડ ઉમેરાવું કરવામાં આવશે. તમારા સંક્ષેપ &quot;શૌન&quot; છે, અને ઉદાહરણ તરીકે, જો આઇટમ કોડ &quot;ટી શર્ટ&quot;, &quot;ટી-શર્ટ શૌન&quot; હશે ચલ આઇટમ કોડ છે"
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,તમે પગાર કાપલી સેવ વાર (શબ્દોમાં) નેટ પે દૃશ્યમાન થશે.
DocType: Purchase Invoice,Is Return,વળતર છે
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,સાવધાન
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,સાવધાન
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,રીટર્ન / ડેબિટ નોટ
DocType: Price List Country,Price List Country,ભાવ યાદી દેશ
DocType: Item,UOMs,UOMs
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} વસ્તુ માટે માન્ય સીરીયલ અમે {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} વસ્તુ માટે માન્ય સીરીયલ અમે {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,વસ્તુ કોડ સીરીયલ નંબર માટે બદલી શકાતું નથી
DocType: Purchase Invoice Item,UOM Conversion Factor,UOM રૂપાંતર ફેક્ટર
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,બેચ નંબર મેળવવા માટે વસ્તુ કોડ દાખલ કરો
@ -1540,7 +1544,7 @@ DocType: Journal Entry,Get Outstanding Invoices,બાકી ઇન્વૉઇ
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,વેચાણ ઓર્ડર {0} માન્ય નથી
DocType: Supplier Scorecard,Warn for new Request for Quotations,સુવાકયો માટે નવી વિનંતી માટે ચેતવો
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,ખરીદી ઓર્ડર કરવાની યોજના ઘડી મદદ અને તમારી ખરીદી પર અનુસરો
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","માફ કરશો, કંપનીઓ મર્જ કરી શકાતા નથી"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","માફ કરશો, કંપનીઓ મર્જ કરી શકાતા નથી"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,લેબ ટેસ્ટ પ્રિસ્ક્રિપ્શન્સ
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",કુલ અંક / ટ્રાન્સફર જથ્થો {0} સામગ્રી વિનંતી {1} \ વસ્તુ માટે વિનંતી જથ્થો {2} કરતાં વધારે ન હોઈ શકે {3}
@ -1578,7 +1582,6 @@ DocType: Vehicle,Fuel UOM,ફ્યુઅલ UOM
DocType: Warehouse,Warehouse Contact Info,વેરહાઉસ સંપર્ક માહિતી
DocType: Payment Entry,Write Off Difference Amount,માંડવાળ તફાવત રકમ
DocType: Volunteer,Volunteer Name,સ્વયંસેવક નામ
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,શિક્ષણ&gt; શૈક્ષણિક સેટિંગ્સમાં પ્રશિક્ષક નેમિંગ સિસ્ટમ સેટ કરો
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0}: કર્મચારીનું ઇમેઇલ મળી નથી, તેથી નથી મોકલવામાં ઇમેઇલ"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},શીપીંગ નિયમ દેશ {0} માટે લાગુ નથી
DocType: Item,Foreign Trade Details,ફોરેન ટ્રેડ વિગતો
@ -1590,7 +1593,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,ગ્રુપ રોલ નંબર
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry","{0}, માત્ર ક્રેડિટ ખાતાઓ અન્ય ડેબિટ પ્રવેશ સામે લિંક કરી શકો છો"
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,બધા કાર્ય વજન કુલ પ્રયત્ન કરીશું 1. મુજબ બધા પ્રોજેક્ટ કાર્યો વજન સંતુલિત કૃપા કરીને
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,ડ લવર નોંધ {0} અપર્ણ ન કરાય
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,ડ લવર નોંધ {0} અપર્ણ ન કરાય
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,વસ્તુ {0} એ પેટા કોન્ટ્રાક્ટ વસ્તુ જ હોવી જોઈએ
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,કેપિટલ સાધનો
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","પ્રાઇસીંગ નિયમ પ્રથમ પર આધારિત પસંદ થયેલ વસ્તુ, આઇટમ ગ્રુપ અથવા બ્રાન્ડ બની શકે છે, જે ક્ષેત્ર &#39;પર લાગુ પડે છે."
@ -1615,7 +1618,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,બાળ વેરહાઉસ આ વેરહાઉસ માટે અસ્તિત્વમાં છે. તમે આ વેરહાઉસ કાઢી શકતા નથી.
DocType: Item,Website Item Groups,વેબસાઇટ વસ્તુ જૂથો
DocType: Purchase Invoice,Total (Company Currency),કુલ (કંપની ચલણ)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,{0} સીરીયલ નંબર એક કરતા વધુ વખત દાખલ
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,{0} સીરીયલ નંબર એક કરતા વધુ વખત દાખલ
DocType: Journal Entry,Journal Entry,જર્નલ પ્રવેશ
DocType: Expense Claim Advance,Unclaimed amount,દાવો ન કરેલા રકમ
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} પ્રગતિ વસ્તુઓ
@ -1711,7 +1714,7 @@ DocType: Email Digest,For Company,કંપની માટે
apps/erpnext/erpnext/config/support.py +17,Communication log.,કોમ્યુનિકેશન લોગ.
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.",અવતરણ માટે વિનંતી વધુ ચેક પોર્ટલ સેટિંગ્સ માટે પોર્ટલ ઍક્સેસ અક્ષમ છે.
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,સપ્લાયર સ્કોરકાર્ડ સ્કોરિંગ વેરિયેબલ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,ખરીદી રકમ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,ખરીદી રકમ
DocType: Sales Invoice,Shipping Address Name,શિપિંગ સરનામું નામ
DocType: Material Request,Terms and Conditions Content,નિયમો અને શરતો સામગ્રી
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,કોર્સ શેડ્યૂલ બનાવતી ભૂલો હતી
@ -1974,7 +1977,7 @@ DocType: Expense Claim,Total Amount Reimbursed,કુલ રકમ reimbursed
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,આ વાહન સામે લોગ પર આધારિત છે. વિગતો માટે નીચે જુઓ ટાઇમલાઇન
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},પુરવઠોકર્તા સામે ભરતિયું {0} ના રોજ {1}
DocType: Customer,Default Price List,ડિફૉલ્ટ ભાવ યાદી
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,એસેટ ચળવળ રેકોર્ડ {0} બનાવવામાં
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,એસેટ ચળવળ રેકોર્ડ {0} બનાવવામાં
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,તમે કાઢી શકતા નથી ફિસ્કલ વર્ષ {0}. ફિસ્કલ વર્ષ {0} વૈશ્વિક સેટિંગ્સ મૂળભૂત તરીકે સુયોજિત છે
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,સમાન નામની ગ્રાહક પહેલેથી હાજર છે
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,આ પગાર સ્લિપ રજૂ કરશે અને એક્ઝ્ર્યુબલ જર્નલ એન્ટ્રી બનાવશે. શું તમે આગળ વધવા માંગો છો?
@ -1988,6 +1991,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,પ્રાઇસીંગ
DocType: Quotation,Term Details,શબ્દ વિગતો
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,{0} આ વિદ્યાર્થી જૂથ માટે વિદ્યાર્થીઓ કરતાં વધુ નોંધણી કરી શકતા નથી.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),કુલ (કર વગર)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,લીડ કાઉન્ટ
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} 0 કરતાં મોટી હોવી જ જોઈએ
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,ઉપલબ્ધ સ્ટોક
@ -2006,7 +2010,6 @@ DocType: Lab Test,Technician Name,ટેક્નિશિયન નામ
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,ભરતિયું રદ પર ચુકવણી નાપસંદ
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},વર્તમાન ઑડોમીટર વાંચન દાખલ પ્રારંભિક વાહન ઑડોમીટર કરતાં મોટી હોવી જોઈએ {0}
DocType: Restaurant Reservation,No Show,બતાવો નહીં
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,{0} સેટઅપ&gt; સેટિંગ્સ&gt; નામકરણની શ્રેણી માટે નામકરણ શ્રેણી સેટ કરો
DocType: Shipping Rule Country,Shipping Rule Country,શીપીંગ નિયમ દેશ
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,છોડો અને હાજરી
DocType: Maintenance Visit,Partially Completed,આંશિક રીતે પૂર્ણ
@ -2097,7 +2100,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,વિદ્યાર્થીઓની જૂથ પ્રશિક્ષક
DocType: Grant Application,Assessment Mark (Out of 10),આકારણી માર્ક (10 માંથી)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 મોબાઇલ કોઈ
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,મુખ્ય
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,મુખ્ય
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,વેરિએન્ટ
DocType: Naming Series,Set prefix for numbering series on your transactions,તમારા વ્યવહારો પર શ્રેણી નંબર માટે સેટ ઉપસર્ગ
DocType: Employee Attendance Tool,Employees HTML,કર્મચારીઓ HTML
@ -2145,7 +2148,7 @@ DocType: Crop,Crop Spacing,ક્રોપ અંતર
DocType: Course,Course Abbreviation,કોર્સ સંક્ષેપનો
DocType: Student Leave Application,Student Leave Application,વિદ્યાર્થી છોડો અરજી
DocType: Item,Will also apply for variants,પણ ચલો માટે લાગુ પડશે
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}",એસેટ રદ કરી શકાતી નથી કારણ કે તે પહેલેથી જ છે {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}",એસેટ રદ કરી શકાતી નથી કારણ કે તે પહેલેથી જ છે {0}
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},કર્મચારીનું {0} પર અડધા દિવસ પર {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},કુલ કામના કલાકો મેક્સ કામના કલાકો કરતાં વધારે ન હોવી જોઈએ {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,પર
@ -2329,9 +2332,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),વાસ્તવિક ઓવરને તારીખ (સમયનો શીટ મારફતે)
DocType: Soil Texture,Soil Type,જમીન પ્રકાર
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},રકમ {0} {1} સામે {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,નવો સંદેશ
,Quotation Trends,અવતરણ પ્રવાહો
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},વસ્તુ ગ્રુપ આઇટમ માટે વસ્તુ માસ્ટર ઉલ્લેખ નથી {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,એકાઉન્ટ ડેબિટ એક પ્રાપ્ત એકાઉન્ટ હોવું જ જોઈએ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,એકાઉન્ટ ડેબિટ એક પ્રાપ્ત એકાઉન્ટ હોવું જ જોઈએ
DocType: Shipping Rule,Shipping Amount,શીપીંગ રકમ
DocType: Supplier Scorecard Period,Period Score,પીરિયડ સ્કોર
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,ગ્રાહકો ઉમેરો
@ -2342,7 +2346,7 @@ DocType: Purchase Order,Delivered,વિતરિત
,Vehicle Expenses,વાહન ખર્ચ
DocType: Serial No,Invoice Details,ઇન્વૉઇસ વિગતો
DocType: Grant Application,Show on Website,વેબસાઇટ પર બતાવો
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},ઉપયોગી જીવન પછી અપેક્ષિત કિંમત કરતાં વધારે અથવા બરાબર હોવું જોઈએ {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},ઉપયોગી જીવન પછી અપેક્ષિત કિંમત કરતાં વધારે અથવા બરાબર હોવું જોઈએ {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,પ્રારંભ કરો
DocType: Hub Category,Hub Category,હબ કેટેગરી
DocType: Purchase Invoice,SEZ,સેઝ
@ -2373,7 +2377,7 @@ DocType: Patient,Patient Details,પેશન્ટ વિગતો
DocType: Patient,B Positive,બી હકારાત્મક
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","રો # {0}: Qty, 1 હોવું જ જોઈએ, કારણ કે આઇટમ એક સ્થિર એસેટ છે. બહુવિધ Qty માટે અલગ પંક્તિ ઉપયોગ કરો."
DocType: Leave Block List Allow,Leave Block List Allow,બ્લોક પરવાનગી સૂચિ છોડો
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,સંક્ષિપ્ત ખાલી અથવા જગ્યા ન હોઈ શકે
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,સંક્ષિપ્ત ખાલી અથવા જગ્યા ન હોઈ શકે
DocType: Patient Medical Record,Patient Medical Record,પેશન્ટ મેડિકલ રેકોર્ડ
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,બિન-ગ્રુપ ગ્રુપ
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,રમતો
@ -2423,6 +2427,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,કોઈ ક્વોટ માટે પ્રાપ્ત કરેલ આરએફક્યુને સેટ કરી શકતા નથી
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,કુલ કપાત
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,એકાઉન્ટ ચલણમાં છાપવા માટે એક એકાઉન્ટ પસંદ કરો
,Production Analytics,ઉત્પાદન ઍનલિટિક્સ
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,આ પેશન્ટ સામેના વ્યવહારો પર આધારિત છે. વિગતો માટે નીચેની ટાઇમલાઇન જુઓ
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,કિંમત સુધારાશે
@ -2477,7 +2482,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,આ
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,કંપની પસંદ કરો ...
DocType: Leave Control Panel,Leave blank if considered for all departments,તમામ વિભાગો માટે ગણવામાં તો ખાલી છોડી દો
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","રોજગાર પ્રકાર (કાયમી, કરાર, ઇન્ટર્ન વગેરે)."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} વસ્તુ માટે ફરજિયાત છે {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} વસ્તુ માટે ફરજિયાત છે {1}
DocType: Payroll Entry,Fortnightly,પાક્ષિક
DocType: Currency Exchange,From Currency,ચલણ
DocType: Vital Signs,Weight (In Kilogram),વજન (કિલોગ્રામમાં)
@ -2553,7 +2558,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),મૂળભૂત ર
DocType: Student,Guardians,વાલીઓ
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,કિંમતો બતાવવામાં આવશે નહીં તો ભાવ સૂચિ સેટ નથી
DocType: Stock Entry,Total Incoming Value,કુલ ઇનકમિંગ ભાવ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,ડેબિટ કરવા માટે જરૂરી છે
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,ડેબિટ કરવા માટે જરૂરી છે
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Timesheets મદદ તમારી ટીમ દ્વારા કરવામાં activites માટે સમય, ખર્ચ અને બિલિંગ ટ્રેક રાખવા"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,ખરીદી ભાવ યાદી
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,સપ્લાયર સ્કોરકાર્ડ ચલોના નમૂનાઓ.
@ -2653,7 +2658,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,સંદર્ભ માટે માત્ર.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},ફિઝિશિયન {0} {1} પર ઉપલબ્ધ નથી
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,બેચ પસંદ કોઈ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},અમાન્ય {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},અમાન્ય {0}: {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Fee Validity,Reference Inv,સંદર્ભ INV
@ -2690,8 +2695,8 @@ DocType: Fees,Send Payment Request,ચુકવણી વિનંતી મો
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","કામગીરી, સંચાલન ખર્ચ સ્પષ્ટ અને તમારી કામગીરી કરવા માટે કોઈ એક અનન્ય ઓપરેશન આપે છે."
DocType: Water Analysis,Origin,મૂળ
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,આ દસ્તાવેજ દ્વારા મર્યાદા વધારે છે {0} {1} આઇટમ માટે {4}. તમે બનાવે છે અન્ય {3} જ સામે {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,બચત પછી રિકરિંગ સુયોજિત કરો
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,પસંદ કરો ફેરફાર રકમ એકાઉન્ટ
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,બચત પછી રિકરિંગ સુયોજિત કરો
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,પસંદ કરો ફેરફાર રકમ એકાઉન્ટ
DocType: Purchase Invoice,Price List Currency,ભાવ યાદી કરન્સી
DocType: Naming Series,User must always select,વપરાશકર્તા હંમેશા પસંદ કરવી જ પડશે
DocType: Stock Settings,Allow Negative Stock,નકારાત્મક સ્ટોક પરવાનગી આપે છે
@ -2747,7 +2752,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,જાળવણ
DocType: Supplier Scorecard,Warn for new Purchase Orders,નવા ખરીદ ઓર્ડર્સ માટે ચેતવણી આપો
DocType: Quality Inspection Reading,Reading 9,9 વાંચન
DocType: Supplier,Is Frozen,સ્થિર છે
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,ગ્રુપ નોડ વેરહાઉસ વ્યવહારો માટે પસંદ કરવા માટે મંજૂરી નથી
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,ગ્રુપ નોડ વેરહાઉસ વ્યવહારો માટે પસંદ કરવા માટે મંજૂરી નથી
DocType: Buying Settings,Buying Settings,ખરીદી સેટિંગ્સ
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,એક ફિનિશ્ડ કોઈ વસ્તુ માટે BOM નંબર
DocType: Upload Attendance,Attendance To Date,તારીખ હાજરી
@ -2761,6 +2766,7 @@ DocType: Offer Letter,Accepted,સ્વીકારાયું
DocType: Grant Application,Organization,સંસ્થા
DocType: BOM Update Tool,BOM Update Tool,BOM અપડેટ ટૂલ
DocType: SG Creation Tool Course,Student Group Name,વિદ્યાર્થી જૂથ નામ
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,વિસ્ફોટ દૃશ્ય બતાવો
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,ફી બનાવવી
apps/erpnext/erpnext/setup/doctype/company/company.js +91,Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone.,શું તમે ખરેખર આ કંપની માટે તમામ વ્યવહારો કાઢી નાખવા માંગો છો તેની ખાતરી કરો. તે છે તમારા માસ્ટર ડેટા રહેશે. આ ક્રિયા પૂર્વવત્ કરી શકાતી નથી.
DocType: Room,Room Number,રૂમ સંખ્યા
@ -2771,7 +2777,7 @@ DocType: Journal Entry Account,Payroll Entry,પેરોલ એન્ટ્ર
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,કરવેરા નમૂના બનાવો
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,વપરાશકર્તા ફોરમ
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,કાચો માલ ખાલી ન હોઈ શકે.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","સ્ટોક અપડેટ કરી શકાયું નથી, ભરતિયું ડ્રોપ શીપીંગ વસ્તુ છે."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","સ્ટોક અપડેટ કરી શકાયું નથી, ભરતિયું ડ્રોપ શીપીંગ વસ્તુ છે."
DocType: Lab Test Sample,Lab Test Sample,લેબ ટેસ્ટ નમૂના
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,ઝડપી જર્નલ પ્રવેશ
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,BOM કોઈપણ વસ્તુ agianst ઉલ્લેખ તો તમે દર બદલી શકતા નથી
@ -2842,7 +2848,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,અમેરીકન ડોલર્સ
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,ઇન્વોઇસ બનાવો
DocType: Selling Settings,Auto close Opportunity after 15 days,15 દિવસ પછી ઓટો બંધ તકો
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,{1} ના સ્કોરકાર્ડ સ્ટેન્ડને કારણે {0} ખરીદીના ઓર્ડર્સની મંજૂરી નથી.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,{1} ના સ્કોરકાર્ડ સ્ટેન્ડને કારણે {0} ખરીદીના ઓર્ડર્સની મંજૂરી નથી.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,સમાપ્તિ વર્ષ
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Quot / લીડ%
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,કરારનો અંત તારીખ જોડાયા તારીખ કરતાં મોટી હોવી જ જોઈએ
@ -2933,7 +2939,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90-ઉપર
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,રો # {0}: જર્નલ પ્રવેશ {1} એકાઉન્ટ નથી {2} અથવા પહેલાથી જ બીજા વાઉચર સામે મેળ ખાતી
DocType: Supplier Scorecard Criteria,Criteria Weight,માપદંડ વજન
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,પુરવઠોકર્તા&gt; પુરવઠોકર્તા પ્રકાર
DocType: Buying Settings,Default Buying Price List,ડિફૉલ્ટ ખરીદી ભાવ યાદી
DocType: Payroll Entry,Salary Slip Based on Timesheet,પગાર કાપલી Timesheet પર આધારિત
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,ખરીદ દર
@ -3021,7 +3026,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,ટ્રેક ઉદ્યોગ પ્રકાર દ્વારા દોરી જાય છે.
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,લેટરહેડ્સ પર જાઓ
DocType: Item Supplier,Item Supplier,વસ્તુ પુરવઠોકર્તા
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,બેચ કોઈ વિચાર વસ્તુ કોડ દાખલ કરો
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,બેચ કોઈ વિચાર વસ્તુ કોડ દાખલ કરો
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},{0} quotation_to માટે નીચેની પસંદ કરો {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,બધા સંબોધે છે.
DocType: Company,Stock Settings,સ્ટોક સેટિંગ્સ
@ -3198,6 +3203,7 @@ DocType: Employee Loan,Loan Details,લોન વિગતો
DocType: Company,Default Inventory Account,ડિફૉલ્ટ ઈન્વેન્ટરી એકાઉન્ટ
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,રો {0}: પૂર્ણ Qty શૂન્ય કરતાં મોટી હોવી જ જોઈએ.
DocType: Antibiotic,Antibiotic Name,એન્ટિબાયોટિક નામ
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,આઇટમ કોડ&gt; આઇટમ ગ્રુપ&gt; બ્રાન્ડ
DocType: Purchase Invoice,Apply Additional Discount On,વધારાના ડિસ્કાઉન્ટ પર લાગુ પડે છે
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,પ્રકાર પસંદ કરો ...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,ક્રોપ વધતી જતી તમામ જમીન એકમોની લિંક
@ -3390,6 +3396,7 @@ DocType: Guardian Student,Guardian Student,ગાર્ડિયન સ્ટુ
DocType: Supplier,Credit Limit,ક્રેડિટ મર્યાદા
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,સરેરાશ ભાવ યાદી દર વેચાણ
DocType: Production Plan Sales Order,Salse Order Date,Salse ઓર્ડર તારીખ
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,પુરવઠોકર્તા&gt; પુરવઠોકર્તા પ્રકાર
DocType: Salary Component,Salary Component,પગાર પુન
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,ચુકવણી પ્રવેશો {0} યુએન સાથે જોડાયેલી છે
DocType: GL Entry,Voucher No,વાઉચર કોઈ
@ -3398,7 +3405,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,સૌથી વ
DocType: Leave Allocation,Leave Allocation,ફાળવણી છોડો
DocType: Payment Request,Recipient Message And Payment Details,પ્રાપ્તિકર્તા સંદેશ અને ચુકવણી વિગતો
DocType: Training Event,Trainer Email,ટ્રેનર ઇમેઇલ
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,બનાવવામાં સામગ્રી અરજીઓ {0}
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,બનાવવામાં સામગ્રી અરજીઓ {0}
DocType: Restaurant Reservation,No of People,લોકોની સંખ્યા
DocType: Production Planning Tool,Include sub-contracted raw materials,પેટા કોન્ટ્રાક્ટ કાચી સામગ્રી સમાવેશ થાય છે
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,શરતો અથવા કરારની ઢાંચો.
@ -3462,7 +3469,7 @@ DocType: Landed Cost Item,Receipt Document,રસીદ દસ્તાવેજ
DocType: Production Planning Tool,Create Material Requests,સામગ્રી અરજીઓ બનાવો
DocType: Employee Education,School/University,શાળા / યુનિવર્સિટી
DocType: Payment Request,Reference Details,સંદર્ભ વિગતો
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,ઈચ્છિત કિંમત ઉપયોગી જીવન પછી ગ્રોસ ખરીદી જથ્થો કરતાં ઓછી હોવી જોઈએ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,ઈચ્છિત કિંમત ઉપયોગી જીવન પછી ગ્રોસ ખરીદી જથ્થો કરતાં ઓછી હોવી જોઈએ
DocType: Sales Invoice Item,Available Qty at Warehouse,વેરહાઉસ ખાતે ઉપલબ્ધ Qty
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,ગણાવી રકમ
DocType: Asset,Double Declining Balance,ડબલ કથળતું જતું બેલેન્સ
@ -3474,7 +3481,7 @@ DocType: Attendance,On Leave,રજા પર
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,સુધારાઓ મેળવો
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: એકાઉન્ટ {2} કંપની ને અનુલક્ષતું નથી {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,દરેક લક્ષણોમાંથી ઓછામાં ઓછો એક મૂલ્ય પસંદ કરો
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,સામગ્રી વિનંતી {0} રદ અથવા બંધ છે
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,સામગ્રી વિનંતી {0} રદ અથવા બંધ છે
apps/erpnext/erpnext/config/hr.py +310,Leave Management,મેનેજમેન્ટ છોડો
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,એકાઉન્ટ દ્વારા ગ્રુપ
DocType: Sales Order,Fully Delivered,સંપૂર્ણપણે વિતરિત
@ -3485,14 +3492,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},વિતરિત રકમ લોન રકમ કરતાં વધારે ન હોઈ શકે {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,પ્રોગ્રામ્સ પર જાઓ
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},રો {0} # ફાળવેલ રકમ {1} દાવો ન કરેલા રકમ કરતાં વધુ હોઈ શકતી નથી {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,કૃપા કરીને સેટઅપ&gt; ક્રમાંકન શ્રેણી દ્વારા હાજરી માટે શ્રેણી ક્રમાંક સેટ કરો
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},વસ્તુ માટે જરૂરી ઓર્ડર નંબર ખરીદી {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,ઉત્પાદન ઓર્ડર બનાવવામાં આવી ન
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','તારીખ થી' પછી જ ’તારીખ સુધી’ હોવી જોઈએ
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},વિદ્યાર્થી તરીકે સ્થિતિ બદલી શકાતું નથી {0} વિદ્યાર્થી અરજી સાથે કડી થયેલ છે {1}
DocType: Asset,Fully Depreciated,સંપૂર્ણપણે અવમૂલ્યન
,Stock Projected Qty,સ્ટોક Qty અંદાજિત
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},સંબંધ નથી {0} ગ્રાહક પ્રોજેક્ટ {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},સંબંધ નથી {0} ગ્રાહક પ્રોજેક્ટ {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,નોંધપાત્ર હાજરી HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers",સુવાકયો દરખાસ્તો બિડ તમે તમારા ગ્રાહકો માટે મોકલી છે
DocType: Sales Order,Customer's Purchase Order,ગ્રાહક ખરીદી ઓર્ડર
@ -3576,7 +3582,7 @@ DocType: Salary Slip,Hour Rate,કલાક દર
DocType: Stock Settings,Item Naming By,આઇટમ દ્વારા નામકરણ
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},અન્ય પીરિયડ બંધ એન્ટ્રી {0} પછી કરવામાં આવી છે {1}
DocType: Production Order,Material Transferred for Manufacturing,સામગ્રી ઉત્પાદન માટે તબદીલ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,એકાઉન્ટ {0} નથી અસ્તિત્વમાં
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,એકાઉન્ટ {0} નથી અસ્તિત્વમાં
DocType: Project,Project Type,પ્રોજેક્ટ પ્રકાર
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,આ કાર્ય માટે બાળ કાર્ય અસ્તિત્વમાં છે. તમે આ ટાસ્કને કાઢી શકતા નથી.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,ક્યાં લક્ષ્ય Qty અથવા લક્ષ્ય રકમ ફરજિયાત છે.
@ -3678,11 +3684,11 @@ DocType: C-Form,I,હું
DocType: Company,Asset Depreciation Cost Center,એસેટ અવમૂલ્યન કિંમત કેન્દ્ર
DocType: Sales Order Item,Sales Order Date,સેલ્સ ઓર્ડર તારીખ
DocType: Sales Invoice Item,Delivered Qty,વિતરિત Qty
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,કુલ Excl ટેક્સ
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","જો ચકાસાયેલ છે, દરેક ઉત્પાદન વસ્તુ તમામ બાળકો સામગ્રી અરજીઓ સમાવવામાં આવશે."
DocType: Assessment Plan,Assessment Plan,આકારણી યોજના
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,ગ્રાહક {0} બનાવવામાં આવેલ છે
DocType: Stock Settings,Limit Percent,મર્યાદા ટકા
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,શિક્ષણ&gt; શૈક્ષણિક સેટિંગ્સમાં પ્રશિક્ષક નેમિંગ સિસ્ટમ સેટ કરો
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,હાલમાં કોઈ વેરહાઉસમાં કોઈ સ્ટોક ઉપલબ્ધ નથી
,Payment Period Based On Invoice Date,ભરતિયું તારીખ પર આધારિત ચુકવણી સમય
DocType: Sample Collection,No. of print,પ્રિન્ટની સંખ્યા
@ -3698,12 +3704,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),ડેટર્સ ({0})
DocType: Pricing Rule,Margin,માર્જિન
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,નવા ગ્રાહકો
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,કુલ નફો %
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,કુલ નફો %
DocType: Appraisal Goal,Weightage (%),ભારાંકન (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,POS પ્રોફાઇલ બદલો
DocType: Bank Reconciliation Detail,Clearance Date,ક્લિયરન્સ તારીખ
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,આકારણી રિપોર્ટ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,કુલ ખરીદી જથ્થો ફરજિયાત છે
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,કુલ ખરીદી જથ્થો ફરજિયાત છે
DocType: Lead,Address Desc,DESC સરનામું
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,પાર્ટી ફરજિયાત છે
DocType: Journal Entry,JV-,JV-
@ -3735,7 +3741,6 @@ DocType: Account,Accumulated Depreciation,સંચિત અવમૂલ્ય
DocType: Supplier Scorecard Scoring Standing,Standing Name,સ્ટેન્ડીંગ નામ
DocType: Stock Entry,Customer or Supplier Details,ગ્રાહક અથવા સપ્લાયર વિગતો
DocType: Employee Loan Application,Required by Date,તારીખ દ્વારા જરૂરી
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),બંધ બેલેન્સ (ડો - સીઆર)
DocType: Lead,Lead Owner,અગ્ર માલિક
DocType: Bin,Requested Quantity,વિનંતી જથ્થો
DocType: Patient,Marital Status,વૈવાહિક સ્થિતિ
@ -3749,7 +3754,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,મલ્ટીપલ વેરિયન્ટ્સ
DocType: Sales Invoice,Against Income Account,આવક એકાઉન્ટ સામે
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% વિતરિત
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,વસ્તુ {0}: આદેશ આપ્યો Qty {1} ન્યૂનતમ ક્રમ Qty {2} (વસ્તુ માં વ્યાખ્યાયિત) કરતા ઓછી ન હોઈ શકે.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,વસ્તુ {0}: આદેશ આપ્યો Qty {1} ન્યૂનતમ ક્રમ Qty {2} (વસ્તુ માં વ્યાખ્યાયિત) કરતા ઓછી ન હોઈ શકે.
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,માસિક વિતરણ ટકાવારી
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,કૃપા કરીને અન્ય વપરાશકર્તા તરીકે લૉગિન કરો.
DocType: Territory,Territory Targets,પ્રદેશ લક્ષ્યાંક
@ -3848,7 +3853,7 @@ DocType: Program Enrollment,School House,શાળા હાઉસ
DocType: Serial No,Out of AMC,એએમસીના આઉટ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,નક્કી Depreciations સંખ્યા કુલ Depreciations સંખ્યા કરતાં વધારે ન હોઈ શકે
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,જાળવણી મુલાકાત કરી
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,સેલ્સ માસ્ટર વ્યવસ્થાપક {0} ભૂમિકા છે જે વપરાશકર્તા માટે સંપર્ક કરો
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,સેલ્સ માસ્ટર વ્યવસ્થાપક {0} ભૂમિકા છે જે વપરાશકર્તા માટે સંપર્ક કરો
DocType: Company,Default Cash Account,ડિફૉલ્ટ કેશ એકાઉન્ટ
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,કંપની (નથી ગ્રાહક અથવા સપ્લાયર) માસ્ટર.
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,આ વિદ્યાર્થી હાજરી પર આધારિત છે
@ -3998,7 +4003,6 @@ DocType: Delivery Note Item,From Warehouse,વેરહાઉસ માંથી
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,ઉલ્લેખિત માપદંડ માટે કોઈ કર્મચારી નથી
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,માલ બિલ સાથે કોઈ વસ્તુઓ ઉત્પાદન
DocType: Restaurant,Default Customer,ડિફૉલ્ટ ગ્રાહક
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,હ્યુમન રિસોર્સ&gt; એચઆર સેટિંગ્સમાં કર્મચારીનું નામકરણ પદ્ધતિ સેટ કરો
DocType: Assessment Plan,Supervisor Name,સુપરવાઇઝર નામ
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,ખાતરી કરો કે એ જ દિવસે નિમણૂક બનાવવામાં આવી નથી
DocType: Program Enrollment Course,Program Enrollment Course,કાર્યક્રમ નોંધણી કોર્સ
@ -4116,7 +4120,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,વેબસાઇટ વર્ણન
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,ઈક્વિટી કુલ ફેરફાર
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,સૌથી નવું
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,ખરીદી ભરતિયું {0} રદ કૃપા કરીને પ્રથમ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,ખરીદી ભરતિયું {0} રદ કૃપા કરીને પ્રથમ
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","ઇમેઇલ સરનામું અનન્ય હોવો જોઈએ, પહેલેથી જ અસ્તિત્વમાં છે {0}"
DocType: Serial No,AMC Expiry Date,એએમસી સમાપ્તિ તારીખ
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,રસીદ
@ -4133,7 +4137,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,હજુ સ
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,કેશ ફ્લો સ્ટેટમેન્ટ
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},લોન રકમ મહત્તમ લોન રકમ કરતાં વધી શકે છે {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,લાઈસન્સ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},સી-ફોર્મ આ બિલ {0} દૂર કરો {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},સી-ફોર્મ આ બિલ {0} દૂર કરો {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,"તમે પણ અગાઉના નાણાકીય વર્ષમાં બેલેન્સ ચાલુ નાણાકીય વર્ષના નહીં સામેલ કરવા માંગો છો, તો આગળ લઈ પસંદ કરો"
DocType: GL Entry,Against Voucher Type,વાઉચર પ્રકાર સામે
DocType: Physician,Phone (R),ફોન (આર)
@ -4145,7 +4149,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,બી નકારાત્મક
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,જાળવણી સ્થિતિ રદ અથવા સબમિટ કરવા સમાપ્ત થાય છે
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},એકાઉન્ટ {0} કરે કંપની માટે અનુસરે છે નથી {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,{0} પંક્તિમાં ક્રમાંકોમાં સાથે ડિલીવરી નોંધ મેચ થતો નથી
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,{0} પંક્તિમાં ક્રમાંકોમાં સાથે ડિલીવરી નોંધ મેચ થતો નથી
DocType: Student,Guardian Details,ગાર્ડિયન વિગતો
DocType: C-Form,C-Form,સી-ફોર્મ
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,બહુવિધ કર્મચારીઓ માટે માર્ક એટેન્ડન્સ
@ -4187,7 +4191,7 @@ DocType: Opening Invoice Creation Tool,Sales,સેલ્સ
DocType: Stock Entry Detail,Basic Amount,મૂળભૂત રકમ
DocType: Training Event,Exam,પરીક્ષા
DocType: Complaint,Complaint,ફરિયાદ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},વેરહાઉસ સ્ટોક વસ્તુ માટે જરૂરી {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},વેરહાઉસ સ્ટોક વસ્તુ માટે જરૂરી {0}
DocType: Leave Allocation,Unused leaves,નહિં વપરાયેલ પાંદડા
DocType: Patient,Alcohol Past Use,મદ્યાર્ક ભૂતકાળનો ઉપયોગ
DocType: Fertilizer Content,Fertilizer Content,ખાતર સામગ્રી
@ -4311,6 +4315,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,ફોર્મ્યુલા
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,સીરીયલ #
DocType: Lab Test Template,Lab Test Template,લેબ ટેસ્ટ ઢાંચો
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,સેલ્સ એકાઉન્ટ
DocType: Purchase Invoice Item,Total Weight,કૂલ વજન
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,સેલ્સ પર કમિશન
DocType: Offer Letter Term,Value / Description,ભાવ / વર્ણન
@ -4467,7 +4472,7 @@ Updated via 'Time Log'",મિનિટ &#39;સમય લોગ&#39; માર
DocType: Customer,From Lead,લીડ પ્રતિ
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,ઓર્ડર્સ ઉત્પાદન માટે પ્રકાશિત થાય છે.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,ફિસ્કલ વર્ષ પસંદ કરો ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,POS પ્રોફાઇલ POS એન્ટ્રી બનાવવા માટે જરૂરી
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,POS પ્રોફાઇલ POS એન્ટ્રી બનાવવા માટે જરૂરી
DocType: Program Enrollment Tool,Enroll Students,વિદ્યાર્થી નોંધણી
DocType: Lab Test,Approved Date,મંજૂર તારીખ
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,ધોરણ વેચાણ
@ -4543,7 +4548,7 @@ DocType: Employee,Held On,આયોજન પર
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,ઉત્પાદન વસ્તુ
,Employee Information,કર્મચારીનું માહિતી
DocType: Stock Entry Detail,Additional Cost,વધારાના ખર્ચ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","વાઉચર કોઈ પર આધારિત ફિલ્ટર કરી શકો છો, વાઉચર દ્વારા જૂથ તો"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","વાઉચર કોઈ પર આધારિત ફિલ્ટર કરી શકો છો, વાઉચર દ્વારા જૂથ તો"
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,પુરવઠોકર્તા અવતરણ બનાવો
DocType: Quality Inspection,Incoming,ઇનકમિંગ
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,વેચાણ અને ખરીદી માટે ડિફોલ્ટ કર ટેમ્પ્લેટ બનાવવામાં આવે છે.
@ -4560,7 +4565,7 @@ DocType: Batch,Batch ID,બેચ ID ને
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},નોંધ: {0}
,Delivery Note Trends,ડ લવર નોંધ પ્રવાહો
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,આ અઠવાડિયાના સારાંશ
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,સ્ટોક Qty માં
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,સ્ટોક Qty માં
DocType: Delivery Trip,Calculate Estimated Arrival Times,અંદાજિત આગમન ટાઇમ્સની ગણતરી કરો
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,ખાતું: {0} માત્ર સ્ટોક વ્યવહારો દ્વારા સુધારી શકાય છે
DocType: Student Group Creation Tool,Get Courses,અભ્યાસક્રમો મેળવો
@ -4576,7 +4581,7 @@ DocType: Purchase Order,To Bill,બિલ
DocType: Material Request,% Ordered,% આદેશ આપ્યો
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.","કોર્સ આધારિત વિદ્યાર્થી જૂથ માટે, કોર્સ કાર્યક્રમ નોંધણી પ્રવેશ અભ્યાસક્રમો થી દરેક વિદ્યાર્થી માટે માન્ય કરવામાં આવશે."
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,છૂટક કામ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,સરેરાશ. ખરીદી દર
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,સરેરાશ. ખરીદી દર
DocType: Task,Actual Time (in Hours),(કલાકોમાં) વાસ્તવિક સમય
DocType: Employee,History In Company,કંપની ઇતિહાસ
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},{મોકલનાર} તરફથી નવો સંદેશ
@ -4624,7 +4629,7 @@ DocType: Asset Repair,Asset Repair,અસેટ સમારકામ
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},રો {0}: બોમ # ચલણ {1} પસંદ ચલણ સમાન હોવું જોઈએ {2}
DocType: Journal Entry Account,Exchange Rate,વિનિમય દર
DocType: Patient,Additional information regarding the patient,દર્દીને લગતી વધારાની માહિતી
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,વેચાણ ઓર્ડર {0} અપર્ણ ન કરાય
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,વેચાણ ઓર્ડર {0} અપર્ણ ન કરાય
DocType: Homepage,Tag Line,ટેગ લાઇન
DocType: Fee Component,Fee Component,ફી પુન
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,ફ્લીટ મેનેજમેન્ટ
@ -4836,7 +4841,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,આકારણી
DocType: Employee Education,Employee Education,કર્મચારીનું શિક્ષણ
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,નકલી વસ્તુ જૂથ આઇટમ જૂથ ટેબલ મળી
DocType: Land Unit,Parent Land Unit,પિતૃ જમીન એકમ
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,તે વસ્તુ વિગતો મેળવવા માટે જરૂરી છે.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,તે વસ્તુ વિગતો મેળવવા માટે જરૂરી છે.
DocType: Fertilizer,Fertilizer Name,ખાતરનું નામ
DocType: Salary Slip,Net Pay,નેટ પે
DocType: Account,Account,એકાઉન્ટ
@ -4915,7 +4920,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),(સ્રોત / લ
DocType: Item Customer Detail,Ref Code,સંદર્ભ કોડ
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,POS પ્રોફાઇલમાં કસ્ટમર ગ્રુપ જરૂરી છે
apps/erpnext/erpnext/config/hr.py +12,Employee records.,કર્મચારીનું રેકોર્ડ.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,સુયોજિત કરો આગળ અવમૂલ્યન તારીખ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,સુયોજિત કરો આગળ અવમૂલ્યન તારીખ
DocType: HR Settings,Payroll Settings,પગારપત્રક સેટિંગ્સ
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,બિન-કડી ઇનવૉઇસેસ અને ચૂકવણી મેળ ખાય છે.
DocType: POS Settings,POS Settings,સ્થિતિ સેટિંગ્સ
@ -5082,7 +5087,7 @@ DocType: Item,Customer Code,ગ્રાહક કોડ
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},માટે જન્મદિવસ રીમાઇન્ડર {0}
DocType: Asset Maintenance Task,Last Completion Date,છેલ્લું સમાપ્તિ તારીખ
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,છેલ્લે ઓર્ડર સુધીનાં દિવસો
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,એકાઉન્ટ ડેબિટ એક બેલેન્સ શીટ એકાઉન્ટ હોવું જ જોઈએ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,એકાઉન્ટ ડેબિટ એક બેલેન્સ શીટ એકાઉન્ટ હોવું જ જોઈએ
DocType: Buying Settings,Naming Series,નામકરણ સિરીઝ
DocType: Leave Block List,Leave Block List Name,બ્લોક યાદી મૂકો નામ
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,વીમા પ્રારંભ તારીખ કરતાં વીમા અંતિમ તારીખ ઓછી હોવી જોઈએ
@ -5208,6 +5213,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,ચુકવણી પ્રવેશો મળી
DocType: Quotation Item,Against Docname,Docname સામે
DocType: SMS Center,All Employee (Active),બધા કર્મચારીનું (સક્રિય)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,ગ્રાહક&gt; ગ્રાહક જૂથ&gt; પ્રદેશ
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,હવે જુઓ
DocType: BOM,Raw Material Cost,કાચો સામગ્રી ખર્ચ
DocType: Item Reorder,Re-Order Level,ફરીથી ઓર્ડર સ્તર
@ -5306,7 +5312,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,બેઠક ક્ષમતા
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,લેબ ટેસ્ટ જૂથો
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,ગ્રાહક&gt; ગ્રાહક જૂથ&gt; પ્રદેશ
DocType: Project,Total Expense Claim (via Expense Claims),કુલ ખર્ચ દાવો (ખર્ચ દાવાઓ મારફતે)
DocType: GST Settings,GST Summary,જીએસટી સારાંશ
DocType: Assessment Result,Total Score,કુલ સ્કોર
@ -5319,7 +5324,7 @@ DocType: Batch,Source Document Type,સોર્સ દસ્તાવેજન
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,નીચેના કોર્સ સમયપત્રક બનાવવામાં આવ્યા હતા
DocType: Journal Entry,Total Debit,કુલ ડેબિટ
DocType: Manufacturing Settings,Default Finished Goods Warehouse,મૂળભૂત ફિનિશ્ડ ગૂડ્સ વેરહાઉસ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,વેચાણ વ્યક્તિ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,વેચાણ વ્યક્તિ
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,બજેટ અને ખર્ચ કેન્દ્ર
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,ચુકવણીના બહુવિધ ડિફોલ્ટ મોડને મંજૂરી નથી
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,માટે

Can't render this file because it is too large.

View File

@ -95,7 +95,7 @@ apps/erpnext/erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py +22,Sam
DocType: Patient,Married,נשוי
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},חל איסור על {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,קבל פריטים מ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},המניה לא ניתן לעדכן נגד תעודת משלוח {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},המניה לא ניתן לעדכן נגד תעודת משלוח {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},מוצרים {0}
DocType: Payment Reconciliation,Reconcile,ליישב
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,מכולת
@ -111,7 +111,7 @@ DocType: POS Profile,Write Off Cost Center,לכתוב את מרכז עלות
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""",למשל &quot;בית הספר היסודי&quot; או &quot;האוניברסיטה&quot;
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,דוחות במלאי
DocType: Warehouse,Warehouse Detail,פרט מחסן
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},מסגרת אשראי נחצתה ללקוחות {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},מסגרת אשראי נחצתה ללקוחות {0} {1} / {2}
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","&quot;האם רכוש קבוע&quot; לא יכול להיות מסומן, כמו שיא נכסים קיים כנגד הפריט"
DocType: Tax Rule,Tax Type,סוג המס
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +160,You are not authorized to add or update entries before {0},אין לך ההרשאה להוסיף או עדכון ערכים לפני {0}
@ -122,7 +122,7 @@ apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_st
apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +38,The holiday on {0} is not between From Date and To Date,החג על {0} הוא לא בין מתאריך ו עד תאריך
DocType: Quality Inspection,Get Specification Details,קבל מפרט פרטים
DocType: Lead,Interested,מעוניין
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,פתיחה
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,פתיחה
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},מ {0} {1}
DocType: Item,Copy From Item Group,העתק מ קבוצת פריט
DocType: Journal Entry,Opening Entry,כניסת פתיחה
@ -229,7 +229,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,להקלה על התאריך חייבת להיות גדולה מ תאריך ההצטרפות
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,עלים בכל שנה
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,שורת {0}: בדוק את 'האם Advance' נגד חשבון {1} אם זה כניסה מראש.
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},מחסן {0} אינו שייך לחברת {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},מחסן {0} אינו שייך לחברת {1}
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,לִיטר
DocType: Task,Total Costing Amount (via Time Sheet),סה&quot;כ תמחיר הסכום (באמצעות גיליון זמן)
DocType: Item Website Specification,Item Website Specification,מפרט אתר פריט
@ -365,7 +365,7 @@ DocType: Account,Cost of Goods Sold,עלות מכר
DocType: Subscription,Yearly,שנתי
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,נא להזין מרכז עלות
DocType: Journal Entry Account,Sales Order,להזמין מכירות
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,ממוצע. שיעור מכירה
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,ממוצע. שיעור מכירה
DocType: Assessment Plan,Examiner Name,שם הבודק
DocType: Purchase Invoice Item,Quantity and Rate,כמות ושיעור
DocType: Delivery Note,% Installed,% מותקן
@ -415,12 +415,12 @@ apps/erpnext/erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.py +3
DocType: Pricing Rule,Valid Upto,Upto חוקי
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,רשימה כמה מהלקוחות שלך. הם יכולים להיות ארגונים או יחידים.
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,הכנסה ישירה
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","לא יכול לסנן על פי חשבון, אם מקובצים לפי חשבון"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","לא יכול לסנן על פי חשבון, אם מקובצים לפי חשבון"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,קצין מנהלי
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please select Company,אנא בחר חברה
DocType: Stock Entry Detail,Difference Account,חשבון הבדל
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,לא יכולה לסגור משימה כמשימה התלויה {0} אינה סגורה.
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,נא להזין את המחסן שלבקשת חומר יועלה
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,נא להזין את המחסן שלבקשת חומר יועלה
DocType: Production Order,Additional Operating Cost,עלות הפעלה נוספות
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,קוסמטיקה
apps/erpnext/erpnext/stock/doctype/item/item.py +526,"To merge, following properties must be same for both items","למזג, המאפיינים הבאים חייבים להיות זהים בשני הפריטים"
@ -533,7 +533,7 @@ DocType: Installation Note,IN-,In-
DocType: Production Order Operation,In minutes,בדקות
DocType: Issue,Resolution Date,תאריך החלטה
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,גיליון נוצר:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},אנא הגדר מזומנים ברירת מחדל או חשבון בנק במצב של תשלום {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},אנא הגדר מזומנים ברירת מחדל או חשבון בנק במצב של תשלום {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,לְהִרָשֵׁם
DocType: Selling Settings,Customer Naming By,Naming הלקוח על ידי
DocType: Depreciation Schedule,Depreciation Amount,סכום הפחת
@ -607,7 +607,7 @@ DocType: Production Order Operation,Planned End Time,שעת סיום מתוכנ
apps/erpnext/erpnext/accounts/doctype/account/account.py +93,Account with existing transaction cannot be converted to ledger,חשבון עם עסקה הקיימת לא ניתן להמיר לדג'ר
DocType: Delivery Note,Customer's Purchase Order No,להזמין ללא הרכישה של הלקוח
DocType: Employee,Cell Number,מספר סלולארי
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,בקשות אוטומטיות חומר שנוצרו
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,בקשות אוטומטיות חומר שנוצרו
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,איבדתי
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,אתה לא יכול להיכנס לשובר נוכחי ב'נגד תנועת יומן 'טור
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,שמורות לייצור
@ -663,7 +663,7 @@ DocType: Request for Quotation Supplier,Send Email,שלח אי-מייל
apps/erpnext/erpnext/stock/doctype/item/item.py +218,Warning: Invalid Attachment {0},אזהרה: קובץ מצורף לא חוקי {0}
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Permission,אין אישור
DocType: Company,Default Bank Account,חשבון בנק ברירת מחדל
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","כדי לסנן מבוסס על המפלגה, מפלגה בחר את הסוג ראשון"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","כדי לסנן מבוסס על המפלגה, מפלגה בחר את הסוג ראשון"
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},"לא ניתן לבדוק את &quot;מלאי עדכון &#39;, כי פריטים אינם מועברים באמצעות {0}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,מס
DocType: Item,Items with higher weightage will be shown higher,פריטים עם weightage גבוה יותר תוכלו לראות גבוהים יותר
@ -678,7 +678,7 @@ DocType: Land Unit,Tree Details,עץ פרטים
DocType: Item,Website Warehouse,מחסן אתר
DocType: Payment Reconciliation,Minimum Invoice Amount,סכום חשבונית מינימום
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,פריט שורה {idx}: {DOCTYPE} {DOCNAME} אינה קיימת מעל &#39;{DOCTYPE} שולחן
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,גיליון {0} כבר הושלם או בוטל
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,גיליון {0} כבר הושלם או בוטל
DocType: Asset,Opening Accumulated Depreciation,פתיחת פחת שנצבר
apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.js +49,Score must be less than or equal to 5,ציון חייב להיות קטן או שווה ל 5
DocType: Program Enrollment Tool,Program Enrollment Tool,כלי הרשמה לתכנית
@ -769,7 +769,7 @@ apps/erpnext/erpnext/accounts/general_ledger.py +165,Please mention Round Off Ac
DocType: Purchase Receipt,Range,טווח
DocType: Supplier,Default Payable Accounts,חשבונות לתשלום ברירת מחדל
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,עובד {0} אינו פעיל או שאינו קיים
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},נא להזין קטגורית Asset בסעיף {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},נא להזין קטגורית Asset בסעיף {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,פריט גרסאות {0} מעודכן
DocType: Quality Inspection Reading,Reading 6,קריאת 6
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +945,Cannot {0} {1} {2} without any negative outstanding invoice,אין אפשרות {0} {1} {2} ללא כל חשבונית מצטיינים שלילית
@ -864,7 +864,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,פריט קבלת רכישה
DocType: Purchase Receipt,PREC-RET-,PreC-RET-
DocType: POS Profile,Sales Invoice Payment,תשלום חשבוניות מכירות
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,מחסן שמורות במכירות להזמין / סיום מוצרי מחסן
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,סכום מכירה
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,סכום מכירה
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,אתה המאשר ההוצאה לתקליט הזה. אנא עדכן את 'הסטטוס' ושמור
DocType: Serial No,Creation Document No,יצירת מסמך לא
DocType: Issue,Issue,נושא
@ -931,7 +931,7 @@ DocType: Salary Slip,Earnings,רווחים
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item {0} must be entered for Manufacture type entry,פריט סיים {0} יש להזין לכניסת סוג הייצור
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,מאזן חשבונאי פתיחה
DocType: Sales Invoice Advance,Sales Invoice Advance,מכירות חשבונית מראש
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,שום דבר לא לבקש
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,שום דבר לא לבקש
apps/erpnext/erpnext/projects/doctype/task/task.py +41,'Actual Start Date' can not be greater than 'Actual End Date','תאריך התחלה בפועל' לא יכול להיות גדול מ 'תאריך סיום בפועל'
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +117,Management,ניהול
DocType: Cheque Print Template,Payer Settings,גדרות משלמות
@ -940,7 +940,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
DocType: Purchase Invoice,Is Return,האם חזרה
DocType: Price List Country,Price List Country,מחיר מחירון מדינה
DocType: Item,UOMs,UOMs
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} nos סדרתי תקף עבור פריט {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} nos סדרתי תקף עבור פריט {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,קוד פריט לא ניתן לשנות למס 'סידורי
DocType: Purchase Invoice Item,UOM Conversion Factor,אוני 'מישגן המרת פקטור
DocType: Stock Settings,Default Item Group,קבוצת ברירת מחדל של הפריט
@ -1013,7 +1013,7 @@ apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +58,Ac
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +213,Not authorized to edit frozen Account {0},אינך רשאי לערוך חשבון קפוא {0}
DocType: Journal Entry,Get Outstanding Invoices,קבל חשבוניות מצטיינים
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,להזמין מכירות {0} אינו חוקי
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","מצטער, לא ניתן למזג חברות"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","מצטער, לא ניתן למזג חברות"
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",כמות הנפקה / ההעברה הכולל {0} ב בקשת חומר {1} \ לא יכולה להיות גדולה מ כמות מבוקשת {2} עבור פריט {3}
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +197,Small,קטן
@ -1046,7 +1046,7 @@ DocType: Email Digest,Annual Income,הכנסה שנתית
DocType: Serial No,Serial No Details,Serial No פרטים
DocType: Purchase Invoice Item,Item Tax Rate,שיעור מס פריט
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry","עבור {0}, רק חשבונות האשראי יכולים להיות מקושרים נגד כניסת חיוב נוספת"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,משלוח הערה {0} לא תוגש
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,משלוח הערה {0} לא תוגש
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,פריט {0} חייב להיות פריט-נדבק Sub
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,ציוד הון
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","כלל תמחור נבחר ראשון המבוססת על 'החל ב'שדה, אשר יכול להיות פריט, קבוצת פריט או מותג."
@ -1065,7 +1065,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,ילד מחסן קיים מחסן זה. אתה לא יכול למחוק את המחסן הזה.
DocType: Item,Website Item Groups,קבוצות פריט באתר
DocType: Purchase Invoice,Total (Company Currency),סה&quot;כ (חברת מטבע)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,מספר סידורי {0} נכנס יותר מפעם אחת
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,מספר סידורי {0} נכנס יותר מפעם אחת
DocType: Journal Entry,Journal Entry,יומן
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} פריטי התקדמות
DocType: Workstation,Workstation Name,שם תחנת עבודה
@ -1136,7 +1136,7 @@ apps/erpnext/erpnext/projects/report/daily_timesheet_summary/daily_timesheet_sum
DocType: Email Digest,For Company,לחברה
apps/erpnext/erpnext/config/support.py +17,Communication log.,יומן תקשורת.
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.","בקשה להצעת מחיר מושבת לגשת מתוך הפורטל, עבור הגדרות פורטל הצ&#39;ק יותר."
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,סכום קנייה
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,סכום קנייה
DocType: Sales Invoice,Shipping Address Name,שם כתובת למשלוח
DocType: Material Request,Terms and Conditions Content,תוכן תנאים והגבלות
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +580,cannot be greater than 100,לא יכול להיות גדול מ 100
@ -1317,7 +1317,7 @@ DocType: Company,Default Values,ערכי ברירת מחדל
DocType: Expense Claim,Total Amount Reimbursed,הסכום כולל החזר
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},נגד ספק חשבונית {0} יום {1}
DocType: Customer,Default Price List,מחיר מחירון ברירת מחדל
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,שיא תנועת נכסים {0} נוצרו
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,שיא תנועת נכסים {0} נוצרו
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,אתה לא יכול למחוק את שנת הכספים {0}. שנת הכספים {0} מוגדרת כברירת מחדל ב הגדרות גלובליות
DocType: Journal Entry,Entry Type,סוג הכניסה
,Customer Credit Balance,יתרת אשראי ללקוחות
@ -1397,7 +1397,7 @@ DocType: Stock Reconciliation,Reconciliation JSON,הפיוס JSON
apps/erpnext/erpnext/accounts/report/financial_statements.html +3,Too many columns. Export the report and print it using a spreadsheet application.,יותר מדי עמודות. לייצא את הדוח ולהדפיס אותו באמצעות יישום גיליון אלקטרוני.
DocType: Purchase Invoice Item,Batch No,אצווה לא
DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purchase Order,לאפשר הזמנות ומכירות מרובות נגד הלקוח הזמנת הרכש
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,ראשי
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,ראשי
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,Variant
DocType: Naming Series,Set prefix for numbering series on your transactions,קידומת להגדיר למספור סדרה על העסקות שלך
DocType: Employee Attendance Tool,Employees HTML,עובד HTML
@ -1433,7 +1433,7 @@ DocType: Production Order Operation,Actual Time and Cost,זמן ועלות בפ
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +54,Material Request of maximum {0} can be made for Item {1} against Sales Order {2},בקשת חומר של מקסימום {0} יכולה להתבצע עבור פריט {1} נגד להזמין מכירות {2}
DocType: Course,Course Abbreviation,קיצור קורס
DocType: Item,Will also apply for variants,תחול גם לגרסות
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","נכסים לא ניתן לבטל, כפי שהוא כבר {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","נכסים לא ניתן לבטל, כפי שהוא כבר {0}"
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,ב
apps/erpnext/erpnext/config/selling.py +62,Bundle items at time of sale.,פריטי Bundle בעת מכירה.
DocType: Quotation Item,Actual Qty,כמות בפועל
@ -1566,12 +1566,12 @@ DocType: Task,Actual End Date (via Time Sheet),תאריך סיום בפועל (
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},סכום {0} {1} נגד {2} {3}
,Quotation Trends,מגמות ציטוט
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},קבוצת פריט שלא צוינה באב פריט לפריט {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,חיוב החשבון חייב להיות חשבון חייבים
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,חיוב החשבון חייב להיות חשבון חייבים
DocType: Shipping Rule,Shipping Amount,סכום משלוח
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Pending Amount,סכום תלוי ועומד
DocType: Purchase Order Item Supplied,Conversion Factor,המרת פקטור
DocType: Purchase Order,Delivered,נמסר
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},הערך צפוי לאחר חיים שימושיים חייב להיות גדול או שווה ל {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},הערך צפוי לאחר חיים שימושיים חייב להיות גדול או שווה ל {0}
DocType: Purchase Receipt,Vehicle Number,מספר רכב
apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +98,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,עלים כולל שהוקצו {0} לא יכולים להיות פחות מעלים שכבר אושרו {1} לתקופה
DocType: Journal Entry,Accounts Receivable,חשבונות חייבים
@ -1586,7 +1586,7 @@ apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +122,Expense Clai
DocType: Purchase Invoice,Additional Discount Amount,סכום הנחה נוסף
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","# השורה {0}: כמות חייבת להיות 1, כפריט הוא נכס קבוע. השתמש בשורה נפרדת עבור כמות מרובה."
DocType: Leave Block List Allow,Leave Block List Allow,השאר בלוק רשימה אפשר
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,Abbr לא יכול להיות ריק או חלל
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,Abbr לא יכול להיות ריק או חלל
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,קבוצה לקבוצה ללא
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,ספורט
apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +56,Total Actual,"סה""כ בפועל"
@ -1657,7 +1657,7 @@ DocType: Email Digest,Note: Email will not be sent to disabled users,הערה:
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,בחר חברה ...
DocType: Leave Control Panel,Leave blank if considered for all departments,שאר ריק אם תיחשב לכל המחלקות
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","סוגי התעסוקה (קבוע, חוזה, וכו 'מתמחה)."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} הוא חובה עבור פריט {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} הוא חובה עבור פריט {1}
DocType: Currency Exchange,From Currency,ממטבע
apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +170,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","אנא בחר סכום שהוקצה, סוג החשבונית וחשבונית מספר בatleast שורה אחת"
apps/erpnext/erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py +128,Cost of New Purchase,עלות רכישה חדשה
@ -1703,7 +1703,7 @@ DocType: Employee,Contact Details,פרטי
DocType: C-Form,Received Date,תאריך קבלה
DocType: Delivery Note,"If you have created a standard template in Sales Taxes and Charges Template, select one and click on the button below.","אם יצרת תבנית סטנדרטית בתבנית מסים מכירות וחיובים, בחר אחד ולחץ על הכפתור למטה."
DocType: Stock Entry,Total Incoming Value,"ערך הנכנס סה""כ"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,חיוב נדרש
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,חיוב נדרש
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,מחיר מחירון רכישה
DocType: Offer Letter Term,Offer Term,טווח הצעה
DocType: Asset,Quality Manager,מנהל איכות
@ -1760,7 +1760,7 @@ DocType: SMS Log,Sent To,נשלח ל
DocType: Payment Request,Make Sales Invoice,הפוך מכירות חשבונית
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +61,Softwares,תוכנות
DocType: Company,For Reference Only.,לעיון בלבד.
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},לא חוקי {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},לא חוקי {0}: {1}
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Sales Invoice Advance,Advance Amount,מראש הסכום
DocType: Manufacturing Settings,Capacity Planning,תכנון קיבולת
@ -1788,7 +1788,7 @@ DocType: Item Reorder,Item Reorder,פריט סידור מחדש
apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +848,Transfer Material,העברת חומר
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","ציין את הפעולות, עלויות הפעלה ולתת מבצע ייחודי לא לפעולות שלך."
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,מסמך זה חורג מהמגבלה על ידי {0} {1} עבור פריט {4}. האם אתה גורם אחר {3} נגד אותו {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,אנא קבע חוזר לאחר השמירה
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,אנא קבע חוזר לאחר השמירה
DocType: Purchase Invoice,Price List Currency,מטבע מחירון
DocType: Naming Series,User must always select,משתמש חייב תמיד לבחור
DocType: Stock Settings,Allow Negative Stock,אפשר מלאי שלילי
@ -1826,7 +1826,7 @@ DocType: Employee Education,Post Graduate,הודעה בוגר
DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,פרט לוח זמנים תחזוקה
DocType: Quality Inspection Reading,Reading 9,קריאת 9
DocType: Supplier,Is Frozen,האם קפוא
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,צומת הקבוצה המחסנת אינו רשאי לבחור עבור עסקות
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,צומת הקבוצה המחסנת אינו רשאי לבחור עבור עסקות
DocType: Buying Settings,Buying Settings,הגדרות קנייה
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,BOM מס לפריט טוב מוגמר
DocType: Upload Attendance,Attendance To Date,נוכחות לתאריך
@ -1843,7 +1843,7 @@ apps/erpnext/erpnext/utilities/transaction_base.py +101,Invalid reference {0} {1
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +187,{0} ({1}) cannot be greater than planned quanitity ({2}) in Production Order {3},{0} ({1}) לא יכול להיות גדול יותר מquanitity המתוכנן ({2}) בהפקה להזמין {3}
DocType: Shipping Rule,Shipping Rule Label,תווית כלל משלוח
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,חומרי גלם לא יכולים להיות ריקים.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","לא ניתן לעדכן מניות, חשבונית מכילה פריט ירידת משלוח."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","לא ניתן לעדכן מניות, חשבונית מכילה פריט ירידת משלוח."
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,מהיר יומן
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,אתה לא יכול לשנות את השיעור אם BOM ציינו agianst כל פריט
DocType: Employee,Previous Work Experience,ניסיון בעבודה קודם
@ -2019,7 +2019,7 @@ apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +72,Incom
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","אם שלטון תמחור שנבחר הוא עשה עבור 'מחיר', זה יחליף את מחיר מחירון. מחיר כלל תמחור הוא המחיר הסופי, ולכן אין עוד הנחה צריכה להיות מיושמת. מכאן, בעסקות כמו מכירה להזמין, הזמנת רכש וכו ', זה יהיה הביא בשדה' דרג ', ולא בשדה' מחיר מחירון שערי '."
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,צפייה בלידים לפי סוג התעשייה.
DocType: Item Supplier,Item Supplier,ספק פריט
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,נא להזין את קוד פריט כדי לקבל אצווה לא
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,נא להזין את קוד פריט כדי לקבל אצווה לא
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},אנא בחר ערך עבור {0} quotation_to {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,כל הכתובות.
DocType: Company,Stock Settings,הגדרות מניות
@ -2264,7 +2264,7 @@ apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,פ
DocType: GL Entry,Voucher No,שובר לא
DocType: Leave Allocation,Leave Allocation,השאר הקצאה
DocType: Payment Request,Recipient Message And Payment Details,הודעת נמען פרט תשלום
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,בקשות חומר {0} נוצרו
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,בקשות חומר {0} נוצרו
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,תבנית של מונחים או חוזה.
DocType: Purchase Invoice,Address and Contact,כתובת ולתקשר
DocType: Cheque Print Template,Is Account Payable,האם חשבון זכאי
@ -2312,7 +2312,7 @@ DocType: Landed Cost Item,Receipt Document,מסמך הקבלה
DocType: Production Planning Tool,Create Material Requests,צור בקשות חומר
DocType: Employee Education,School/University,בית ספר / אוניברסיטה
DocType: Payment Request,Reference Details,התייחסות פרטים
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,ערך צפוי אחרי החיים השימושיים חייב להיות פחות מ סכום רכישה גרוס
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,ערך צפוי אחרי החיים השימושיים חייב להיות פחות מ סכום רכישה גרוס
DocType: Sales Invoice Item,Available Qty at Warehouse,כמות זמינה במחסן
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,סכום חיוב
DocType: Asset,Double Declining Balance,יתרה זוגית ירידה
@ -2320,7 +2320,7 @@ apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +180,Closed orde
apps/erpnext/erpnext/controllers/accounts_controller.py +626,'Update Stock' cannot be checked for fixed asset sale,&#39;עדכון מאגר&#39; לא ניתן לבדוק למכירת נכס קבועה
DocType: Bank Reconciliation,Bank Reconciliation,בנק פיוס
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,קבל עדכונים
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,בקשת חומר {0} בוטלה או נעצרה
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,בקשת חומר {0} בוטלה או נעצרה
apps/erpnext/erpnext/config/hr.py +310,Leave Management,השאר ניהול
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,קבוצה על ידי חשבון
DocType: Sales Order,Fully Delivered,נמסר באופן מלא
@ -2332,7 +2332,7 @@ apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_re
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},לא ניתן לשנות את מצב כמו סטודנט {0} הוא מקושר עם יישום סטודנט {1}
DocType: Asset,Fully Depreciated,לגמרי מופחת
,Stock Projected Qty,המניה צפויה כמות
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},לקוח {0} אינו שייכים לפרויקט {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},לקוח {0} אינו שייכים לפרויקט {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,HTML נוכחות ניכרת
DocType: Sales Order,Customer's Purchase Order,הלקוח הזמנת הרכש
apps/erpnext/erpnext/config/stock.py +109,Serial No and Batch,אין ו אצווה סידורי
@ -2383,7 +2383,7 @@ DocType: Salary Slip,Hour Rate,שעה שערי
DocType: Stock Settings,Item Naming By,פריט מתן שמות על ידי
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},עוד כניסת סגירת תקופת {0} נעשתה לאחר {1}
DocType: Production Order,Material Transferred for Manufacturing,חומר הועבר לייצור
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,חשבון {0} אינו קיים
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,חשבון {0} אינו קיים
DocType: Project,Project Type,סוג פרויקט
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,כך או סכום כמות היעד או המטרה הוא חובה.
apps/erpnext/erpnext/config/projects.py +51,Cost of various activities,עלות של פעילויות שונות
@ -2461,10 +2461,10 @@ DocType: Account,Payable,משתלם
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),חייבים ({0})
DocType: Pricing Rule,Margin,Margin
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,לקוחות חדשים
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,% רווח גולמי
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,% רווח גולמי
DocType: Appraisal Goal,Weightage (%),Weightage (%)
DocType: Bank Reconciliation Detail,Clearance Date,תאריך אישור
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,סכום רכישה גרוס הוא חובה
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,סכום רכישה גרוס הוא חובה
DocType: Lead,Address Desc,כתובת יורד
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,המפלגה היא חובה
DocType: Journal Entry,JV-,JV-
@ -2490,7 +2490,7 @@ apps/erpnext/erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.py +2
apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement must be greater than Date of Joining,מועד הפרישה חייב להיות גדול מ תאריך ההצטרפות
DocType: Sales Invoice,Against Income Account,נגד חשבון הכנסות
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% נמסר
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,פריט {0}: כמות מסודרת {1} לא יכול להיות פחות מכמות הזמנה מינימאלית {2} (מוגדר בסעיף).
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,פריט {0}: כמות מסודרת {1} לא יכול להיות פחות מכמות הזמנה מינימאלית {2} (מוגדר בסעיף).
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,אחוז בחתך חודשי
DocType: Territory,Territory Targets,מטרות שטח
DocType: Delivery Note,Transporter Info,Transporter מידע
@ -2562,7 +2562,7 @@ apps/erpnext/erpnext/accounts/doctype/monthly_distribution/monthly_distribution.
DocType: Serial No,Out of AMC,מתוך AMC
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,מספר הפחת הוזמן לא יכול להיות גדול ממספרם הכולל של פחת
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,הפוך תחזוקה בקר
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,אנא צור קשר עם למשתמש שיש לי מכירות Master מנהל {0} תפקיד
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,אנא צור קשר עם למשתמש שיש לי מכירות Master מנהל {0} תפקיד
DocType: Company,Default Cash Account,חשבון מזומנים ברירת מחדל
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,אדון חברה (לא לקוח או ספק).
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,זה מבוסס על הנוכחות של תלמיד זה
@ -2726,7 +2726,7 @@ DocType: POS Customer Group,Customer Group,קבוצת לקוחות
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,Expense account is mandatory for item {0},חשבון הוצאות הוא חובה עבור פריט {0}
DocType: BOM,Website Description,תיאור אתר
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,שינוי נטו בהון עצמי
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,אנא בטל חשבונית רכישת {0} ראשון
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,אנא בטל חשבונית רכישת {0} ראשון
DocType: Serial No,AMC Expiry Date,תאריך תפוגה AMC
,Sales Register,מכירות הרשמה
DocType: Quotation,Quotation Lost Reason,סיבה אבודה ציטוט
@ -2735,7 +2735,7 @@ apps/erpnext/erpnext/setup/doctype/supplier_type/supplier_type.js +5,There is no
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +116,Summary for this month and pending activities,סיכום לחודש זה ופעילויות תלויות ועומדות
DocType: Customer Group,Customer Group Name,שם קבוצת הלקוחות
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,דוח על תזרימי המזומנים
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},אנא הסר חשבונית זו {0} מC-טופס {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},אנא הסר חשבונית זו {0} מC-טופס {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,אנא בחר לשאת קדימה אם אתה גם רוצה לכלול האיזון של שנת כספים הקודמת משאיר לשנה הפיסקלית
DocType: GL Entry,Against Voucher Type,נגד סוג השובר
DocType: Item,Attributes,תכונות
@ -2766,7 +2766,7 @@ apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +28,Financial Serv
apps/erpnext/erpnext/config/projects.py +46,Types of activities for Time Logs,סוגי פעילויות יומני זמן
DocType: Opening Invoice Creation Tool,Sales,מכירות
DocType: Stock Entry Detail,Basic Amount,סכום בסיסי
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},מחסן נדרש לפריט המניה {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},מחסן נדרש לפריט המניה {0}
DocType: Leave Allocation,Unused leaves,עלים שאינם בשימוש
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +188,Cr,Cr
DocType: Tax Rule,Billing State,מדינת חיוב
@ -2956,7 +2956,7 @@ Updated via 'Time Log'","בדקות עדכון באמצעות 'יומן זמן "
DocType: Customer,From Lead,מליד
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,הזמנות שוחררו לייצור.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,בחר שנת כספים ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,פרופיל קופה הנדרש כדי להפוך את קופה הכניסה
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,פרופיל קופה הנדרש כדי להפוך את קופה הכניסה
DocType: Program Enrollment Tool,Enroll Students,רשם תלמידים
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,מכירה סטנדרטית
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +148,Atleast one warehouse is mandatory,Atleast מחסן אחד הוא חובה
@ -3012,7 +3012,7 @@ DocType: Employee,Held On,במוחזק
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,פריט ייצור
,Employee Information,מידע לעובדים
DocType: Stock Entry Detail,Additional Cost,עלות נוספת
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","לא לסנן מבוססים על השובר לא, אם מקובצים לפי שובר"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","לא לסנן מבוססים על השובר לא, אם מקובצים לפי שובר"
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,הפוך הצעת מחיר של ספק
DocType: Quality Inspection,Incoming,נכנסים
DocType: BOM,Materials Required (Exploded),חומרים דרושים (התפוצצו)
@ -3032,7 +3032,7 @@ DocType: Request for Quotation Item,Request for Quotation Item,בקשה להצע
DocType: Purchase Order,To Bill,להצעת החוק
DocType: Material Request,% Ordered,% מסודר
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,עֲבוֹדָה בְּקַבּלָנוּת
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,ממוצע. שיעור קנייה
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,ממוצע. שיעור קנייה
DocType: Task,Actual Time (in Hours),זמן בפועל (בשעות)
DocType: Employee,History In Company,ההיסטוריה בחברה
apps/erpnext/erpnext/config/learn.py +107,Newsletters,ידיעונים
@ -3059,7 +3059,7 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +113,"Asset {0} cannot
DocType: Task,Total Expense Claim (via Expense Claim),תביעה סה&quot;כ הוצאות (באמצעות תביעת הוצאות)
apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +177,Mark Absent,מארק בהעדר
DocType: Journal Entry Account,Exchange Rate,שער חליפין
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,להזמין מכירות {0} לא יוגש
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,להזמין מכירות {0} לא יוגש
DocType: Homepage,Tag Line,קו תג
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +968,Add items from,הוספת פריטים מ
DocType: Cheque Print Template,Regular,רגיל
@ -3188,7 +3188,7 @@ DocType: BOM,Manage cost of operations,ניהול עלות של פעולות
DocType: Notification Control,"When any of the checked transactions are ""Submitted"", an email pop-up automatically opened to send an email to the associated ""Contact"" in that transaction, with the transaction as an attachment. The user may or may not send the email.","כאשר כל אחת מהעסקאות בדקו ""הוגש"", מוקפץ הדוא""ל נפתח באופן אוטומטי לשלוח דואר אלקטרוני לקשורים ""צור קשר"" בעסקה ש, עם העסקה כקובץ מצורף. המשתמשים יכולים או לא יכולים לשלוח הדואר האלקטרוני."
apps/erpnext/erpnext/config/setup.py +14,Global Settings,הגדרות גלובליות
DocType: Employee Education,Employee Education,חינוך לעובדים
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,הוא צריך את זה כדי להביא פרטי פריט.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,הוא צריך את זה כדי להביא פרטי פריט.
DocType: Salary Slip,Net Pay,חבילת נקי
DocType: Account,Account,חשבון
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +217,Serial No {0} has already been received,מספר סידורי {0} כבר קיבל
@ -3242,7 +3242,7 @@ DocType: Tax Rule,Purchase Tax Template,מס רכישת תבנית
DocType: Stock Entry Detail,Actual Qty (at source/target),כמות בפועל (במקור / יעד)
DocType: Item Customer Detail,Ref Code,"נ""צ קוד"
apps/erpnext/erpnext/config/hr.py +12,Employee records.,רשומות עובדים.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,אנא קבע את תאריך פחת הבא
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,אנא קבע את תאריך פחת הבא
DocType: HR Settings,Payroll Settings,הגדרות שכר
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,התאם חשבוניות ותשלומים הלא צמוד.
apps/erpnext/erpnext/templates/pages/cart.html +16,Place Order,להזמין מקום
@ -3356,7 +3356,7 @@ DocType: Stock Entry,Default Source Warehouse,מחסן מקור ברירת מח
DocType: Item,Customer Code,קוד לקוח
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},תזכורת יום הולדת עבור {0}
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,ימים מאז הזמנה אחרונה
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,חיוב החשבון חייב להיות חשבון מאזן
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,חיוב החשבון חייב להיות חשבון מאזן
DocType: Buying Settings,Naming Series,סדרת שמות
DocType: Leave Block List,Leave Block List Name,השאר שם בלוק רשימה
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +32,Stock Assets,נכסים במלאי
@ -3520,7 +3520,7 @@ DocType: Stock Entry,As per Stock UOM,"לפי יח""מ מלאי"
apps/erpnext/erpnext/stock/doctype/batch/batch_list.js +7,Not Expired,לא פג תוקף
DocType: Journal Entry,Total Debit,"חיוב סה""כ"
DocType: Manufacturing Settings,Default Finished Goods Warehouse,מחסן מוצרים מוגמר ברירת מחדל
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,איש מכירות
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,איש מכירות
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,תקציב מרכז עלות
DocType: Vehicle Service,Half Yearly,חצי שנתי
DocType: Lead,Blog Subscriber,Subscriber בלוג

1 DocType: Employee Salary Mode שכר Mode
95 DocType: Patient Married נשוי
96 apps/erpnext/erpnext/accounts/party.py +44 Not permitted for {0} חל איסור על {0}
97 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593 Get items from קבל פריטים מ
98 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454 Stock cannot be updated against Delivery Note {0} המניה לא ניתן לעדכן נגד תעודת משלוח {0}
99 apps/erpnext/erpnext/templates/pages/home.py +25 Product {0} מוצרים {0}
100 DocType: Payment Reconciliation Reconcile ליישב
101 apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30 Grocery מכולת
111 apps/erpnext/erpnext/public/js/setup_wizard.js +117 e.g. "Primary School" or "University" למשל &quot;בית הספר היסודי&quot; או &quot;האוניברסיטה&quot;
112 apps/erpnext/erpnext/config/stock.py +28 Stock Reports דוחות במלאי
113 DocType: Warehouse Warehouse Detail פרט מחסן
114 apps/erpnext/erpnext/selling/doctype/customer/customer.py +192 apps/erpnext/erpnext/selling/doctype/customer/customer.py +193 Credit limit has been crossed for customer {0} {1}/{2} מסגרת אשראי נחצתה ללקוחות {0} {1} / {2}
115 apps/erpnext/erpnext/stock/doctype/item/item.py +258 "Is Fixed Asset" cannot be unchecked, as Asset record exists against the item &quot;האם רכוש קבוע&quot; לא יכול להיות מסומן, כמו שיא נכסים קיים כנגד הפריט
116 DocType: Tax Rule Tax Type סוג המס
117 apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +160 You are not authorized to add or update entries before {0} אין לך ההרשאה להוסיף או עדכון ערכים לפני {0}
122 apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +38 The holiday on {0} is not between From Date and To Date החג על {0} הוא לא בין מתאריך ו עד תאריך
123 DocType: Quality Inspection Get Specification Details קבל מפרט פרטים
124 DocType: Lead Interested מעוניין
125 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191 Opening פתיחה
126 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30 From {0} to {1} מ {0} {1}
127 DocType: Item Copy From Item Group העתק מ קבוצת פריט
128 DocType: Journal Entry Opening Entry כניסת פתיחה
229 apps/erpnext/erpnext/hr/doctype/employee/employee.py +121 Relieving Date must be greater than Date of Joining להקלה על התאריך חייבת להיות גדולה מ תאריך ההצטרפות
230 apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238 Leaves per Year עלים בכל שנה
231 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128 Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry. שורת {0}: בדוק את 'האם Advance' נגד חשבון {1} אם זה כניסה מראש.
232 apps/erpnext/erpnext/stock/utils.py +217 apps/erpnext/erpnext/stock/utils.py +216 Warehouse {0} does not belong to company {1} מחסן {0} אינו שייך לחברת {1}
233 apps/erpnext/erpnext/utilities/user_progress.py +144 Litre לִיטר
234 DocType: Task Total Costing Amount (via Time Sheet) סה&quot;כ תמחיר הסכום (באמצעות גיליון זמן)
235 DocType: Item Website Specification Item Website Specification מפרט אתר פריט
365 DocType: Subscription Yearly שנתי
366 apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230 Please enter Cost Center נא להזין מרכז עלות
367 DocType: Journal Entry Account Sales Order להזמין מכירות
368 apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70 apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69 Avg. Selling Rate ממוצע. שיעור מכירה
369 DocType: Assessment Plan Examiner Name שם הבודק
370 DocType: Purchase Invoice Item Quantity and Rate כמות ושיעור
371 DocType: Delivery Note % Installed % מותקן
415 DocType: Pricing Rule Valid Upto Upto חוקי
416 apps/erpnext/erpnext/utilities/user_progress.py +64 List a few of your customers. They could be organizations or individuals. רשימה כמה מהלקוחות שלך. הם יכולים להיות ארגונים או יחידים.
417 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128 Direct Income הכנסה ישירה
418 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41 Can not filter based on Account, if grouped by Account לא יכול לסנן על פי חשבון, אם מקובצים לפי חשבון
419 apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130 Administrative Officer קצין מנהלי
420 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350 Please select Company אנא בחר חברה
421 DocType: Stock Entry Detail Difference Account חשבון הבדל
422 apps/erpnext/erpnext/projects/doctype/task/task.py +47 Cannot close task as its dependant task {0} is not closed. לא יכולה לסגור משימה כמשימה התלויה {0} אינה סגורה.
423 apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433 apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435 Please enter Warehouse for which Material Request will be raised נא להזין את המחסן שלבקשת חומר יועלה
424 DocType: Production Order Additional Operating Cost עלות הפעלה נוספות
425 apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20 Cosmetics קוסמטיקה
426 apps/erpnext/erpnext/stock/doctype/item/item.py +526 To merge, following properties must be same for both items למזג, המאפיינים הבאים חייבים להיות זהים בשני הפריטים
533 DocType: Production Order Operation In minutes בדקות
534 DocType: Issue Resolution Date תאריך החלטה
535 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339 Timesheet created: גיליון נוצר:
536 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913 Please set default Cash or Bank account in Mode of Payment {0} אנא הגדר מזומנים ברירת מחדל או חשבון בנק במצב של תשלום {0}
537 apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24 Enroll לְהִרָשֵׁם
538 DocType: Selling Settings Customer Naming By Naming הלקוח על ידי
539 DocType: Depreciation Schedule Depreciation Amount סכום הפחת
607 apps/erpnext/erpnext/accounts/doctype/account/account.py +93 Account with existing transaction cannot be converted to ledger חשבון עם עסקה הקיימת לא ניתן להמיר לדג'ר
608 DocType: Delivery Note Customer's Purchase Order No להזמין ללא הרכישה של הלקוח
609 DocType: Employee Cell Number מספר סלולארי
610 apps/erpnext/erpnext/stock/reorder_item.py +190 apps/erpnext/erpnext/stock/reorder_item.py +194 Auto Material Requests Generated בקשות אוטומטיות חומר שנוצרו
611 apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7 Lost איבדתי
612 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150 You can not enter current voucher in 'Against Journal Entry' column אתה לא יכול להיכנס לשובר נוכחי ב'נגד תנועת יומן 'טור
613 apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50 Reserved for manufacturing שמורות לייצור
663 DocType: Asset Opening Accumulated Depreciation פתיחת פחת שנצבר
664 apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.js +49 Score must be less than or equal to 5 ציון חייב להיות קטן או שווה ל 5
665 DocType: Program Enrollment Tool Program Enrollment Tool כלי הרשמה לתכנית
666 apps/erpnext/erpnext/config/accounts.py +335 C-Form records רשומות C-טופס
667 apps/erpnext/erpnext/config/selling.py +311 Customer and Supplier לקוחות וספקים
668 DocType: Email Digest Email Digest Settings הגדרות Digest דוא"ל
669 apps/erpnext/erpnext/config/support.py +12 Support queries from customers. שאילתות התמיכה של לקוחות.
678 DocType: Cheque Print Template Starting location from left edge החל מיקום הקצה שמאלי
679 DocType: Item Allow over delivery or receipt upto this percent לאפשר על משלוח או קבלת upto אחוזים זה
680 DocType: Stock Entry STE- STE-
681 DocType: Upload Attendance Import Attendance נוכחות יבוא
682 apps/erpnext/erpnext/public/js/pos/pos.html +113 All Item Groups בכל קבוצות הפריט
683 apps/erpnext/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py +39 Net Profit / Loss רווח נקי / הפסד
684 apps/erpnext/erpnext/config/setup.py +89 Automatically compose message on submission of transactions. באופן אוטומטי לחבר את ההודעה על הגשת עסקות.
769 apps/erpnext/erpnext/accounts/page/pos/pos.js +781 New Sales Invoice חשבונית מכירת בתים חדשה
770 DocType: Stock Entry Total Outgoing Value ערך יוצא סה"כ
771 apps/erpnext/erpnext/public/js/account_tree_grid.js +224 Opening Date and Closing Date should be within same Fiscal Year פתיחת תאריך ותאריך סגירה צריכה להיות באותה שנת כספים
772 DocType: Lead Request for Information בקשה לקבלת מידע
773 DocType: Payment Request Paid בתשלום
774 DocType: Program Fee Program Fee דמי תכנית
775 DocType: Salary Slip Total in words סה"כ במילים
864 DocType: Sales Partner Implementation Partner שותף יישום
865 apps/erpnext/erpnext/controllers/selling_controller.py +248 Sales Order {0} is {1} להזמין מכירות {0} הוא {1}
866 DocType: Opportunity Contact Info יצירת קשר
867 apps/erpnext/erpnext/config/stock.py +315 Making Stock Entries מה שהופך את ערכי המלאי
868 DocType: Packing Slip Net Weight UOM Net משקל של אוני 'מישגן
869 DocType: Item Default Supplier ספק ברירת מחדל
870 DocType: Manufacturing Settings Over Production Allowance Percentage מעל אחוז ההפרשה הפקה
931 apps/erpnext/erpnext/accounts/doctype/account/account_tree.js +30 Further accounts can be made under Groups, but entries can be made against non-Groups חשבונות נוספים יכולים להתבצע תחת קבוצות, אבל ערכים יכולים להתבצע נגד לא-קבוצות
932 DocType: Lead Lead לידים
933 DocType: Email Digest Payables זכאי
934 DocType: Course Course Intro קורס מבוא
935 apps/erpnext/erpnext/stock/doctype/batch/batch.js +97 Stock Entry {0} created מאגר כניסת {0} נוצרה
936 apps/erpnext/erpnext/controllers/buying_controller.py +316 Row #{0}: Rejected Qty can not be entered in Purchase Return # השורה {0}: נדחו לא ניתן להזין כמות ברכישת חזרה
937 Purchase Order Items To Be Billed פריטים הזמנת רכש לחיוב
940 apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +58 Stock Ledger Entries and GL Entries are reposted for the selected Purchase Receipts פקודות יומן מניות וGL ערכים הם יפורסמו לקבלות הרכישה נבחרו
941 apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +8 Item 1 פריט 1
942 DocType: Holiday Holiday החג
943 DocType: Leave Control Panel Leave blank if considered for all branches שאר ריק אם תיחשב לכל הסניפים
944 apps/erpnext/erpnext/accounts/doctype/c_form/c_form.py +21 C-form is not applicable for Invoice: {0} C-הטופס אינו ישים עבור חשבונית: {0}
945 DocType: Payment Reconciliation Unreconciled Payment Details פרטי תשלום לא מותאמים
946 DocType: Global Defaults Current Fiscal Year שנת כספים נוכחית
1013 DocType: Agriculture Analysis Criteria Agriculture חקלאות
1014 apps/erpnext/erpnext/accounts/page/pos/pos.js +786 Sync Master Data Sync Master Data
1015 apps/erpnext/erpnext/utilities/user_progress.py +135 Your Products or Services המוצרים או השירותים שלך
1016 DocType: Mode of Payment Mode of Payment מצב של תשלום
1017 apps/erpnext/erpnext/stock/doctype/item/item.py +192 Website Image should be a public file or website URL תמונה: אתר אינטרנט צריכה להיות קובץ ציבורי או כתובת אתר אינטרנט
1018 DocType: Purchase Invoice Item BOM BOM
1019 apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +37 This is a root item group and cannot be edited. מדובר בקבוצת פריט שורש ולא ניתן לערוך.
1046 DocType: Purchase Invoice Total (Company Currency) סה&quot;כ (חברת מטבע)
1047 apps/erpnext/erpnext/stock/utils.py +205 apps/erpnext/erpnext/stock/utils.py +204 Serial number {0} entered more than once מספר סידורי {0} נכנס יותר מפעם אחת
1048 DocType: Journal Entry Journal Entry יומן
1049 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148 {0} items in progress {0} פריטי התקדמות
1050 DocType: Workstation Workstation Name שם תחנת עבודה
1051 apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +17 Email Digest: תקציר דוא"ל:
1052 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +591 BOM {0} does not belong to Item {1} BOM {0} אינו שייך לפריט {1}
1065 DocType: Purchase Invoice Supplier Invoice Date תאריך חשבונית ספק
1066 apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +90 You need to enable Shopping Cart אתה צריך לאפשר סל קניות
1067 DocType: Payment Entry Writeoff מחיקת חוב
1068 DocType: Appraisal Template Goal Appraisal Template Goal מטרת הערכת תבנית
1069 DocType: Salary Component Earning להרוויח
1070 DocType: Purchase Invoice Party Account Currency מפלגת חשבון מטבע
1071 BOM Browser דפדפן BOM
1136 apps/erpnext/erpnext/accounts/doctype/cheque_print_template/cheque_print_template.js +73 Print settings updated in respective print format הגדרות הדפסה עודכנו מודפסות בהתאמה
1137 apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +105 Apprentice Apprentice
1138 apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +105 Negative Quantity is not allowed כמות שלילית אינה מותרת
1139 DocType: Purchase Invoice Item Tax detail table fetched from item master as a string and stored in this field. Used for Taxes and Charges שולחן פירוט מס לכת מהפריט שני כמחרוזת ומאוחסן בתחום זה. משמש למסים וחיובים
1140 apps/erpnext/erpnext/hr/doctype/employee/employee.py +159 Employee cannot report to himself. עובד לא יכול לדווח לעצמו.
1141 DocType: Account If the account is frozen, entries are allowed to restricted users. אם החשבון הוא קפוא, ערכים מותרים למשתמשים מוגבלים.
1142 DocType: Email Digest Bank Balance עובר ושב
1317 apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10 Leave and Attendance השארת נוכחות
1318 DocType: Maintenance Visit Partially Completed הושלם באופן חלקי
1319 DocType: Leave Type Include holidays within leaves as leaves כולל חגים בתוך עלים כעלים
1320 DocType: Sales Invoice Packed Items פריטים ארוזים
1321 apps/erpnext/erpnext/config/support.py +27 Warranty Claim against Serial No. הפעיל אחריות נגד מס 'סידורי
1322 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +71 'Total' &#39;סה&quot;כ&#39;
1323 DocType: Shopping Cart Settings Enable Shopping Cart אפשר סל קניות
1397 apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +250 Against Journal Entry {0} does not have any unmatched {1} entry נגד תנועת היומן {0} אין {1} כניסה ללא תחרות
1398 apps/erpnext/erpnext/config/hr.py +142 Appraisals ערכות
1399 apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +205 Duplicate Serial No entered for Item {0} לשכפל מספר סידורי נכנס לפריט {0}
1400 DocType: Shipping Rule Condition A condition for a Shipping Rule תנאי עבור כלל משלוח
1401 apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +234 Please set filter based on Item or Warehouse אנא להגדיר מסנן מבוסס על פריט או מחסן
1402 DocType: Packing Slip The net weight of this package. (calculated automatically as sum of net weight of items) משקל נטו של חבילה זו. (מחושב באופן אוטומטי כסכום של משקל נטו של פריטים)
1403 DocType: Sales Order To Deliver and Bill לספק וביל
1433 apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +36 Make Payment Entry הפוך כניסת תשלום
1434 apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.py +129 Quantity for Item {0} must be less than {1} כמות לפריט {0} חייבת להיות פחות מ {1}
1435 Sales Invoice Trends מגמות חשבונית מכירות
1436 DocType: Leave Application Apply / Approve Leaves החל / אישור עלים
1437 apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +3 For בשביל ש
1438 apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +167 Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total' יכול להתייחס שורה רק אם סוג תשלום הוא 'בסכום הקודם שורה' או 'שורה סה"כ קודמת "
1439 DocType: Sales Order Item Delivery Warehouse מחסן אספקה
1566 apps/erpnext/erpnext/accounts/doctype/account/account.js +68 Group to Non-Group קבוצה לקבוצה ללא
1567 apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50 Sports ספורט
1568 apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +56 Total Actual סה"כ בפועל
1569 apps/erpnext/erpnext/utilities/user_progress.py +143 Unit יחידה
1570 apps/erpnext/erpnext/stock/get_item_details.py +136 Please specify Company נא לציין את החברה
1571 Customer Acquisition and Loyalty לקוחות רכישה ונאמנות
1572 DocType: Purchase Invoice Warehouse where you are maintaining stock of rejected items מחסן שבו אתה שומר מלאי של פריטים דחו
1573 DocType: POS Profile Price List מחיר מחירון
1574 apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +22 {0} is now the default Fiscal Year. Please refresh your browser for the change to take effect. {0} הוא כעת ברירת מחדל שנת כספים. רענן את הדפדפן שלך כדי שהשינוי ייכנס לתוקף.
1575 apps/erpnext/erpnext/projects/doctype/task/task.js +45 Expense Claims תביעות חשבון
1576 DocType: Issue Support תמיכה
1577 BOM Search חיפוש BOM
1586 DocType: Salary Component Deduction ניכוי
1587 apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +115 Row {0}: From Time and To Time is mandatory. שורת {0}: מעת לעת ו היא חובה.
1588 apps/erpnext/erpnext/stock/get_item_details.py +354 Item Price added for {0} in Price List {1} מחיר הפריט נוסף עבור {0} ב מחירון {1}
1589 apps/erpnext/erpnext/setup/doctype/sales_person/sales_person_tree.js +8 Please enter Employee Id of this sales person נא להזין את עובדי זיהוי של איש מכירות זה
1590 DocType: Territory Classification of Customers by region סיווג של לקוחות מאזור לאזור
1591 apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +59 Difference Amount must be zero סכום ההבדל חייב להיות אפס
1592 DocType: Project Gross Margin שיעור רווח גולמי
1657 DocType: Account Fixed Asset רכוש קבוע
1658 apps/erpnext/erpnext/config/stock.py +320 Serialized Inventory מלאי בהמשכים
1659 DocType: Activity Type Default Billing Rate דרג חיוב ברירת מחדל
1660 DocType: Sales Invoice Total Billing Amount סכום חיוב סה&quot;כ
1661 DocType: Fee Schedule Receivable Account חשבון חייבים
1662 apps/erpnext/erpnext/controllers/accounts_controller.py +617 Row #{0}: Asset {1} is already {2} # שורה {0}: Asset {1} הוא כבר {2}
1663 DocType: Quotation Item Stock Balance יתרת מלאי
1703 DocType: Item Customer Item Codes קודי פריט לקוחות
1704 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +122 Exchange Gain/Loss Exchange רווח / הפסד
1705 DocType: Opportunity Lost Reason סיבה לאיבוד
1706 apps/erpnext/erpnext/public/js/templates/address_list.html +22 New Address כתובת חדשה
1707 DocType: Quality Inspection Sample Size גודל מדגם
1708 apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +47 Please enter Receipt Document נא להזין את מסמך הקבלה
1709 apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +369 All items have already been invoiced כל הפריטים כבר בחשבונית
1760 DocType: Cost Center Track separate Income and Expense for product verticals or divisions. עקוב אחר הכנסות והוצאות נפרדות לאנכי מוצר או חטיבות.
1761 DocType: Rename Tool Rename Tool שינוי שם כלי
1762 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +72 Update Cost עלות עדכון
1763 DocType: Item Reorder Item Reorder פריט סידור מחדש
1764 apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +848 Transfer Material העברת חומר
1765 DocType: BOM Specify the operations, operating cost and give a unique Operation no to your operations. ציין את הפעולות, עלויות הפעלה ולתת מבצע ייחודי לא לפעולות שלך.
1766 apps/erpnext/erpnext/controllers/status_updater.py +201 This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}? מסמך זה חורג מהמגבלה על ידי {0} {1} עבור פריט {4}. האם אתה גורם אחר {3} נגד אותו {2}?
1788 apps/erpnext/erpnext/config/crm.py +6 Sales Pipeline צינור מכירות
1789 apps/erpnext/erpnext/templates/form_grid/material_request_grid.html +7 Required On הנדרש על
1790 DocType: Rename Tool File to Rename קובץ לשינוי השם
1791 apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +200 Please select BOM for Item in Row {0} אנא בחר BOM עבור פריט בטור {0}
1792 apps/erpnext/erpnext/controllers/buying_controller.py +289 Specified BOM {0} does not exist for Item {1} BOM צוין {0} אינו קיימת עבור פריט {1}
1793 apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +232 Maintenance Schedule {0} must be cancelled before cancelling this Sales Order לוח זמנים תחזוקת {0} יש לבטל לפני ביטול הזמנת מכירות זה
1794 DocType: Notification Control Expense Claim Approved תביעת הוצאות שאושרה
1826 DocType: Stock Entry For Quantity לכמות
1827 apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +205 Please enter Planned Qty for Item {0} at row {1} נא להזין מתוכננת כמות לפריט {0} בשורת {1}
1828 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +239 {0} {1} is not submitted {0} {1} לא יוגש
1829 DocType: Production Planning Tool Separate production order will be created for each finished good item. הזמנת ייצור נפרדת תיווצר לכל פריט טוב מוגמר.
1830 Minutes to First Response for Issues דקות התגובה ראשונה לעניינים
1831 DocType: Purchase Invoice Terms and Conditions1 תנאים וConditions1
1832 apps/erpnext/erpnext/public/js/setup_wizard.js +109 The name of the institute for which you are setting up this system. שמו של המכון אשר אתה מגדיר מערכת זו.
1843 apps/erpnext/erpnext/config/stock.py +187 Unit of Measure יְחִידַת מִידָה
1844 DocType: Fiscal Year Year End Date תאריך סיום שנה
1845 DocType: Task Depends On Task Depends On המשימה תלויה ב
1846 apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +1024 Opportunity הזדמנות
1847 Completed Production Orders הזמנות ייצור שהושלמו
1848 DocType: Operation Default Workstation Workstation ברירת המחדל
1849 DocType: Notification Control Expense Claim Approved Message הודעת תביעת הוצאות שאושרה
2019 DocType: Student Applicant Application Status סטטוס של יישום
2020 DocType: Fees Fees אגרות
2021 DocType: Currency Exchange Specify Exchange Rate to convert one currency into another ציין שער חליפין להמיר מטבע אחד לעוד
2022 apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +159 Quotation {0} is cancelled ציטוט {0} יבוטל
2023 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25 Total Outstanding Amount סכום חוב סך הכל
2024 DocType: Sales Partner Targets יעדים
2025 DocType: Price List Price List Master מחיר מחירון Master
2264 apps/erpnext/erpnext/controllers/accounts_controller.py +626 'Update Stock' cannot be checked for fixed asset sale &#39;עדכון מאגר&#39; לא ניתן לבדוק למכירת נכס קבועה
2265 DocType: Bank Reconciliation Bank Reconciliation בנק פיוס
2266 apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7 Get Updates קבל עדכונים
2267 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162 Material Request {0} is cancelled or stopped בקשת חומר {0} בוטלה או נעצרה
2268 apps/erpnext/erpnext/config/hr.py +310 Leave Management השאר ניהול
2269 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106 Group by Account קבוצה על ידי חשבון
2270 DocType: Sales Order Fully Delivered נמסר באופן מלא
2312 DocType: Opportunity OPTY- OPTY-
2313 apps/erpnext/erpnext/hr/doctype/leave_block_list/leave_block_list.py +19 Date is repeated התאריך חוזר על עצמו
2314 apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +27 Authorized Signatory מורשה חתימה
2315 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +215 Leave approver must be one of {0} השאר מאשר חייב להיות האחד {0}
2316 DocType: Project Total Purchase Cost (via Purchase Invoice) עלות רכישה כוללת (באמצעות רכישת חשבונית)
2317 DocType: Training Event Start Time זמן התחלה
2318 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +400 Select Quantity כמות בחר
2320 apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +64 Unsubscribe from this Email Digest לבטל את המנוי לדוא&quot;ל זה תקציר
2321 apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +28 Message Sent הודעה נשלחה
2322 apps/erpnext/erpnext/accounts/doctype/account/account.py +98 Account with child nodes cannot be set as ledger חשבון עם בלוטות ילד לא ניתן להגדיר כחשבונות
2323 DocType: C-Form II שני
2324 DocType: Sales Invoice Rate at which Price list currency is converted to customer's base currency קצב שבו רשימת מחיר המטבע מומר למטבע הבסיס של הלקוח
2325 DocType: Purchase Invoice Item Net Amount (Company Currency) סכום נטו (חברת מטבע)
2326 DocType: Salary Slip Hour Rate שעה שערי
2332 apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16 Either target qty or target amount is mandatory. כך או סכום כמות היעד או המטרה הוא חובה.
2333 apps/erpnext/erpnext/config/projects.py +51 Cost of various activities עלות של פעילויות שונות
2334 apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +60 Setting Events to {0}, since the Employee attached to the below Sales Persons does not have a User ID{1} הגדרת אירועים ל {0}, מאז עובד מצורף להלן אנשים מכירים אין זיהוי משתמש {1}
2335 apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +155 Source and target warehouse must be different המקור ומחסן היעד חייב להיות שונים
2336 apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +101 Not allowed to update stock transactions older than {0} אינך רשאים לעדכן את עסקות מניות יותר מאשר {0}
2337 DocType: Purchase Invoice Item PR Detail פרט יחסי הציבור
2338 DocType: Sales Order Fully Billed שחויב במלואו
2383 apps/erpnext/erpnext/templates/print_formats/includes/taxes.html +5 Discount Amount סכום הנחה
2384 DocType: Purchase Invoice Return Against Purchase Invoice חזור נגד רכישת חשבונית
2385 DocType: Item Warranty Period (in days) תקופת אחריות (בימים)
2386 apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +18 Net Cash from Operations מזומנים נטו שנבעו מפעולות
2387 apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26 Item 4 פריט 4
2388 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py +30 Sub-contracting קבלנות משנה
2389 DocType: Journal Entry Account Journal Entry Account חשבון כניסת Journal
2461 DocType: Buying Settings Purchase Order Required הזמנת רכש דרוש
2462 Item-wise Sales History היסטוריה מכירות פריט-חכמה
2463 DocType: Expense Claim Total Sanctioned Amount הסכום אושר סה"כ
2464 Purchase Analytics Analytics רכישה
2465 DocType: Sales Invoice Item Delivery Note Item פריט תעודת משלוח
2466 DocType: Asset Maintenance Log Task משימה
2467 DocType: Purchase Taxes and Charges Reference Row # # ההתייחסות Row
2468 apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +76 Batch number is mandatory for Item {0} מספר אצווה הוא חובה עבור פריט {0}
2469 apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.js +13 This is a root sales person and cannot be edited. זה איש מכירות שורש ולא ניתן לערוך.
2470 Stock Ledger יומן מלאי
2490 DocType: Employee System User (login) ID. If set, it will become default for all HR forms. משתמש מערכת מזהה (התחברות). אם נקבע, הוא יהפוך לברירת מחדל עבור כל צורות HR.
2491 apps/erpnext/erpnext/support/doctype/warranty_claim/warranty_claim.py +16 {0}: From {1} {0}: החל מ- {1}
2492 DocType: Task depends_on תלוי ב
2493 apps/erpnext/erpnext/accounts/doctype/account/account_tree.js +26 Name of new Account. Note: Please don't create accounts for Customers and Suppliers שם חשבון חדש. הערה: נא לא ליצור חשבונות ללקוחות וספקים
2494 apps/erpnext/erpnext/config/setup.py +37 Country wise default Address Templates תבניות כתובת ברירת מחדל חכם ארץ
2495 DocType: Sales Order Item Supplier delivers to Customer ספק מספק ללקוח
2496 apps/erpnext/erpnext/utilities/bot.py +34 [{0}](#Form/Item/{0}) is out of stock [{0}] (טופס # / כתבה / {0}) אזל מהמלאי
2562 apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +33 Investment Banking בנקאות השקעות
2563 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +79 Cash or Bank Account is mandatory for making payment entry חשבון מזומן או בנק הוא חובה להכנת כניסת תשלום
2564 DocType: Purchase Invoice Price List Exchange Rate מחיר מחירון שער חליפין
2565 DocType: Purchase Invoice Item Rate שיעור
2566 apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +104 Intern Intern
2567 DocType: Stock Entry From BOM מBOM
2568 apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +73 Basic בסיסי
2726 Inactive Customers לקוחות לא פעילים
2727 DocType: Landed Cost Voucher Purchase Receipts תקבולי רכישה
2728 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +29 How Pricing Rule is applied? איך תמחור כלל מיושם?
2729 DocType: Stock Entry Delivery Note No תעודת משלוח לא
2730 DocType: Cheque Print Template Message to show הודעה להראות
2731 apps/erpnext/erpnext/public/js/setup_wizard.js +28 Retail Retail
2732 DocType: Student Attendance Absent נעדר
2735 DocType: Purchase Taxes and Charges Template Purchase Taxes and Charges Template לרכוש תבנית מסים והיטלים
2736 DocType: Timesheet TS- TS-
2737 DocType: GL Entry Remarks הערות
2738 DocType: Payment Entry Account Paid From חשבון בתשלום מ
2739 DocType: Purchase Order Item Supplied Raw Material Item Code קוד פריט חומר הגלם
2740 DocType: Journal Entry Write Off Based On לכתוב את מבוסס על
2741 DocType: Stock Settings Show Barcode Field הצג ברקוד שדה
2766 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +684 Get Items from Product Bundle קבל פריטים מחבילת מוצרים
2767 DocType: Asset Straight Line קו ישר
2768 DocType: Project User Project User משתמש פרויקט
2769 DocType: GL Entry Is Advance האם Advance
2770 apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +21 Attendance From Date and Attendance To Date is mandatory נוכחות מתאריך והנוכחות עד כה היא חובה
2771 apps/erpnext/erpnext/controllers/buying_controller.py +156 Please enter 'Is Subcontracted' as Yes or No נא להזין את 'האם קבלן "ככן או לא
2772 DocType: Sales Team Contact No. מס 'לתקשר
2956 Employee Information מידע לעובדים
2957 DocType: Stock Entry Detail Additional Cost עלות נוספת
2958 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44 Can not filter based on Voucher No, if grouped by Voucher לא לסנן מבוססים על השובר לא, אם מקובצים לפי שובר
2959 apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916 Make Supplier Quotation הפוך הצעת מחיר של ספק
2960 DocType: Quality Inspection Incoming נכנסים
2961 DocType: BOM Materials Required (Exploded) חומרים דרושים (התפוצצו)
2962 apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +101 Row # {0}: Serial No {1} does not match with {2} {3} # השורה {0}: סידורי לא {1} אינו תואם עם {2} {3}
3012 apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +84 Stock cannot exist for Item {0} since has variants המניה לא יכול להתקיים לפריט {0} שכן יש גרסאות
3013 Sales Person-wise Transaction Summary סיכום עסקת איש מכירות-חכם
3014 apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +74 Warehouse {0} does not exist מחסן {0} אינו קיים
3015 DocType: Monthly Distribution Monthly Distribution Percentages אחוזים בחתך חודשיים
3016 apps/erpnext/erpnext/stock/doctype/batch/batch.py +58 The selected item cannot have Batch הפריט שנבחר לא יכול להיות אצווה
3017 DocType: Delivery Note % of materials delivered against this Delivery Note % מחומרים מועברים נגד תעודת משלוח זו
3018 DocType: Project Customer Details פרטי לקוחות
3032 apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +21 {0} for {1} {0} עבור {1}
3033 apps/erpnext/erpnext/setup/doctype/company/company.js +39 Cost Centers מרכזי עלות
3034 DocType: Purchase Receipt Rate at which supplier's currency is converted to company's base currency קצב שבו ספק של מטבע מומר למטבע הבסיס של החברה
3035 apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +36 Row #{0}: Timings conflicts with row {1} # השורה {0}: קונפליקטים תזמונים עם שורת {1}
3036 apps/erpnext/erpnext/config/accounts.py +308 Setup Gateway accounts. חשבונות Gateway התקנה.
3037 DocType: Employee Employment Type סוג התעסוקה
3038 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +42 Fixed Assets רכוש קבוע
3059 DocType: Serial No Under AMC תחת AMC
3060 apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +55 Item valuation rate is recalculated considering landed cost voucher amount שיעור הערכת שווי פריט מחושב מחדש שוקל סכום שובר עלות נחת
3061 apps/erpnext/erpnext/config/selling.py +153 Default settings for selling transactions. הגדרות ברירת מחדל עבור עסקות מכירה.
3062 DocType: BOM Update Tool Current BOM BOM הנוכחי
3063 apps/erpnext/erpnext/public/js/utils.js +49 Add Serial No להוסיף מספר סידורי
3064 apps/erpnext/erpnext/config/support.py +22 Warranty אַחֲרָיוּת
3065 DocType: Production Order Warehouses מחסנים
3188 apps/erpnext/erpnext/public/js/stock_analytics.js +57 Select Brand... מותג בחר ...
3189 apps/erpnext/erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py +152 Accumulated Depreciation as on פחת שנצבר כמו על
3190 DocType: Sales Invoice C-Form Applicable C-טופס ישים
3191 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +419 Operation Time must be greater than 0 for Operation {0} מבצע זמן חייב להיות גדול מ 0 למבצע {0}
3192 apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +106 Warehouse is mandatory המחסן הוא חובה
3193 DocType: Supplier Address and Contacts כתובת ומגעים
3194 DocType: UOM Conversion Detail UOM Conversion Detail פרט של אוני 'מישגן ההמרה
3242 DocType: Asset Maintenance Log Completion Date תאריך סיום
3243 DocType: Purchase Invoice Item Amount (Company Currency) הסכום (חברת מטבע)
3244 apps/erpnext/erpnext/stock/stock_ledger.py +379 {0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction. {0} יחידות של {1} צורך {2} על {3} {4} עבור {5} כדי להשלים את העסקה הזו.
3245 DocType: Announcement Student תלמיד
3246 apps/erpnext/erpnext/config/hr.py +238 Organization unit (department) master. יחידת ארגון הורים (מחלקה).
3247 apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75 Please enter message before sending נא להזין את ההודעה לפני השליחה
3248 apps/erpnext/erpnext/config/accounts.py +318 Point-of-Sale Profile נקודה-של-מכירת פרופיל
3356 apps/erpnext/erpnext/config/hr.py +50 Offer candidate a Job. מועמד הצעת עבודה.
3357 DocType: Notification Control Prompt for Email on Submission of הנחיה לדוא"ל על הגשת
3358 apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88 Total allocated leaves are more than days in the period עלים שהוקצו סה&quot;כ יותר מ ימים בתקופה
3359 DocType: Pricing Rule Percentage אֲחוּזִים
3360 apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70 Item {0} must be a stock Item פריט {0} חייב להיות פריט מניות
3361 DocType: Manufacturing Settings Default Work In Progress Warehouse עבודה המוגדרת כברירת מחדל במחסן ההתקדמות
3362 apps/erpnext/erpnext/config/accounts.py +288 Default settings for accounting transactions. הגדרות ברירת מחדל עבור עסקות חשבונאיות.
3520 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +327 Please select Employee Record first. אנא בחר עובד רשומה ראשון.
3521 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215 Row {0}: Party / Account does not match with {1} / {2} in {3} {4} שורה {0}: מסיבה / חשבון אינו תואם עם {1} / {2} {3} {4}
3522 apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +240 Please enter Expense Account נא להזין את חשבון הוצאות
3523 DocType: Account Stock מלאי
3524 apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +1068 Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry # השורה {0}: Reference סוג המסמך חייב להיות אחד הזמנת רכש, חשבונית רכישה או תנועת יומן
3525 DocType: Employee Current Address כתובת נוכחית
3526 DocType: Item If item is a variant of another item then description, image, pricing, taxes etc will be set from the template unless explicitly specified אם פריט הנו נגזר של פריט נוסף לאחר מכן תיאור, תמונה, תמחור, וכו 'ייקבעו מסים מהתבנית אלא אם צוין במפורש

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,लैब प्रिस्क्र
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,मूल्य द्वारा क्रमबद्ध करें
,Delay Days,विलंब दिवस
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,सेवा व्यय
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},सीरियल नंबर: {0} पहले से ही बिक्री चालान में संदर्भित है: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},सीरियल नंबर: {0} पहले से ही बिक्री चालान में संदर्भित है: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,बीजक
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,प्रतिधारण शेयर प्रवेश करें
DocType: Purchase Invoice Item,Item Weight Details,आइटम वजन विवरण
@ -149,7 +149,7 @@ DocType: Patient,Married,विवाहित
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},अनुमति नहीं {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,से आइटम प्राप्त
DocType: Price List,Price Not UOM Dependant,कीमत नहीं यूओएम निर्भर
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},शेयर वितरण नोट के खिलाफ अद्यतन नहीं किया जा सकता {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},शेयर वितरण नोट के खिलाफ अद्यतन नहीं किया जा सकता {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},उत्पाद {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,कोई आइटम सूचीबद्ध नहीं
DocType: Asset Repair,Error Description,त्रुटि विवरण
@ -157,7 +157,7 @@ DocType: Payment Reconciliation,Reconcile,समाधान करना
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,किराना
DocType: Quality Inspection Reading,Reading 1,1 पढ़ना
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,पेंशन फंड
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,अगली मूल्यह्रास की तारीख से पहले खरीद की तिथि नहीं किया जा सकता
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,अगली मूल्यह्रास की तारीख से पहले खरीद की तिथि नहीं किया जा सकता
DocType: Crop,Perennial,चिरस्थायी
DocType: Consultation,Consultation Date,परामर्श दिनांक
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,ERPNext उपयोगकर्ताओं के लिए उत्पाद प्रविष्टि और खोज
@ -172,7 +172,7 @@ DocType: POS Profile,Write Off Cost Center,ऑफ लागत केंद्
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""",उदाहरण के लिए &quot;प्राइमरी स्कूल&quot; या &quot;विश्वविद्यालय&quot;
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,स्टॉक रिपोर्ट
DocType: Warehouse,Warehouse Detail,वेअरहाउस विस्तार
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},क्रेडिट सीमा ग्राहक के लिए पार किया गया है {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},क्रेडिट सीमा ग्राहक के लिए पार किया गया है {0} {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,सत्रांत तिथि से बाद में शैक्षणिक वर्ष की वर्ष समाप्ति तिथि है जो करने के लिए शब्द जुड़ा हुआ है नहीं हो सकता है (शैक्षिक वर्ष {})। तारीखों को ठीक करें और फिर कोशिश करें।
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item",अनियंत्रित नहीं हो सकता है के रूप में एसेट रिकॉर्ड मद के सामने मौजूद है &quot;निश्चित परिसंपत्ति है&quot;
DocType: Delivery Trip,Departure Time,प्रस्थान समय
@ -192,7 +192,7 @@ DocType: Student Log,Student Log,छात्र लॉग
DocType: Quality Inspection,Get Specification Details,विशिष्टता विवरण
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,सप्लायर स्टैंडिंग के टेम्पलेट्स
DocType: Lead,Interested,इच्छुक
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,प्रारंभिक
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,प्रारंभिक
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},से {0} को {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,करों को सेटअप करने में असफल
DocType: Item,Copy From Item Group,आइटम समूह से कॉपी
@ -363,7 +363,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,तिथि राहत शामिल होने की तिथि से अधिक होना चाहिए
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,प्रति वर्ष पत्तियां
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,पंक्ति {0}: कृपया जाँच खाते के खिलाफ 'अग्रिम है' {1} यह एक अग्रिम प्रविष्टि है।
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},वेयरहाउस {0} से संबंधित नहीं है कंपनी {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},वेयरहाउस {0} से संबंधित नहीं है कंपनी {1}
DocType: Email Digest,Profit & Loss,लाभ हानि
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,लीटर
DocType: Task,Total Costing Amount (via Time Sheet),कुल लागत राशि (समय पत्रक के माध्यम से)
@ -455,6 +455,7 @@ DocType: BOM Item,Rate & Amount,दर और राशि
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,यह इस कंपनी के विरुद्ध लेनदेन पर आधारित है। विवरण के लिए नीचे समयरेखा देखें
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,स्वचालित सामग्री अनुरोध के निर्माण पर ईमेल द्वारा सूचित करें
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,प्रतिरोधी
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Consultationt
DocType: Journal Entry,Multi Currency,बहु मुद्रा
DocType: Opening Invoice Creation Tool,Invoice Type,चालान का प्रकार
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,बिलटी
@ -527,7 +528,6 @@ DocType: Email Digest,Credit Balance,जमा शेष
DocType: Employee,Widowed,विधवा
DocType: Request for Quotation,Request for Quotation,उद्धरण के लिए अनुरोध
DocType: Healthcare Settings,Require Lab Test Approval,लैब टेस्ट अनुमोदन की आवश्यकता है
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,आइटम कोड&gt; आइटम समूह&gt; ब्रांड
DocType: Salary Slip Timesheet,Working Hours,कार्य के घंटे
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,कुल बकाया
DocType: Naming Series,Change the starting / current sequence number of an existing series.,एक मौजूदा श्रृंखला के शुरू / वर्तमान अनुक्रम संख्या बदलें.
@ -556,7 +556,7 @@ DocType: Subscription,Yearly,वार्षिक
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,लागत केंद्र दर्ज करें
DocType: Drug Prescription,Dosage,मात्रा बनाने की विधि
DocType: Journal Entry Account,Sales Order,बिक्री आदेश
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,औसत। बिक्री दर
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,औसत। बिक्री दर
DocType: Assessment Plan,Examiner Name,परीक्षक नाम
DocType: Lab Test Template,No Result,कोई परिणाम नही
DocType: Purchase Invoice Item,Quantity and Rate,मात्रा और दर
@ -604,6 +604,7 @@ DocType: Employee,Health Concerns,स्वास्थ्य चिंताए
DocType: Payroll Entry,Select Payroll Period,पेरोल की अवधि का चयन करें
DocType: Purchase Invoice,Unpaid,अवैतनिक
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,बिक्री के लिए आरक्षित
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,कृपया मानव संसाधन में कर्मचारी नामकरण प्रणाली&gt; एचआर सेटिंग्स सेट करें
DocType: Packing Slip,From Package No.,पैकेज सं से
DocType: Item Attribute,To Range,सीमा
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,प्रतिभूति और जमाओं
@ -628,11 +629,11 @@ DocType: Pricing Rule,Valid Upto,विधिमान्य
DocType: Training Event,Workshop,कार्यशाला
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,खरीद आदेश को चेतावनी दें
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,अपने ग्राहकों के कुछ सूची . वे संगठनों या व्यक्तियों हो सकता है.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,बहुत हो गया भागों का निर्माण करने के लिए
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,बहुत हो गया भागों का निर्माण करने के लिए
DocType: POS Profile User,POS Profile User,पीओएस प्रोफ़ाइल उपयोगकर्ता
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,प्रत्यक्ष आय
DocType: Patient Appointment,Date TIme,दिनांक समय
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","खाता से वर्गीकृत किया है , तो खाते के आधार पर फ़िल्टर नहीं कर सकते"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","खाता से वर्गीकृत किया है , तो खाते के आधार पर फ़िल्टर नहीं कर सकते"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,प्रशासनिक अधिकारी
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,कंपनी और करों की स्थापना
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,कृपया कोर्स चुनें
@ -642,7 +643,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,अंतर खाता
DocType: Purchase Invoice,Supplier GSTIN,आपूर्तिकर्ता जीएसटीआईएन
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,उसकी निर्भर कार्य {0} बंद नहीं है के रूप में बंद काम नहीं कर सकते हैं।
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,"सामग्री अनुरोध उठाया जाएगा , जिसके लिए वेयरहाउस दर्ज करें"
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,"सामग्री अनुरोध उठाया जाएगा , जिसके लिए वेयरहाउस दर्ज करें"
DocType: Production Order,Additional Operating Cost,अतिरिक्त ऑपरेटिंग कॉस्ट
DocType: Lab Test Template,Lab Routine,लैब नियमित
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,प्रसाधन सामग्री
@ -810,7 +811,7 @@ DocType: Employee,Passport Number,पासपोर्ट नंबर
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Guardian2 के साथ संबंध
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,मैनेजर
DocType: Payment Entry,Payment From / To,भुगतान से / करने के लिए
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},नई क्रेडिट सीमा ग्राहक के लिए वर्तमान बकाया राशि की तुलना में कम है। क्रेडिट सीमा कम से कम हो गया है {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},नई क्रेडिट सीमा ग्राहक के लिए वर्तमान बकाया राशि की तुलना में कम है। क्रेडिट सीमा कम से कम हो गया है {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},कृपया वेअरहाउस में खाता सेट करें {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,'पर आधारित' और 'समूह द्वारा' दोनों समान नहीं हो सकते हैं
DocType: Sales Person,Sales Person Targets,बिक्री व्यक्ति लक्ष्य
@ -821,7 +822,7 @@ DocType: Lab Test Template,Compound,यौगिक
DocType: Student Batch Name,Batch Name,बैच का नाम
DocType: Fee Validity,Max number of visit,विज़िट की अधिकतम संख्या
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,Timesheet बनाया:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},भुगतान की विधि में डिफ़ॉल्ट नकद या बैंक खाता सेट करें {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},भुगतान की विधि में डिफ़ॉल्ट नकद या बैंक खाता सेट करें {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,भर्ती
DocType: GST Settings,GST Settings,जीएसटी सेटिंग्स
DocType: Selling Settings,Customer Naming By,द्वारा नामकरण ग्राहक
@ -945,7 +946,7 @@ DocType: Delivery Note,Customer's Purchase Order No,ग्राहक की
DocType: Budget,Budget Against,बजट के खिलाफ
DocType: Employee,Cell Number,सेल नंबर
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,दिए गए मानदंडों के लिए कोई कर्मचारी नहीं है जाँच करें कि वेतन स्लिप्स पहले से ही नहीं बनाया गया है।
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,ऑटो सामग्री अनुरोध सृजित
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,ऑटो सामग्री अनुरोध सृजित
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,खोया
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,आप स्तंभ 'जर्नल प्रवेश के खिलाफ' में मौजूदा वाउचर प्रवेश नहीं कर सकते
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,विनिर्माण के लिए आरक्षित
@ -953,7 +954,7 @@ DocType: Soil Texture,Sand,रेत
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,ऊर्जा
DocType: Opportunity,Opportunity From,अवसर से
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,मासिक वेतन बयान.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,पंक्ति {0}: {1} आइटम {2} के लिए आवश्यक सीरियल नंबर आपने {3} प्रदान किया है
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,पंक्ति {0}: {1} आइटम {2} के लिए आवश्यक सीरियल नंबर आपने {3} प्रदान किया है
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,कृपया एक तालिका चुनें
DocType: BOM,Website Specifications,वेबसाइट निर्दिष्टीकरण
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} &#39;प्राप्तकर्ता&#39; में एक अमान्य ईमेल पता है
@ -1041,7 +1042,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,उद्धरण अनुरोध
DocType: Vital Signs,Heart Rate / Pulse,हार्ट रेट / पल्स
DocType: Company,Default Bank Account,डिफ़ॉल्ट बैंक खाता
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","पार्टी के आधार पर फिल्टर करने के लिए, का चयन पार्टी पहले प्रकार"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","पार्टी के आधार पर फिल्टर करने के लिए, का चयन पार्टी पहले प्रकार"
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},आइटम के माध्यम से वितरित नहीं कर रहे हैं क्योंकि &#39;अपडेट स्टॉक&#39; की जाँच नहीं की जा सकती {0}
DocType: Vehicle,Acquisition Date,अधिग्रहण तिथि
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,ओपन स्कूल
@ -1065,7 +1066,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),अपना लेटर हेड अपलोड करें (यह वेब के अनुकूल 9 00 पीएक्स तक 100px के रूप में रखें)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: खाता {2} एक समूह नहीं हो सकता है
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,आइटम पंक्ति {IDX}: {doctype} {} DOCNAME ऊपर में मौजूद नहीं है &#39;{} doctype&#39; तालिका
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,Timesheet {0} पहले ही पूरा या रद्द कर दिया है
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,Timesheet {0} पहले ही पूरा या रद्द कर दिया है
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,कोई कार्य
DocType: Item Variant Settings,Copy Fields to Variant,फ़ील्ड्स को वेरिएंट कॉपी करें
DocType: Asset,Opening Accumulated Depreciation,खुलने संचित मूल्यह्रास
@ -1177,9 +1178,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,उप असेंबलियों के लिए योजना सामग्री
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,बिक्री भागीदारों और टेरिटरी
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,बीओएम {0} सक्रिय होना चाहिए
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),समापन (उद्घाटन + कुल)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),समापन (उद्घाटन + कुल)
DocType: Journal Entry,Depreciation Entry,मूल्यह्रास एंट्री
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,पहला दस्तावेज़ प्रकार का चयन करें
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,खाता मुद्रा में प्रिंट करें
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,इस रखरखाव भेंट रद्द करने से पहले सामग्री का दौरा {0} रद्द
DocType: Crop Cycle,ISO 8016 standard,आईएसओ 8016 मानक
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},धारावाहिक नहीं {0} मद से संबंधित नहीं है {1}
@ -1205,7 +1207,7 @@ DocType: Purchase Receipt,Range,रेंज
DocType: Supplier,Default Payable Accounts,डिफ़ॉल्ट लेखा देय
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,कर्मचारी {0} सक्रिय नहीं है या मौजूद नहीं है
DocType: Fee Structure,Components,अवयव
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},मद में दर्ज करें परिसंपत्ति वर्ग {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},मद में दर्ज करें परिसंपत्ति वर्ग {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,आइटम वेरिएंट {0} अद्यतन
DocType: Quality Inspection Reading,Reading 6,6 पढ़ना
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1257,6 +1259,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,कंपनी का नाम
DocType: SMS Center,Total Message(s),कुल संदेश (ओं )
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,स्थानांतरण के लिए आइटम का चयन करें
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,कृपया सेटअप के माध्यम से {0} के लिए नामकरण श्रृंखला सेट करें&gt; सेटिंग&gt; नामकरण श्रृंखला
DocType: Purchase Invoice,Additional Discount Percentage,अतिरिक्त छूट प्रतिशत
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,सभी की मदद वीडियो की एक सूची देखें
DocType: Agriculture Analysis Criteria,Soil Texture,मृदा संरचना
@ -1284,7 +1287,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,बीओएम वेबसाइट मद
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,अपने पत्र सिर और लोगो अपलोड करें। (आप उन्हें बाद में संपादित कर सकते हैं)।
DocType: Timesheet Detail,Bill,बिल
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,अगली मूल्यह्रास दिनांक अतीत की तारीख के रूप में दर्ज किया जाता है
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,अगली मूल्यह्रास दिनांक अतीत की तारीख के रूप में दर्ज किया जाता है
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,सफेद
DocType: SMS Center,All Lead (Open),सभी लीड (ओपन)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),पंक्ति {0}: मात्रा के लिए उपलब्ध नहीं {4} गोदाम में {1} प्रवेश के समय पोस्टिंग पर ({2} {3})
@ -1300,7 +1303,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,अगले संपर्क तिथि
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,खुलने मात्रा
DocType: Healthcare Settings,Appointment Reminder,नियुक्ति अनुस्मारक
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,राशि परिवर्तन के लिए खाता दर्ज करें
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,राशि परिवर्तन के लिए खाता दर्ज करें
DocType: Program Enrollment Tool Student,Student Batch Name,छात्र बैच नाम
DocType: Consultation,Doctor,चिकित्सक
DocType: Holiday List,Holiday List Name,अवकाश सूची नाम
@ -1316,6 +1319,7 @@ DocType: Patient,Patient Relation,रोगी संबंध
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,आबंटन उपकरण छोड़ दो
DocType: Item,Hub Category to Publish,हब श्रेणी प्रकाशित करने के लिए
DocType: Leave Block List,Leave Block List Dates,ब्लॉक सूची तिथियां छोड़ो
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,कृपया सेटअप&gt; नंबरिंग सीरिज के माध्यम से उपस्थिति के लिए श्रृंखलाबद्ध संख्या सेट करना
DocType: Sales Invoice,Billing Address GSTIN,बिलिंग पता GSTIN
DocType: Assessment Plan,Evaluate,मूल्यांकन करना
DocType: Workstation,Net Hour Rate,नेट घंटे की दर
@ -1349,7 +1353,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,रसीद आइटम खर
DocType: Purchase Receipt,PREC-RET-,PREC-RET-
DocType: POS Profile,Sales Invoice Payment,बिक्री चालान भुगतान
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,बिक्री आदेश / तैयार माल गोदाम में सुरक्षित गोदाम
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,बेच राशि
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,बेच राशि
DocType: Repayment Schedule,Interest Amount,ब्याज राशि
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,आप इस रिकॉर्ड के लिए खर्च अनुमोदक हैं . 'स्थिति' अद्यतन और बचा लो
DocType: Serial No,Creation Document No,निर्माण का दस्तावेज़
@ -1440,7 +1444,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,खुलने का लेखा बैलेंस
,GST Sales Register,जीएसटी बिक्री रजिस्टर
DocType: Sales Invoice Advance,Sales Invoice Advance,बिक्री चालान अग्रिम
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,अनुरोध करने के लिए कुछ भी नहीं
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,अनुरोध करने के लिए कुछ भी नहीं
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,अपने डोमेन का चयन करें
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},एक और बजट रिकार्ड &#39;{0}&#39; पहले से ही मौजूद है के खिलाफ {1} &#39;{2}&#39; वित्त वर्ष के लिए {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,खेतों के निर्माण के समय ही पर प्रतिलिपि किया जाएगा
@ -1450,11 +1454,11 @@ DocType: Cheque Print Template,Payer Settings,भुगतानकर्ता
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","इस प्रकार के आइटम कोड के साथ संलग्न किया जाएगा। अपने संक्षिप्त नाम ""एसएम"", और अगर उदाहरण के लिए, मद कोड ""टी शर्ट"", ""टी-शर्ट एस.एम."" हो जाएगा संस्करण के मद कोड है"
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,एक बार जब आप को वेतन पर्ची सहेजे शुद्ध वेतन (शब्दों) में दिखाई जाएगी।
DocType: Purchase Invoice,Is Return,वापसी है
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,सावधान
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,सावधान
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,वापसी / डेबिट नोट
DocType: Price List Country,Price List Country,मूल्य सूची देश
DocType: Item,UOMs,UOMs
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},आइटम के लिए {0} वैध धारावाहिक नग {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},आइटम के लिए {0} वैध धारावाहिक नग {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,मद कोड सीरियल नंबर के लिए बदला नहीं जा सकता
DocType: Purchase Invoice Item,UOM Conversion Factor,UOM रूपांतरण फैक्टर
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,बैच नंबर पाने के लिए मद कोड दर्ज करें
@ -1558,7 +1562,7 @@ DocType: Journal Entry,Get Outstanding Invoices,बकाया चालान
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,बिक्री आदेश {0} मान्य नहीं है
DocType: Supplier Scorecard,Warn for new Request for Quotations,कोटेशन के लिए नए अनुरोध के लिए चेतावनी दें
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,खरीद आदेश आप की योजना में मदद मिलेगी और अपनी खरीद पर का पालन करें
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","क्षमा करें, कंपनियों का विलय कर दिया नहीं किया जा सकता"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","क्षमा करें, कंपनियों का विलय कर दिया नहीं किया जा सकता"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,लैब टेस्ट प्रिस्क्रिप्शन
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",कुल अंक / स्थानांतरण मात्रा {0} सामग्री अनुरोध में {1} \ मद के लिए अनुरोध मात्रा {2} से बड़ा नहीं हो सकता है {3}
@ -1596,7 +1600,6 @@ DocType: Vehicle,Fuel UOM,ईंधन यू ओ एम
DocType: Warehouse,Warehouse Contact Info,वेयरहाउस संपर्क जानकारी
DocType: Payment Entry,Write Off Difference Amount,बंद लिखें अंतर राशि
DocType: Volunteer,Volunteer Name,स्वयंसेवक का नाम
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,कृपया शिक्षा&gt; शिक्षा सेटिंग्स में प्रशिक्षक नामकरण प्रणाली को सेटअप करें
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0}: कर्मचारी ईमेल नहीं मिला है, इसलिए नहीं भेजा गया ईमेल"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},देश के लिए नौवहन नियम लागू नहीं है {0}
DocType: Item,Foreign Trade Details,विदेश व्यापार विवरण
@ -1608,7 +1611,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,समूह रोल संख्या
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry","{0}, केवल ऋण खातों अन्य डेबिट प्रविष्टि के खिलाफ जोड़ा जा सकता है के लिए"
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,सभी कार्य भार की कुल होना चाहिए 1. तदनुसार सभी परियोजना कार्यों के भार को समायोजित करें
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,डिलिवरी नोट {0} प्रस्तुत नहीं किया गया है
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,डिलिवरी नोट {0} प्रस्तुत नहीं किया गया है
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,आइटम {0} एक उप अनुबंधित आइटम होना चाहिए
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,राजधानी उपकरणों
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","मूल्य निर्धारण नियम पहला आइटम, आइटम समूह या ब्रांड हो सकता है, जो क्षेत्र 'पर लागू होते हैं' के आधार पर चुना जाता है."
@ -1633,7 +1636,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,बाल गोदाम इस गोदाम के लिए मौजूद है। आप इस गोदाम को नष्ट नहीं कर सकते हैं।
DocType: Item,Website Item Groups,वेबसाइट आइटम समूह
DocType: Purchase Invoice,Total (Company Currency),कुल (कंपनी मुद्रा)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,सीरियल नंबर {0} एक बार से अधिक दर्ज किया
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,सीरियल नंबर {0} एक बार से अधिक दर्ज किया
DocType: Journal Entry,Journal Entry,जर्नल प्रविष्टि
DocType: Expense Claim Advance,Unclaimed amount,लावारिस राशि
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} प्रगति में आइटम
@ -1729,7 +1732,7 @@ DocType: Email Digest,For Company,कंपनी के लिए
apps/erpnext/erpnext/config/support.py +17,Communication log.,संचार लॉग इन करें.
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.",उद्धरण के लिए अनुरोध अधिक चेक पोर्टल सेटिंग्स के लिए पोर्टल से उपयोग करने में अक्षम है।
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,आपूर्तिकर्ता स्कोरकार्ड स्कोरिंग चर
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,राशि ख़रीदना
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,राशि ख़रीदना
DocType: Sales Invoice,Shipping Address Name,शिपिंग पता नाम
DocType: Material Request,Terms and Conditions Content,नियम और शर्तें सामग्री
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,कोर्स की अनुसूची बनाने में त्रुटियां थीं
@ -1993,7 +1996,7 @@ DocType: Expense Claim,Total Amount Reimbursed,कुल राशि की प
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,यह इस वाहन के खिलाफ लॉग पर आधारित है। जानकारी के लिए नीचे समय देखें
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},प्रदायक के खिलाफ चालान {0} दिनांक {1}
DocType: Customer,Default Price List,डिफ़ॉल्ट मूल्य सूची
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,एसेट आंदोलन रिकॉर्ड {0} बनाया
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,एसेट आंदोलन रिकॉर्ड {0} बनाया
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,आप नहीं हटा सकते वित्त वर्ष {0}। वित्त वर्ष {0} वैश्विक सेटिंग्स में डिफ़ॉल्ट के रूप में सेट किया गया है
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,एक ही नाम वाला ग्राहक पहले से मौजूद है
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,यह वेतन स्लिप्स जमा कर देगा और एआरआरआर जर्नल एंट्री बनायेगा। क्या आप आगे बढ़ना चाहते हैं?
@ -2007,6 +2010,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,मूल्य निर्धारण
DocType: Quotation,Term Details,अवधि विवरण
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,{0} इस छात्र समूह के लिए छात्रों की तुलना में अधिक नामांकन नहीं कर सकता।
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),कुल (कर के बिना)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,लीड गणना
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} 0 से अधिक होना चाहिए
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,स्टॉक उपलब्ध
@ -2025,7 +2029,6 @@ DocType: Lab Test,Technician Name,तकनीशियन का नाम
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,चालान को रद्द करने पर भुगतान अनलिंक
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},वर्तमान ओडोमीटर रीडिंग दर्ज की गई प्रारंभिक वाहन ओडोमीटर से अधिक होना चाहिए {0}
DocType: Restaurant Reservation,No Show,कोई शो नहीं
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,कृपया सेटअप के माध्यम से {0} के लिए नामकरण श्रृंखला सेट करें&gt; सेटिंग&gt; नामकरण श्रृंखला
DocType: Shipping Rule Country,Shipping Rule Country,नौवहन नियम देश
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,छोड़ दो और उपस्थिति
DocType: Maintenance Visit,Partially Completed,आंशिक रूप से पूरा
@ -2116,7 +2119,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,छात्र समूह के प्रशिक्षक
DocType: Grant Application,Assessment Mark (Out of 10),आकलन चिह्न (10 में से)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 मोबाइल नं
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,मुख्य
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,मुख्य
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,प्रकार
DocType: Naming Series,Set prefix for numbering series on your transactions,अपने लेनदेन पर श्रृंखला नंबरिंग के लिए उपसर्ग सेट
DocType: Employee Attendance Tool,Employees HTML,कर्मचारियों एचटीएमएल
@ -2164,7 +2167,7 @@ DocType: Crop,Crop Spacing,फसल अंतरण
DocType: Course,Course Abbreviation,कोर्स संक्षिप्त
DocType: Student Leave Application,Student Leave Application,छात्र लीव आवेदन
DocType: Item,Will also apply for variants,यह भी वेरिएंट के लिए लागू होगी
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","एसेट, रद्द नहीं किया जा सकता क्योंकि यह पहले से ही है {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","एसेट, रद्द नहीं किया जा सकता क्योंकि यह पहले से ही है {0}"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},कर्मचारी {0} को आधा दिन पर {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},कुल काम के घंटे अधिकतम काम के घंटे से अधिक नहीं होना चाहिए {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,पर
@ -2349,9 +2352,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),वास्तविक अंत तिथि (समय पत्रक के माध्यम से)
DocType: Soil Texture,Soil Type,मिट्टी के प्रकार
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},राशि {0} {1} के खिलाफ {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,नया संदेश
,Quotation Trends,कोटेशन रुझान
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},आइटम के लिए आइटम मास्टर में उल्लेख नहीं मद समूह {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,खाते में डेबिट एक प्राप्य खाता होना चाहिए
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,खाते में डेबिट एक प्राप्य खाता होना चाहिए
DocType: Shipping Rule,Shipping Amount,नौवहन राशि
DocType: Supplier Scorecard Period,Period Score,अवधि स्कोर
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,ग्राहक जोड़ें
@ -2362,7 +2366,7 @@ DocType: Purchase Order,Delivered,दिया गया
,Vehicle Expenses,वाहन खर्च
DocType: Serial No,Invoice Details,चालान विवरण
DocType: Grant Application,Show on Website,वेबसाइट पर दिखाएं
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},उपयोगी जीवन के बाद उम्मीद मूल्य से अधिक या बराबर होना चाहिए {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},उपयोगी जीवन के बाद उम्मीद मूल्य से अधिक या बराबर होना चाहिए {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,शुरुआत करना
DocType: Hub Category,Hub Category,हब श्रेणी
DocType: Purchase Invoice,SEZ,सेज
@ -2393,7 +2397,7 @@ DocType: Patient,Patient Details,रोगी विवरण
DocType: Patient,B Positive,बी सकारात्मक
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","पंक्ति # {0}: मात्रा, 1 होना चाहिए के रूप में आइटम एक निश्चित परिसंपत्ति है। कई मात्रा के लिए अलग पंक्ति का उपयोग करें।"
DocType: Leave Block List Allow,Leave Block List Allow,छोड़ दो ब्लॉक सूची की अनुमति दें
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,Abbr खाली या स्थान नहीं हो सकता
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,Abbr खाली या स्थान नहीं हो सकता
DocType: Patient Medical Record,Patient Medical Record,रोगी चिकित्सा रिकॉर्ड
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,गैर-समूह के लिए समूह
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,खेल
@ -2443,6 +2447,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,कोई उद्धरण नहीं प्राप्त करने के लिए प्राप्त आरएफक्यू को सेट नहीं किया जा सकता
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,कुल कटौती
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,खाता मुद्रा में प्रिंट करने के लिए एक खाता चुनें
,Production Analytics,उत्पादन एनालिटिक्स
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,यह इस रोगी के विरुद्ध लेनदेन पर आधारित है। विवरण के लिए नीचे दी गई समयरेखा देखें
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,मूल्य अपडेट
@ -2497,7 +2502,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,आ
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,कंपनी का चयन करें ...
DocType: Leave Control Panel,Leave blank if considered for all departments,रिक्त छोड़ अगर सभी विभागों के लिए विचार
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","रोजगार ( स्थायी , अनुबंध , प्रशिक्षु आदि ) के प्रकार."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} मद के लिए अनिवार्य है {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} मद के लिए अनिवार्य है {1}
DocType: Payroll Entry,Fortnightly,पाक्षिक
DocType: Currency Exchange,From Currency,मुद्रा से
DocType: Vital Signs,Weight (In Kilogram),वजन (किलोग्राम में)
@ -2573,7 +2578,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),मूल राशि (
DocType: Student,Guardians,रखवालों
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,दाम नहीं दिखाया जाएगा अगर कीमत सूची सेट नहीं है
DocType: Stock Entry,Total Incoming Value,कुल आवक मूल्य
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,डेबिट करने के लिए आवश्यक है
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,डेबिट करने के लिए आवश्यक है
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Timesheets मदद से अपनी टीम के द्वारा किया गतिविधियों के लिए समय, लागत और बिलिंग का ट्रैक रखने"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,खरीद मूल्य सूची
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,आपूर्तिकर्ता स्कोरकार्ड चर के टेम्पलेट्स
@ -2674,7 +2679,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,केवल संदर्भ के लिए।
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},चिकित्सक {0} {1} पर उपलब्ध नहीं है
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,बैच नंबर का चयन करें
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},अवैध {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},अवैध {0}: {1}
,GSTR-1,GSTR -1
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Fee Validity,Reference Inv,संदर्भ INV
@ -2711,8 +2716,8 @@ DocType: Fees,Send Payment Request,भुगतान अनुरोध भे
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","संचालन, परिचालन लागत निर्दिष्ट और अपने संचालन के लिए एक अनूठा आपरेशन नहीं दे ."
DocType: Water Analysis,Origin,मूल
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,इस दस्तावेज़ से सीमा से अधिक है {0} {1} आइटम के लिए {4}। आप कर रहे हैं एक और {3} उसी के खिलाफ {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,सहेजने के बाद आवर्ती सेट करें
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,बदलें चुनें राशि खाते
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,सहेजने के बाद आवर्ती सेट करें
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,बदलें चुनें राशि खाते
DocType: Purchase Invoice,Price List Currency,मूल्य सूची मुद्रा
DocType: Naming Series,User must always select,उपयोगकर्ता हमेशा का चयन करना होगा
DocType: Stock Settings,Allow Negative Stock,नकारात्मक स्टॉक की अनुमति दें
@ -2768,7 +2773,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,रखरखा
DocType: Supplier Scorecard,Warn for new Purchase Orders,नए क्रय आदेशों के लिए चेतावनी दें
DocType: Quality Inspection Reading,Reading 9,9 पढ़ना
DocType: Supplier,Is Frozen,जम गया है
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,समूह नोड गोदाम के लेन-देन के लिए चयन करने के लिए अनुमति नहीं है
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,समूह नोड गोदाम के लेन-देन के लिए चयन करने के लिए अनुमति नहीं है
DocType: Buying Settings,Buying Settings,सेटिंग्स ख़रीदना
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,एक समाप्त अच्छा आइटम के लिए बीओएम सं.
DocType: Upload Attendance,Attendance To Date,तिथि उपस्थिति
@ -2782,6 +2787,7 @@ DocType: Offer Letter,Accepted,स्वीकार किया
DocType: Grant Application,Organization,संगठन
DocType: BOM Update Tool,BOM Update Tool,BOM अद्यतन उपकरण
DocType: SG Creation Tool Course,Student Group Name,छात्र समूह का नाम
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,विस्फोट दृश्य दिखाएं
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,फीस बनाना
apps/erpnext/erpnext/setup/doctype/company/company.js +91,Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone.,आप वास्तव में इस कंपनी के लिए सभी लेन-देन को हटाना चाहते हैं सुनिश्चित करें। यह है के रूप में आपका मास्टर डाटा रहेगा। इस क्रिया को पूर्ववत नहीं किया जा सकता।
DocType: Room,Room Number,कमरा संख्या
@ -2792,7 +2798,7 @@ DocType: Journal Entry Account,Payroll Entry,पेरोल एंट्री
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,कर टेम्पलेट करें
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,उपयोगकर्ता मंच
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,कच्चे माल खाली नहीं किया जा सकता।
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","शेयर अद्यतन नहीं कर सका, चालान ड्रॉप शिपिंग आइटम शामिल हैं।"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","शेयर अद्यतन नहीं कर सका, चालान ड्रॉप शिपिंग आइटम शामिल हैं।"
DocType: Lab Test Sample,Lab Test Sample,लैब टेस्ट नमूना
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,त्वरित जर्नल प्रविष्टि
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,बीओएम किसी भी आइटम agianst उल्लेख अगर आप दर में परिवर्तन नहीं कर सकते
@ -2863,7 +2869,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,USD
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,चालान बनाएं
DocType: Selling Settings,Auto close Opportunity after 15 days,15 दिनों के बाद ऑटो बंद के मौके
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,{1} के स्कोरकार्ड की स्थिति के कारण {0} के लिए खरीद ऑर्डर की अनुमति नहीं है।
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,{1} के स्कोरकार्ड की स्थिति के कारण {0} के लिए खरीद ऑर्डर की अनुमति नहीं है।
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,अंत वर्ष
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,कोट / लीड%
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,अनुबंध समाप्ति तिथि शामिल होने की तिथि से अधिक होना चाहिए
@ -2974,7 +2980,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90 से ऊपर
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,पंक्ति # {0}: जर्नल प्रविष्टि {1} खाता नहीं है {2} या पहले से ही एक और वाउचर के खिलाफ मिलान
DocType: Supplier Scorecard Criteria,Criteria Weight,मापदंड वजन
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,आपूर्तिकर्ता&gt; प्रदायक प्रकार
DocType: Buying Settings,Default Buying Price List,डिफ़ॉल्ट खरीद मूल्य सूची
DocType: Payroll Entry,Salary Slip Based on Timesheet,वेतन पर्ची के आधार पर Timesheet
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,खरीदना दर
@ -3062,7 +3067,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,ट्रैक उद्योग प्रकार के द्वारा होता है .
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,Letterheads पर जाएं
DocType: Item Supplier,Item Supplier,आइटम प्रदायक
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,कोई बैच पाने के मद कोड दर्ज करें
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,कोई बैच पाने के मद कोड दर्ज करें
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},के लिए एक मूल्य का चयन करें {0} quotation_to {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,सभी पते.
DocType: Company,Stock Settings,स्टॉक सेटिंग्स
@ -3251,6 +3256,7 @@ DocType: Employee Loan,Loan Details,ऋण विवरण
DocType: Company,Default Inventory Account,डिफ़ॉल्ट इन्वेंटरी अकाउंट
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,पंक्ति {0}: पूर्ण मात्रा शून्य से अधिक होना चाहिए।
DocType: Antibiotic,Antibiotic Name,एंटीबायोटिक नाम
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,आइटम कोड&gt; आइटम समूह&gt; ब्रांड
DocType: Purchase Invoice,Apply Additional Discount On,अतिरिक्त छूट पर लागू होते हैं
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,प्रकार चुनें...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,सभी भूमि इकाइयों के लिए एक लिंक जिसमें फसल बढ़ रही है
@ -3443,6 +3449,7 @@ DocType: Guardian Student,Guardian Student,गार्जियन छात्
DocType: Supplier,Credit Limit,साख सीमा
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,औसत। मूल्य सूची दर बेचना
DocType: Production Plan Sales Order,Salse Order Date,Salse आदेश दिनांक
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,आपूर्तिकर्ता&gt; प्रदायक प्रकार
DocType: Salary Component,Salary Component,वेतन घटक
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,भुगतान प्रविष्टियां {0} संयुक्त राष्ट्र से जुड़े हैं
DocType: GL Entry,Voucher No,कोई वाउचर
@ -3451,7 +3458,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,सबसे ल
DocType: Leave Allocation,Leave Allocation,आबंटन छोड़ दो
DocType: Payment Request,Recipient Message And Payment Details,प्राप्तकर्ता संदेश और भुगतान की जानकारी
DocType: Training Event,Trainer Email,ट्रेनर ईमेल
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,सामग्री अनुरोध {0} बनाया
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,सामग्री अनुरोध {0} बनाया
DocType: Restaurant Reservation,No of People,लोगों की संख्या
DocType: Production Planning Tool,Include sub-contracted raw materials,उप अनुबंधित कच्चे माल को शामिल करें
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,शब्दों या अनुबंध के टेम्पलेट.
@ -3515,7 +3522,7 @@ DocType: Landed Cost Item,Receipt Document,रसीद दस्तावेज
DocType: Production Planning Tool,Create Material Requests,सामग्री अनुरोध बनाएँ
DocType: Employee Education,School/University,स्कूल / विश्वविद्यालय
DocType: Payment Request,Reference Details,संदर्भ विवरण
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,उम्मीद मूल्य उपयोगी जीवन के बाद सकल खरीद की गई राशि से कम होना चाहिए
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,उम्मीद मूल्य उपयोगी जीवन के बाद सकल खरीद की गई राशि से कम होना चाहिए
DocType: Sales Invoice Item,Available Qty at Warehouse,गोदाम में उपलब्ध मात्रा
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,बिल की राशि
DocType: Asset,Double Declining Balance,डबल गिरावट का संतुलन
@ -3527,7 +3534,7 @@ DocType: Attendance,On Leave,छुट्टी पर
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,अपडेट प्राप्त करे
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: खाता {2} कंपनी से संबंधित नहीं है {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,प्रत्येक विशेषताओं से कम से कम एक मान चुनें
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,सामग्री अनुरोध {0} को रद्द कर दिया है या बंद कर दिया गया है
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,सामग्री अनुरोध {0} को रद्द कर दिया है या बंद कर दिया गया है
apps/erpnext/erpnext/config/hr.py +310,Leave Management,प्रबंधन छोड़ दो
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,खाता द्वारा समूह
DocType: Sales Order,Fully Delivered,पूरी तरह से वितरित
@ -3538,14 +3545,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},वितरित राशि ऋण राशि से अधिक नहीं हो सकता है {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,कार्यक्रम पर जाएं
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},पंक्ति {0} # आवंटित राशि {1} लावारिस राशि से अधिक नहीं हो सकती {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,कृपया सेटअप&gt; नंबरिंग सीरिज के माध्यम से उपस्थिति के लिए श्रृंखलाबद्ध संख्या सेट करना
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},क्रय आदेश संख्या मद के लिए आवश्यक {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,उत्पादन आदेश नहीं बनाया
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','तिथि तक' 'तिथि से' के बाद होनी चाहिए
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},छात्र के रूप में स्थिति को बदल नहीं सकते {0} छात्र आवेदन के साथ जुड़ा हुआ है {1}
DocType: Asset,Fully Depreciated,पूरी तरह से घिस
,Stock Projected Qty,शेयर मात्रा अनुमानित
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},ग्राहक {0} परियोजना से संबंधित नहीं है {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},ग्राहक {0} परियोजना से संबंधित नहीं है {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,उल्लेखनीय उपस्थिति एचटीएमएल
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers","कोटेशन प्रस्तावों, बोलियों आप अपने ग्राहकों के लिए भेजा है रहे हैं"
DocType: Sales Order,Customer's Purchase Order,ग्राहक के क्रय आदेश
@ -3629,7 +3635,7 @@ DocType: Salary Slip,Hour Rate,घंटा दर
DocType: Stock Settings,Item Naming By,द्वारा नामकरण आइटम
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},अन्य समयावधि अंतिम लेखा {0} के बाद किया गया है {1}
DocType: Production Order,Material Transferred for Manufacturing,सामग्री विनिर्माण के लिए स्थानांतरित
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,खाता {0} करता नहीं मौजूद है
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,खाता {0} करता नहीं मौजूद है
DocType: Project,Project Type,परियोजना के प्रकार
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,इस कार्य के लिए बाल कार्य मौजूद है आप इस कार्य को नहीं हटा सकते।
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,लक्ष्य मात्रा या लक्ष्य राशि या तो अनिवार्य है .
@ -3731,11 +3737,11 @@ DocType: C-Form,I,मैं
DocType: Company,Asset Depreciation Cost Center,संपत्ति मूल्यह्रास लागत केंद्र
DocType: Sales Order Item,Sales Order Date,बिक्री आदेश दिनांक
DocType: Sales Invoice Item,Delivered Qty,वितरित मात्रा
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,कुल Excl कर
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","अगर जाँच की है, प्रत्येक उत्पादन आइटम के सभी बच्चों को सामग्री अनुरोधों में शामिल कर दिया जाएगा।"
DocType: Assessment Plan,Assessment Plan,आकलन योजना
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,ग्राहक {0} बनाया गया है
DocType: Stock Settings,Limit Percent,सीमा प्रतिशत
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,कृपया शिक्षा&gt; शिक्षा सेटिंग्स में प्रशिक्षक नामकरण प्रणाली को सेटअप करें
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,वर्तमान में किसी भी गोदाम में कोई स्टॉक उपलब्ध नहीं है
,Payment Period Based On Invoice Date,चालान तिथि के आधार पर भुगतान की अवधि
DocType: Sample Collection,No. of print,प्रिंट की संख्या
@ -3751,12 +3757,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),देनदार ({0})
DocType: Pricing Rule,Margin,हाशिया
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,नए ग्राहकों
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,सकल लाभ%
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,सकल लाभ%
DocType: Appraisal Goal,Weightage (%),वेटेज (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,पीओएस प्रोफ़ाइल बदलें
DocType: Bank Reconciliation Detail,Clearance Date,क्लीयरेंस तिथि
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,आकलन रिपोर्ट
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,सकल खरीद राशि अनिवार्य है
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,सकल खरीद राशि अनिवार्य है
DocType: Lead,Address Desc,जानकारी पता करने के लिए
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,पार्टी अनिवार्य है
DocType: Journal Entry,JV-,JV-
@ -3788,7 +3794,6 @@ DocType: Account,Accumulated Depreciation,संग्रहित अवमू
DocType: Supplier Scorecard Scoring Standing,Standing Name,स्थायी नाम
DocType: Stock Entry,Customer or Supplier Details,ग्राहक या आपूर्तिकर्ता विवरण
DocType: Employee Loan Application,Required by Date,दिनांक द्वारा आवश्यक
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),समापन शेष (डॉ - सीआर)
DocType: Lead,Lead Owner,मालिक लीड
DocType: Bin,Requested Quantity,अनुरोध मात्रा
DocType: Patient,Marital Status,वैवाहिक स्थिति
@ -3802,7 +3807,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,एकाधिक विविधताएं
DocType: Sales Invoice,Against Income Account,आय खाता के खिलाफ
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% वितरित
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,आइटम {0}: आदेश दिया मात्रा {1} न्यूनतम आदेश मात्रा {2} (मद में परिभाषित) की तुलना में कम नहीं हो सकता।
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,आइटम {0}: आदेश दिया मात्रा {1} न्यूनतम आदेश मात्रा {2} (मद में परिभाषित) की तुलना में कम नहीं हो सकता।
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,मासिक वितरण का प्रतिशत
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,कृपया अन्य उपयोगकर्ता के रूप में लॉगिन करें।
DocType: Territory,Territory Targets,टेरिटरी लक्ष्य
@ -3901,7 +3906,7 @@ DocType: Program Enrollment,School House,स्कूल हाउस
DocType: Serial No,Out of AMC,एएमसी के बाहर
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,बुक depreciations की संख्या कुल depreciations की संख्या से अधिक नहीं हो सकता
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,रखरखाव भेंट बनाओ
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,बिक्री मास्टर प्रबंधक {0} भूमिका है जो उपयोगकर्ता के लिए संपर्क करें
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,बिक्री मास्टर प्रबंधक {0} भूमिका है जो उपयोगकर्ता के लिए संपर्क करें
DocType: Company,Default Cash Account,डिफ़ॉल्ट नकद खाता
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,कंपनी ( नहीं ग्राहक या प्रदायक) मास्टर .
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,यह इस छात्र की उपस्थिति पर आधारित है
@ -4051,7 +4056,6 @@ DocType: Delivery Note Item,From Warehouse,गोदाम से
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,निर्दिष्ट मानदंडों के लिए कोई कर्मचारी नहीं
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,सामग्री के बिल के साथ कोई वस्तुओं का निर्माण करने के लिए
DocType: Restaurant,Default Customer,डिफ़ॉल्ट ग्राहक
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,कृपया मानव संसाधन में कर्मचारी नामकरण प्रणाली&gt; एचआर सेटिंग्स सेट करें
DocType: Assessment Plan,Supervisor Name,पर्यवेक्षक का नाम
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,पुष्टि न करें कि नियुक्ति उसी दिन के लिए बनाई गई है
DocType: Program Enrollment Course,Program Enrollment Course,कार्यक्रम नामांकन पाठ्यक्रम
@ -4169,7 +4173,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,वेबसाइट विवरण
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,इक्विटी में शुद्ध परिवर्तन
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,नवीनतम
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,चालान की खरीद {0} को रद्द कृपया पहले
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,चालान की खरीद {0} को रद्द कृपया पहले
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","ईमेल एड्रेस अद्वितीय होना चाहिए, पहले से ही के लिए मौजूद है {0}"
DocType: Serial No,AMC Expiry Date,एएमसी समाप्ति तिथि
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,रसीद
@ -4186,7 +4190,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,अभी त
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,नकदी प्रवाह विवरण
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},ऋण राशि का अधिकतम ऋण राशि से अधिक नहीं हो सकता है {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,लाइसेंस
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},सी-फार्म से इस चालान {0} निकाल दें {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},सी-फार्म से इस चालान {0} निकाल दें {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,का चयन करें कृपया आगे ले जाना है अगर तुम भी शामिल करना चाहते हैं पिछले राजकोषीय वर्ष की शेष राशि इस वित्त वर्ष के लिए छोड़ देता है
DocType: GL Entry,Against Voucher Type,वाउचर प्रकार के खिलाफ
DocType: Physician,Phone (R),फ़ोन (आर)
@ -4198,7 +4202,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,बी नकारात्मक
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,रखरखाव स्थिति को रद्द करने या प्रस्तुत करने के लिए पूरा किया जाना चाहिए
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},खाता {0} करता है कंपनी के अंतर्गत आता नहीं {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,{0} पंक्ति में सीरियल नंबर डिलिवरी नोट से मेल नहीं खाती
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,{0} पंक्ति में सीरियल नंबर डिलिवरी नोट से मेल नहीं खाती
DocType: Student,Guardian Details,गार्जियन विवरण
DocType: C-Form,C-Form,सी - फार्म
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,कई कर्मचारियों के लिए मार्क उपस्थिति
@ -4240,7 +4244,7 @@ DocType: Opening Invoice Creation Tool,Sales,विक्रय
DocType: Stock Entry Detail,Basic Amount,मूल राशि
DocType: Training Event,Exam,परीक्षा
DocType: Complaint,Complaint,शिकायत
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},शेयर मद के लिए आवश्यक वेयरहाउस {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},शेयर मद के लिए आवश्यक वेयरहाउस {0}
DocType: Leave Allocation,Unused leaves,अप्रयुक्त पत्ते
DocType: Patient,Alcohol Past Use,शराब विगत का प्रयोग करें
DocType: Fertilizer Content,Fertilizer Content,उर्वरक सामग्री
@ -4364,6 +4368,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,सूत्र
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,सीरियल #
DocType: Lab Test Template,Lab Test Template,लैब टेस्ट टेम्पलेट
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,विक्रय खाता
DocType: Purchase Invoice Item,Total Weight,कुल वजन
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,बिक्री पर कमीशन
DocType: Offer Letter Term,Value / Description,मूल्य / विवरण
@ -4521,7 +4526,7 @@ Updated via 'Time Log'","मिनट में
DocType: Customer,From Lead,लीड से
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,उत्पादन के लिए आदेश जारी किया.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,वित्तीय वर्ष का चयन करें ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,पीओएस प्रोफ़ाइल पीओएस एंट्री बनाने के लिए आवश्यक
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,पीओएस प्रोफ़ाइल पीओएस एंट्री बनाने के लिए आवश्यक
DocType: Program Enrollment Tool,Enroll Students,छात्रों को भर्ती
DocType: Lab Test,Approved Date,स्वीकृत दिनांक
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,मानक बेच
@ -4596,7 +4601,7 @@ DocType: Employee,Held On,पर Held
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,उत्पादन आइटम
,Employee Information,कर्मचारी जानकारी
DocType: Stock Entry Detail,Additional Cost,अतिरिक्त लागत
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","वाउचर के आधार पर फ़िल्टर नहीं कर सकते नहीं, वाउचर के आधार पर समूहीकृत अगर"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","वाउचर के आधार पर फ़िल्टर नहीं कर सकते नहीं, वाउचर के आधार पर समूहीकृत अगर"
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,प्रदायक कोटेशन बनाओ
DocType: Quality Inspection,Incoming,आवक
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,विक्रय और खरीद के लिए डिफ़ॉल्ट कर टेम्पलेट बनाए गए हैं
@ -4613,7 +4618,7 @@ DocType: Batch,Batch ID,बैच आईडी
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},नोट : {0}
,Delivery Note Trends,डिलिवरी नोट रुझान
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,इस सप्ताह की सारांश
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,शेयर मात्रा में
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,शेयर मात्रा में
DocType: Delivery Trip,Calculate Estimated Arrival Times,अनुमानित आगमन टाइम्स की गणना करें
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,खाता: {0} केवल शेयर लेनदेन के माध्यम से अद्यतन किया जा सकता है
DocType: Student Group Creation Tool,Get Courses,पाठ्यक्रम जाओ
@ -4629,7 +4634,7 @@ DocType: Purchase Order,To Bill,बिल
DocType: Material Request,% Ordered,% का आदेश दिया
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.","कोर्स आधारित छात्र समूह के लिए, पाठ्यक्रम नामांकन कार्यक्रमों में प्रत्येक छात्र के लिए कार्यक्रम नामांकन में मान्य किया जाएगा।"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,ठेका
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,औसत। क्रय दर
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,औसत। क्रय दर
DocType: Task,Actual Time (in Hours),(घंटे में) वास्तविक समय
DocType: Employee,History In Company,कंपनी में इतिहास
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},{प्रेषक} का नया संदेश
@ -4677,7 +4682,7 @@ DocType: Asset Repair,Asset Repair,संपत्ति मरम्मत
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},पंक्ति {0}: बीओएम # की मुद्रा {1} चयनित मुद्रा के बराबर होना चाहिए {2}
DocType: Journal Entry Account,Exchange Rate,विनिमय दर
DocType: Patient,Additional information regarding the patient,रोगी के बारे में अतिरिक्त जानकारी
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,बिक्री आदेश {0} प्रस्तुत नहीं किया गया है
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,बिक्री आदेश {0} प्रस्तुत नहीं किया गया है
DocType: Homepage,Tag Line,टैग लाइन
DocType: Fee Component,Fee Component,शुल्क घटक
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,बेड़े प्रबंधन
@ -4889,7 +4894,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,आकलन के
DocType: Employee Education,Employee Education,कर्मचारी शिक्षा
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,डुप्लिकेट आइटम समूह मद समूह तालिका में पाया
DocType: Land Unit,Parent Land Unit,अभिभावक भूमि इकाई
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,यह आइटम विवरण लाने की जरूरत है।
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,यह आइटम विवरण लाने की जरूरत है।
DocType: Fertilizer,Fertilizer Name,उर्वरक का नाम
DocType: Salary Slip,Net Pay,शुद्ध वेतन
DocType: Account,Account,खाता
@ -4968,7 +4973,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),वास्तवि
DocType: Item Customer Detail,Ref Code,रेफरी कोड
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,पीओएस प्रोफ़ाइल में ग्राहक समूह की आवश्यकता है
apps/erpnext/erpnext/config/hr.py +12,Employee records.,कर्मचारी रिकॉर्ड.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,सेट कृपया अगले मूल्यह्रास दिनांक
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,सेट कृपया अगले मूल्यह्रास दिनांक
DocType: HR Settings,Payroll Settings,पेरोल सेटिंग्स
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,न-जुड़े चालान और भुगतान का मिलान.
DocType: POS Settings,POS Settings,स्थिति सेटिंग्स
@ -5135,7 +5140,7 @@ DocType: Item,Customer Code,ग्राहक कोड
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},के लिए जन्मदिन अनुस्मारक {0}
DocType: Asset Maintenance Task,Last Completion Date,अंतिम समापन तिथि
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,दिनों से पिछले आदेश
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,खाते में डेबिट एक बैलेंस शीट खाता होना चाहिए
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,खाते में डेबिट एक बैलेंस शीट खाता होना चाहिए
DocType: Buying Settings,Naming Series,श्रृंखला का नामकरण
DocType: Leave Block List,Leave Block List Name,ब्लॉक सूची नाम छोड़ दो
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,बीमा प्रारंभ दिनांक से बीमा समाप्ति की तारीख कम होना चाहिए
@ -5262,6 +5267,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,भुगतान प्रविष्टियां प्राप्त
DocType: Quotation Item,Against Docname,Docname खिलाफ
DocType: SMS Center,All Employee (Active),सभी कर्मचारी (सक्रिय)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,ग्राहक&gt; ग्राहक समूह&gt; क्षेत्र
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,अब देखें
DocType: BOM,Raw Material Cost,कच्चे माल की लागत
DocType: Item Reorder,Re-Order Level,स्तर पुनः क्रमित करें
@ -5360,7 +5366,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,बैठने की क्षमता
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,लैब टेस्ट समूह
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,ग्राहक&gt; ग्राहक समूह&gt; क्षेत्र
DocType: Project,Total Expense Claim (via Expense Claims),कुल खर्च दावा (खर्च का दावा के माध्यम से)
DocType: GST Settings,GST Summary,जीएसटी सारांश
DocType: Assessment Result,Total Score,कुल स्कोर
@ -5373,7 +5378,7 @@ DocType: Batch,Source Document Type,स्रोत दस्तावेज़
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,निम्नलिखित पाठ्यक्रम कार्यक्रम बनाए गए थे
DocType: Journal Entry,Total Debit,कुल डेबिट
DocType: Manufacturing Settings,Default Finished Goods Warehouse,डिफ़ॉल्ट तैयार माल गोदाम
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,बिक्री व्यक्ति
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,बिक्री व्यक्ति
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,बजट और लागत केंद्र
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,भुगतान के कई डिफ़ॉल्ट मोड की अनुमति नहीं है
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,के लिए
@ -5546,7 +5551,7 @@ DocType: Program,Program Name,कार्यक्रम का नाम
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,टैक्स या प्रभार के लिए पर विचार
DocType: Driver,Driving License Category,ड्राइविंग लाइसेंस श्रेणी
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,वास्तविक मात्रा अनिवार्य है
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} वर्तमान में एक {1} सप्लायर स्कोरकार्ड खड़ा है, और इस आपूर्तिकर्ता को खरीद आदेश सावधानी के साथ जारी किए जाने चाहिए।"
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} वर्तमान में एक {1} सप्लायर स्कोरकार्ड खड़ा है, और इस आपूर्तिकर्ता को खरीद आदेश सावधानी के साथ जारी किए जाने चाहिए।"
DocType: Asset Maintenance Team,Asset Maintenance Team,संपत्ति रखरखाव टीम
DocType: Employee Loan,Loan Type,प्रकार के ऋण
DocType: Scheduling Tool,Scheduling Tool,शेड्यूलिंग उपकरण

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,Lab Prescription
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,Poredaj po cijeni
,Delay Days,Dani odgode
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,usluga Rashodi
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},Serijski broj: {0} već se odnosi na prodajnu fakturu: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},Serijski broj: {0} već se odnosi na prodajnu fakturu: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,Faktura
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,Učini pričuve za zadržavanje
DocType: Purchase Invoice Item,Item Weight Details,Detalji o težini stavke
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,Nadređeni detalj docname
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","Referenca: {0}, šifra stavke: {1} i klijent: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,kg
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,Otvaranje za posao.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},BOM nije određen za podugovaranje stavku {0} u redak {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},BOM nije određen za podugovaranje stavku {0} u redak {1}
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} Rezultat poslan
DocType: Item Attribute,Increment,Pomak
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,Vremenski raspon
@ -150,7 +150,7 @@ DocType: Patient,Married,Oženjen
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},Nije dopušteno {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,Nabavite stavke iz
DocType: Price List,Price Not UOM Dependant,Cijena nije ovisna o UOM-u
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},Dionica ne može biti obnovljeno protiv isporuke Napomena {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},Dionica ne može biti obnovljeno protiv isporuke Napomena {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},Proizvod {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,Nema navedenih stavki
DocType: Asset Repair,Error Description,Opis pogreške
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,pomiriti
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,Trgovina prehrambenom robom
DocType: Quality Inspection Reading,Reading 1,Čitanje 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,Mirovinski fondovi
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,Sljedeća Amortizacija Datum ne može biti prije Datum kupnje
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,Sljedeća Amortizacija Datum ne može biti prije Datum kupnje
DocType: Crop,Perennial,višegodišnji
DocType: Consultation,Consultation Date,Datum konzultacije
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,Popis proizvoda i otkriće za korisnike ERP-a
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,Otpis troška
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""",npr &quot;Osnovna škola&quot; ili &quot;Sveučilište&quot;
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,dionica izvješća
DocType: Warehouse,Warehouse Detail,Detalji o skladištu
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},Kreditni limit je prešao na kupca {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},Kreditni limit je prešao na kupca {0} {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,Datum Pojam završetka ne može biti kasnije od godine datum završetka školske godine u kojoj je pojam vezan (Akademska godina {}). Ispravite datume i pokušajte ponovno.
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","""je nepokretna imovina"" se ne može ne označiti, jer postoji zapis o Imovini nad navedenom stavkom"
DocType: Delivery Trip,Departure Time,Vrijeme polaska
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,Studentski Prijava
DocType: Quality Inspection,Get Specification Details,Kreiraj detalje specifikacija
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,Predlošci stanja dobavljača.
DocType: Lead,Interested,Zainteresiran
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,Otvaranje
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,Otvaranje
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},Od {0} do {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,Postavljanje poreza nije uspjelo
DocType: Item,Copy From Item Group,Primjerak iz točke Group
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,Olakšavanja Datum mora biti veći od dana ulaska u
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,Ostavlja godišnje
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,"Red {0}: Provjerite 'Je li Advance ""protiv nalog {1} Ako je to unaprijed ulaz."
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},Skladište {0} ne pripada tvrtki {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},Skladište {0} ne pripada tvrtki {1}
DocType: Email Digest,Profit & Loss,Gubitak profita
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,Litre
DocType: Task,Total Costing Amount (via Time Sheet),Ukupno troška Iznos (preko vremenska tablica)
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,Ocijenite i iznosite
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,To se temelji na transakcijama protiv ove tvrtke. Pojedinosti potražite u nastavku
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Obavijest putem maila prilikom stvaranja automatskog Zahtjeva za robom
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,otporan
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Consultationt
DocType: Journal Entry,Multi Currency,Više valuta
DocType: Opening Invoice Creation Tool,Invoice Type,Tip fakture
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,Otpremnica
@ -528,7 +529,6 @@ DocType: Email Digest,Credit Balance,Kreditna bilanca
DocType: Employee,Widowed,Udovički
DocType: Request for Quotation,Request for Quotation,Zahtjev za ponudu
DocType: Healthcare Settings,Require Lab Test Approval,Potrebno odobrenje laboratorijskog ispitivanja
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Šifra stavke&gt; Skupina stavke&gt; Brand
DocType: Salary Slip Timesheet,Working Hours,Radnih sati
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,Ukupno izvanredno
DocType: Naming Series,Change the starting / current sequence number of an existing series.,Promjena polaznu / tekući redni broj postojeće serije.
@ -557,7 +557,7 @@ DocType: Subscription,Yearly,Godišnji
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,Unesite troška
DocType: Drug Prescription,Dosage,Doziranje
DocType: Journal Entry Account,Sales Order,Narudžba kupca
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,Prosječna prodajna cijena
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,Prosječna prodajna cijena
DocType: Assessment Plan,Examiner Name,Naziv ispitivač
DocType: Lab Test Template,No Result,Nema rezultata
DocType: Purchase Invoice Item,Quantity and Rate,Količina i stopa
@ -605,6 +605,7 @@ DocType: Employee,Health Concerns,Zdravlje Zabrinutost
DocType: Payroll Entry,Select Payroll Period,Odaberite Platne razdoblje
DocType: Purchase Invoice,Unpaid,Neplaćen
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,Rezervirano za prodaju
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Postavite Sustav imenovanja zaposlenika u ljudskim resursima&gt; HR postavke
DocType: Packing Slip,From Package No.,Iz paketa broj
DocType: Item Attribute,To Range,U rasponu
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,Vrijednosni papiri i depoziti
@ -629,11 +630,11 @@ DocType: Pricing Rule,Valid Upto,Vrijedi Upto
DocType: Training Event,Workshop,Radionica
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,Upozorite narudžbenice
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,Navedite nekoliko svojih kupaca. Oni mogu biti tvrtke ili fizičke osobe.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,Dosta Dijelovi za izgradnju
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,Dosta Dijelovi za izgradnju
DocType: POS Profile User,POS Profile User,Korisnik POS profila
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,Izravni dohodak
DocType: Patient Appointment,Date TIme,Datum vrijeme
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","Ne možete filtrirati na temelju računa, ako je grupirano po računu"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","Ne možete filtrirati na temelju računa, ako je grupirano po računu"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,Administrativni službenik
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,Postavljanje tvrtke i poreza
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,Odaberite Tečaj
@ -643,7 +644,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,Račun razlike
DocType: Purchase Invoice,Supplier GSTIN,Dobavljač GSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,Ne može zatvoriti zadatak kao njegova ovisna zadatak {0} nije zatvoren.
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,Unesite skladište za koje Materijal Zahtjev će biti podignuta
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,Unesite skladište za koje Materijal Zahtjev će biti podignuta
DocType: Production Order,Additional Operating Cost,Dodatni trošak
DocType: Lab Test Template,Lab Routine,Laboratorijska rutina
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,kozmetika
@ -811,7 +812,7 @@ DocType: Employee,Passport Number,Broj putovnice
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Odnos s Guardian2
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,Upravitelj
DocType: Payment Entry,Payment From / To,Plaćanje Od / Do
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Novi kreditni limit je manja od trenutne preostali iznos za kupca. Kreditni limit mora biti atleast {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Novi kreditni limit je manja od trenutne preostali iznos za kupca. Kreditni limit mora biti atleast {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},Postavite račun u skladištu {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,'Temelji se na' i 'Grupiranje po' ne mogu biti isti
DocType: Sales Person,Sales Person Targets,Prodajni plan prodavača
@ -822,7 +823,7 @@ DocType: Lab Test Template,Compound,Spoj
DocType: Student Batch Name,Batch Name,Batch Name
DocType: Fee Validity,Max number of visit,Maksimalni broj posjeta
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,Timesheet stvorio:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},Molimo postavite zadanu gotovinom ili banka računa u načinu plaćanja {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},Molimo postavite zadanu gotovinom ili banka računa u načinu plaćanja {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,Upisati
DocType: GST Settings,GST Settings,Postavke GST-a
DocType: Selling Settings,Customer Naming By,Imenovanje kupca prema
@ -946,7 +947,7 @@ DocType: Delivery Note,Customer's Purchase Order No,Kupca Narudžbenica br
DocType: Budget,Budget Against,proračun protiv
DocType: Employee,Cell Number,Mobitel Broj
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,Za određene kriterije nema zaposlenika. Provjerite da Plaća Slips još nisu stvorena.
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,Automatski zahtjev za materijalom odobren
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,Automatski zahtjev za materijalom odobren
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,Izgubljen
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,Ne možete unijeti trenutni nalog u stupac 'u odnosu na temeljnicu'
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,Rezervirano za proizvodnju
@ -954,7 +955,7 @@ DocType: Soil Texture,Sand,Pijesak
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,energija
DocType: Opportunity,Opportunity From,Prilika od
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,Mjesečna plaća izjava.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Redak {0}: {1} Serijski brojevi potrebni za stavku {2}. Naveli ste {3}.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Redak {0}: {1} Serijski brojevi potrebni za stavku {2}. Naveli ste {3}.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,Odaberite tablicu
DocType: BOM,Website Specifications,Web Specifikacije
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} je nevažeća adresa e-pošte u &quot;Primatelji&quot;
@ -1042,7 +1043,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,Zatraženo pitanje
DocType: Vital Signs,Heart Rate / Pulse,Puls / srčane frekvencije
DocType: Company,Default Bank Account,Zadani bankovni račun
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","Za filtriranje se temelji na stranke, odaberite stranka Upišite prvi"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","Za filtriranje se temelji na stranke, odaberite stranka Upišite prvi"
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},Opcija 'Ažuriraj zalihe' nije dostupna jer stavke nisu dostavljene putem {0}
DocType: Vehicle,Acquisition Date,Datum akvizicije
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,kom
@ -1066,7 +1067,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),Prenesite glavu slova (Držite ga prijateljskim webom kao 900 piksela za 100 px)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: Račun {2} ne može biti grupa
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,Stavka retka {idx}: {DOCTYPE} {DOCNAME} ne postoji u gore &#39;{DOCTYPE}&#39; stol
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,Timesheet {0} već je završen ili otkazan
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,Timesheet {0} već je završen ili otkazan
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,Nema zadataka
DocType: Item Variant Settings,Copy Fields to Variant,Kopiranje polja u inačicu
DocType: Asset,Opening Accumulated Depreciation,Otvaranje Akumulirana amortizacija
@ -1178,9 +1179,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,Plan materijal za pod-sklopova
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,Prodaja Partneri i Županija
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,BOM {0} mora biti aktivna
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),Zatvaranje (otvaranje + ukupno)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),Zatvaranje (otvaranje + ukupno)
DocType: Journal Entry,Depreciation Entry,Amortizacija Ulaz
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Molimo odaberite vrstu dokumenta prvi
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,Ispiši u valuti računa
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Odustani Posjeta materijala {0} prije otkazivanja ovog održavanja pohod
DocType: Crop Cycle,ISO 8016 standard,ISO 8016 standard
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},Serijski Ne {0} ne pripada točki {1}
@ -1206,7 +1208,7 @@ DocType: Purchase Receipt,Range,Domet
DocType: Supplier,Default Payable Accounts,Zadane naplativo račune
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,Zaposlenik {0} nije aktivan ili ne postoji
DocType: Fee Structure,Components,Komponente
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},Unesite imovinom Kategorija tačke {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},Unesite imovinom Kategorija tačke {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,Stavka Varijante {0} ažurirani
DocType: Quality Inspection Reading,Reading 6,Čitanje 6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1258,6 +1260,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,Ime tvrtke
DocType: SMS Center,Total Message(s),Ukupno poruka ( i)
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,Odaberite stavke za prijenos
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Postavite Serija za imenovanje {0} putem postavke&gt; Postavke&gt; Serija za imenovanje
DocType: Purchase Invoice,Additional Discount Percentage,Dodatni Postotak Popust
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,Pregled popisa svih pomoć videa
DocType: Agriculture Analysis Criteria,Soil Texture,Tekstura tla
@ -1285,7 +1288,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,BOM web stranica predmeta
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,Upload Vaše pismo glavu i logotip. (Možete ih uređivati kasnije).
DocType: Timesheet Detail,Bill,Račun
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,Sljedeća Amortizacija Datum upisuje kao prošlih dana
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,Sljedeća Amortizacija Datum upisuje kao prošlih dana
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,Bijela
DocType: SMS Center,All Lead (Open),Svi potencijalni kupci (aktualni)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),Red {0}: Kol nisu dostupni za {4} u skladištu {1} na objavljivanje vrijeme upisa ({2} {3})
@ -1301,7 +1304,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,Sljedeći datum kontakta
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,Otvaranje Kol
DocType: Healthcare Settings,Appointment Reminder,Podsjetnik za sastanak
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,Unesite račun za promjene visine
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,Unesite račun za promjene visine
DocType: Program Enrollment Tool Student,Student Batch Name,Studentski Batch Name
DocType: Consultation,Doctor,Liječnik
DocType: Holiday List,Holiday List Name,Ime popisa praznika
@ -1317,6 +1320,7 @@ DocType: Patient,Patient Relation,Pacijentna veza
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,Alat za raspodjelu odsustva
DocType: Item,Hub Category to Publish,Kategorija hub za objavljivanje
DocType: Leave Block List,Leave Block List Dates,Datumi popisa neodobrenih odsustava
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Postavite serijske brojeve za prisustvovanje putem Setup&gt; Serija numeriranja
DocType: Sales Invoice,Billing Address GSTIN,Adresa za naplatu GSTIN
DocType: Assessment Plan,Evaluate,procijeniti
DocType: Workstation,Net Hour Rate,Neto sat cijena
@ -1350,7 +1354,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,Stavka primke
DocType: Purchase Receipt,PREC-RET-,Prec-RET-
DocType: POS Profile,Sales Invoice Payment,Prodaja fakture za plaćanje
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,Rezervirano Warehouse u prodajni nalog / skladišta gotovih proizvoda
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,Prodaja Iznos
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,Prodaja Iznos
DocType: Repayment Schedule,Interest Amount,Iznos kamata
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,Vi ste osoba za odobrenje rashoda za ovaj zapis. Molimo ažurirajte status i spremite
DocType: Serial No,Creation Document No,Stvaranje dokumenata nema
@ -1441,7 +1445,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,Otvori računovodstveno stanje
,GST Sales Register,GST registar prodaje
DocType: Sales Invoice Advance,Sales Invoice Advance,Predujam prodajnog računa
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,Ništa za zatražiti
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,Ništa za zatražiti
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,Odaberite svoje domene
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},Još jedan proračun rekord &#39;{0}&#39; već postoji od {1} &#39;{2}&#39; za fiskalnu godinu {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,Polja će biti kopirana samo u trenutku stvaranja.
@ -1451,11 +1455,11 @@ DocType: Cheque Print Template,Payer Settings,Postavke Payer
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","To će biti dodan u šifra varijante. Na primjer, ako je vaš naziv je ""SM"", a točka kod ""T-shirt"", stavka kod varijante će biti ""T-SHIRT-SM"""
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,Neto plaća (riječima) će biti vidljiva nakon što spremite klizne plaće.
DocType: Purchase Invoice,Is Return,Je li povratak
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,Oprez
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,Oprez
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,Povratak / debitna Napomena
DocType: Price List Country,Price List Country,Država cjenika
DocType: Item,UOMs,J. MJ.
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} valjani serijski nos za Stavka {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} valjani serijski nos za Stavka {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Kod proizvoda ne može se mijenjati za serijski broj.
DocType: Purchase Invoice Item,UOM Conversion Factor,UOM konverzijski faktor
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,Unesite Šifra dobiti broj serije
@ -1559,7 +1563,7 @@ DocType: Journal Entry,Get Outstanding Invoices,Kreiraj neplaćene račune
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,Prodajnog naloga {0} nije ispravan
DocType: Supplier Scorecard,Warn for new Request for Quotations,Upozorenje za novi zahtjev za ponudu
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,Narudžbenice vam pomoći planirati i pratiti na Vašoj kupnji
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","Žao nam je , tvrtke ne mogu spojiti"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","Žao nam je , tvrtke ne mogu spojiti"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,Ispitivanje laboratorijskih ispitivanja
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",Ukupna količina Pitanje / Prijenos {0} u materijalnim Zahtjevu {1} \ ne može biti veća od tražene količine {2} za točki {3}
@ -1597,7 +1601,6 @@ DocType: Vehicle,Fuel UOM,Gorivo UOM
DocType: Warehouse,Warehouse Contact Info,Kontakt informacije skladišta
DocType: Payment Entry,Write Off Difference Amount,Otpis razlika visine
DocType: Volunteer,Volunteer Name,Ime volontera
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Postavite instruktor imenovanja sustava u obrazovanju&gt; Postavke obrazovanja
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0}: Radnik email nije pronađen, stoga ne e-mail poslan"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},Pravilo isporuke nije primjenjivo za zemlju {0}
DocType: Item,Foreign Trade Details,Vanjskotrgovinska Detalji
@ -1609,7 +1612,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,Broj grupe grupa
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry","Za {0}, samo kreditne računi se mogu povezati protiv drugog ulaska debitnom"
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,Ukupan svih radnih težina bi trebala biti 1. Podesite vage svih zadataka projekta u skladu s tim
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,Otpremnica {0} nije potvrđena
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,Otpremnica {0} nije potvrđena
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,Stavka {0} mora bitisklopljen ugovor artikla
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,Kapitalni oprema
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Cijene Pravilo prvo se bira na temelju 'Nanesite na' terenu, koji može biti točka, točka Grupa ili Brand."
@ -1634,7 +1637,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,Dijete skladište postoji za ovaj skladište. Ne možete izbrisati ovaj skladište.
DocType: Item,Website Item Groups,Grupe proizvoda web stranice
DocType: Purchase Invoice,Total (Company Currency),Ukupno (Društvo valuta)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,Serijski broj {0} ušao više puta
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,Serijski broj {0} ušao više puta
DocType: Journal Entry,Journal Entry,Temeljnica
DocType: Expense Claim Advance,Unclaimed amount,Neotkriveni iznos
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} stavke u tijeku
@ -1730,7 +1733,7 @@ DocType: Email Digest,For Company,Za tvrtke
apps/erpnext/erpnext/config/support.py +17,Communication log.,Dnevnik mailova
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.","Zahtjev za ponudu je onemogućen pristup sa portala, za više postavki provjere portal."
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,Dobavljačka tabela ocjena varijable
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,Iznos kupnje
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,Iznos kupnje
DocType: Sales Invoice,Shipping Address Name,Dostava Adresa Ime
DocType: Material Request,Terms and Conditions Content,Uvjeti sadržaj
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,Došlo je do pogrešaka prilikom izrade tečaja Raspored
@ -1994,7 +1997,7 @@ DocType: Expense Claim,Total Amount Reimbursed,Ukupno Iznos nadoknađeni
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,To se temelji na zapisima protiv tog vozila. Pogledajte vremensku crtu ispod za detalje
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},Protiv dobavljača Račun {0} datira {1}
DocType: Customer,Default Price List,Zadani cjenik
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,Unos imovine Pokret {0} stvorio
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,Unos imovine Pokret {0} stvorio
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,Ne možete izbrisati Fiskalna godina {0}. Fiskalna godina {0} je postavljen kao zadani u Globalne postavke
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,Kupac s istim imenom već postoji
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,To će poslati Plaće Slips i stvoriti obračunski dnevnik unos. Želiš li nastaviti?
@ -2008,6 +2011,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,Cijena
DocType: Quotation,Term Details,Oročeni Detalji
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,Ne može se prijaviti više od {0} studenata za ovaj grupe studenata.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),Ukupno (Bez poreza)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,Olovni broj
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} mora biti veći od 0
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,Dostupno
@ -2026,7 +2030,6 @@ DocType: Lab Test,Technician Name,Naziv tehničara
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,Prekini vezu Plaćanje o otkazu fakture
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},Trenutno stanje kilometraže ušao bi trebala biti veća od početne vozila kilometraže {0}
DocType: Restaurant Reservation,No Show,Nema prikazivanja
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Postavite Serija za imenovanje {0} putem postavke&gt; Postavke&gt; Serija za imenovanje
DocType: Shipping Rule Country,Shipping Rule Country,Pravilo dostava Država
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,Ostavi i posjećenost
DocType: Maintenance Visit,Partially Completed,Djelomično završeni
@ -2117,7 +2120,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,Instruktor grupe studenata
DocType: Grant Application,Assessment Mark (Out of 10),Ocjena ocjenjivanja (od 10)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 Mobile Ne
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,Glavni
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,Glavni
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,Varijanta
DocType: Naming Series,Set prefix for numbering series on your transactions,Postavite prefiks za numeriranje niza na svoje transakcije
DocType: Employee Attendance Tool,Employees HTML,Zaposlenici HTML
@ -2165,7 +2168,7 @@ DocType: Crop,Crop Spacing,Razmak bjelančevina
DocType: Course,Course Abbreviation,naziv predmeta
DocType: Student Leave Application,Student Leave Application,Studentski Ostavite aplikacija
DocType: Item,Will also apply for variants,Također će podnijeti zahtjev za varijante
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","Imovina se ne može otkazati, jer je već {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","Imovina se ne može otkazati, jer je već {0}"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},Zaposlenik {0} na pola dana na {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},Ukupno radno vrijeme ne smije biti veći od max radnog vremena {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,na
@ -2350,9 +2353,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),Stvarni Datum završetka (putem vremenska tablica)
DocType: Soil Texture,Soil Type,Vrsta tla
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},Iznos {0} {1} od {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,Nova poruka
,Quotation Trends,Trend ponuda
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},Stavka proizvoda se ne spominje u master artiklu za artikal {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,Zaduženja računa mora biti Potraživanja račun
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,Zaduženja računa mora biti Potraživanja račun
DocType: Shipping Rule,Shipping Amount,Dostava Iznos
DocType: Supplier Scorecard Period,Period Score,Ocjena razdoblja
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,Dodaj korisnike
@ -2363,7 +2367,7 @@ DocType: Purchase Order,Delivered,Isporučeno
,Vehicle Expenses,Troškovi vozila
DocType: Serial No,Invoice Details,Pojedinosti fakture
DocType: Grant Application,Show on Website,Pokaži na web stranici
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},Očekivana vrijednost nakon životnog vijeka mora biti veća od ili jednaka do {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},Očekivana vrijednost nakon životnog vijeka mora biti veća od ili jednaka do {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,Započnite
DocType: Hub Category,Hub Category,Kategorija hubova
DocType: Purchase Invoice,SEZ,SEZ
@ -2394,7 +2398,7 @@ DocType: Patient,Patient Details,Detalji pacijenta
DocType: Patient,B Positive,B Pozitivan
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","Red # {0}: Količina mora biti jedan, jer predmet je fiksni kapital. Molimo koristite poseban red za više kom."
DocType: Leave Block List Allow,Leave Block List Allow,Odobrenje popisa neodobrenih odsustava
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,Abbr ne može biti prazno ili razmak
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,Abbr ne može biti prazno ili razmak
DocType: Patient Medical Record,Patient Medical Record,Patient Medical Record
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,Grupa ne-Group
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,sportovi
@ -2444,6 +2448,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,Nije moguće postaviti primljeni RFQ na nijedan citat
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,Ukupno Odbitak
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,Odaberite račun za ispis u valuti računa
,Production Analytics,Proizvodnja Analytics
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,To se temelji na transakcijama protiv ovog pacijenta. Pojedinosti potražite u nastavku
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,Trošak Ažurirano
@ -2498,7 +2503,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,Posta
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,Odaberite tvrtku ...
DocType: Leave Control Panel,Leave blank if considered for all departments,Ostavite prazno ako se odnosi na sve odjele
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","Vrste zapošljavanja ( trajni ugovor , pripravnik i sl. ) ."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} je obavezno za točku {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} je obavezno za točku {1}
DocType: Payroll Entry,Fortnightly,četrnaestodnevni
DocType: Currency Exchange,From Currency,Od novca
DocType: Vital Signs,Weight (In Kilogram),Težina (u kilogramu)
@ -2574,7 +2579,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),Osnovni Iznos (Društvo
DocType: Student,Guardians,čuvari
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,Cijene neće biti prikazana ako Cjenik nije postavljena
DocType: Stock Entry,Total Incoming Value,Ukupno Dolazni vrijednost
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,Zaduženja je potrebno
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,Zaduženja je potrebno
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Timesheets pomoći pratiti vrijeme, troškove i naplatu za aktivnostima obavljaju unutar vašeg tima"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,Kupovni cjenik
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,Predlošci varijabli s rezultatima dobavljača.
@ -2675,7 +2680,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,Za samo kao referenca.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},Liječnik {0} nije dostupan na {1}
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,Odaberite šifra serije
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},Pogrešna {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},Pogrešna {0}: {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Fee Validity,Reference Inv,Referenca Inv
@ -2712,8 +2717,8 @@ DocType: Fees,Send Payment Request,Pošalji zahtjev za plaćanje
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Navedite operacija, operativni troškovi i dati jedinstven radom najkasnije do svojih operacija ."
DocType: Water Analysis,Origin,Podrijetlo
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,Ovaj dokument je preko granice po {0} {1} za stavku {4}. Jeste li što drugo {3} protiv iste {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,Molimo postavite ponavljajući nakon spremanja
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,Iznos računa Odaberi promjene
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,Molimo postavite ponavljajući nakon spremanja
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,Iznos računa Odaberi promjene
DocType: Purchase Invoice,Price List Currency,Valuta cjenika
DocType: Naming Series,User must always select,Korisničko uvijek mora odabrati
DocType: Stock Settings,Allow Negative Stock,Dopustite negativnu zalihu
@ -2769,7 +2774,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,Detalji raspore
DocType: Supplier Scorecard,Warn for new Purchase Orders,Upozorenje za nove narudžbenice
DocType: Quality Inspection Reading,Reading 9,Čitanje 9
DocType: Supplier,Is Frozen,Je Frozen
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,Čvor Grupa skladište ne smije odabrati za transakcije
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,Čvor Grupa skladište ne smije odabrati za transakcije
DocType: Buying Settings,Buying Settings,Ppostavke nabave
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,BOM broj za Gotovi Dobar točki
DocType: Upload Attendance,Attendance To Date,Gledanost do danas
@ -2783,6 +2788,7 @@ DocType: Offer Letter,Accepted,Prihvaćeno
DocType: Grant Application,Organization,Organizacija
DocType: BOM Update Tool,BOM Update Tool,Alat za ažuriranje BOM-a
DocType: SG Creation Tool Course,Student Group Name,Naziv grupe studenata
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,Prikaži eksplodirao pogled
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,Stvaranje naknada
apps/erpnext/erpnext/setup/doctype/company/company.js +91,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.,Molimo provjerite da li stvarno želite izbrisati sve transakcije za ovu tvrtku. Vaši matični podaci će ostati kao što je to. Ova radnja se ne može poništiti.
DocType: Room,Room Number,Broj sobe
@ -2793,7 +2799,7 @@ DocType: Journal Entry Account,Payroll Entry,Ulazak plaće
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,Napravite predložak poreza
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,Forum za korisnike
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,Sirovine ne može biti prazno.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","Ne može se ažurirati zaliha, fakture sadrži drop shipping stavke."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","Ne može se ažurirati zaliha, fakture sadrži drop shipping stavke."
DocType: Lab Test Sample,Lab Test Sample,Uzorak laboratorija
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,Brzo Temeljnica
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,Ne možete promijeniti cijenu ako je sastavnica spomenuta u bilo kojem proizvodu
@ -2864,7 +2870,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,USD
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,Napravi račun
DocType: Selling Settings,Auto close Opportunity after 15 days,Automatski zatvori Priliku nakon 15 dana
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Narudžbenice za zabavu nisu dozvoljene za {0} zbog položaja ocjene bodova {1}.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Narudžbenice za zabavu nisu dozvoljene za {0} zbog položaja ocjene bodova {1}.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,Godina završetka
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Kvota / olovo%
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,Ugovor Datum završetka mora biti veći od dana ulaska u
@ -2976,7 +2982,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,Iznad 90
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,Red # {0}: časopis za ulazak {1} nema računa {2} ili već usklađeni protiv drugog bona
DocType: Supplier Scorecard Criteria,Criteria Weight,Težina kriterija
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Dobavljač&gt; Vrsta dobavljača
DocType: Buying Settings,Default Buying Price List,Zadani kupovni cjenik
DocType: Payroll Entry,Salary Slip Based on Timesheet,Plaća proklizavanja temelju timesheet
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,Stopa kupnje
@ -3064,7 +3069,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,Praćenje potencijalnih kupaca prema vrsti industrije.
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,Idi na zaglavlje
DocType: Item Supplier,Item Supplier,Dobavljač proizvoda
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,Unesite kod Predmeta da se hrpa nema
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,Unesite kod Predmeta da se hrpa nema
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},Molimo odabir vrijednosti za {0} quotation_to {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,Sve adrese.
DocType: Company,Stock Settings,Postavke skladišta
@ -3253,6 +3258,7 @@ DocType: Employee Loan,Loan Details,zajam Detalji
DocType: Company,Default Inventory Account,Zadani račun oglasnog prostora
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,Red {0}: Završen količina mora biti veća od nule.
DocType: Antibiotic,Antibiotic Name,Ime antibiotika
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Šifra stavke&gt; Skupina stavke&gt; Brand
DocType: Purchase Invoice,Apply Additional Discount On,Nanesite dodatni popust na
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,Odaberite vrstu ...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,Veza na sve Zemljišne jedinice u kojima raste usjeva
@ -3446,6 +3452,7 @@ DocType: Guardian Student,Guardian Student,Guardian Student
DocType: Supplier,Credit Limit,Kreditni limit
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,Prosječni. Prodajni cjenovni popisi
DocType: Production Plan Sales Order,Salse Order Date,Datum Salse narudžbe
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Dobavljač&gt; Vrsta dobavljača
DocType: Salary Component,Salary Component,Plaća Komponenta
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,Prijave plaćanja {0} su UN-linked
DocType: GL Entry,Voucher No,Bon Ne
@ -3454,7 +3461,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,Najpopularniji
DocType: Leave Allocation,Leave Allocation,Raspodjela odsustva
DocType: Payment Request,Recipient Message And Payment Details,Primatelj poruke i podatke o plaćanju
DocType: Training Event,Trainer Email,trener Email
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,Zahtjevi za robom {0} kreirani
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,Zahtjevi za robom {0} kreirani
DocType: Restaurant Reservation,No of People,Ne od ljudi
DocType: Production Planning Tool,Include sub-contracted raw materials,Uključi pod-ugovorene sirovine
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,Predložak izraza ili ugovora.
@ -3518,7 +3525,7 @@ DocType: Landed Cost Item,Receipt Document,Prijem dokumenata
DocType: Production Planning Tool,Create Material Requests,Zahtjevnica za nabavu
DocType: Employee Education,School/University,Škola / Sveučilište
DocType: Payment Request,Reference Details,Referentni Detalji
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,Očekivana vrijednost nakon korisnog vijeka trajanja mora biti manja od bruto iznosa kupnje
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,Očekivana vrijednost nakon korisnog vijeka trajanja mora biti manja od bruto iznosa kupnje
DocType: Sales Invoice Item,Available Qty at Warehouse,Dostupna količina na skladištu
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,Naplaćeni iznos
DocType: Asset,Double Declining Balance,Dvaput padu Stanje
@ -3530,7 +3537,7 @@ DocType: Attendance,On Leave,Na odlasku
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,Nabavite ažuriranja
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: Račun {2} ne pripada Društvu {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,Odaberite barem jednu vrijednost iz svakog od atributa.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,Zahtjev za robom {0} je otkazan ili zaustavljen
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,Zahtjev za robom {0} je otkazan ili zaustavljen
apps/erpnext/erpnext/config/hr.py +310,Leave Management,Ostavite upravljanje
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,Grupa po računu
DocType: Sales Order,Fully Delivered,Potpuno Isporučeno
@ -3541,14 +3548,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},Isplaćeni Iznos ne može biti veća od iznos kredita {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,Idite na Programs (Programi)
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},Red {0} # Dodijeljeni iznos {1} ne može biti veći od neimenovanog iznosa {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Postavite serijske brojeve za prisustvovanje putem Setup&gt; Serija numeriranja
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},Broj narudžbenice kupnje je potreban za artikal {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,Proizvodnja Narudžba nije stvorio
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','Od datuma' mora biti poslije 'Do datuma'
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},Ne može se promijeniti status studenta {0} je povezan sa studentskom primjene {1}
DocType: Asset,Fully Depreciated,potpuno amortizirana
,Stock Projected Qty,Stanje skladišta
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},Korisnik {0} ne pripada projicirati {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},Korisnik {0} ne pripada projicirati {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,Označena Gledatelja HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers","Citati su prijedlozi, ponude koje ste poslali na svoje klijente"
DocType: Sales Order,Customer's Purchase Order,Kupca narudžbenice
@ -3632,7 +3638,7 @@ DocType: Salary Slip,Hour Rate,Cijena sata
DocType: Stock Settings,Item Naming By,Proizvod imenovan po
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},Drugi period Zatvaranje Stupanje {0} je postignut nakon {1}
DocType: Production Order,Material Transferred for Manufacturing,Materijal Preneseni za Manufacturing
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,Račun {0} ne postoji
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,Račun {0} ne postoji
DocType: Project,Project Type,Vrsta projekta
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,Dijete Zadatak postoji za ovu Zadatak. Ne možete izbrisati ovu Zadatak.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,Ili meta Količina ili ciljani iznos je obavezna .
@ -3734,11 +3740,11 @@ DocType: C-Form,I,ja
DocType: Company,Asset Depreciation Cost Center,Imovina Centar Amortizacija troškova
DocType: Sales Order Item,Sales Order Date,Datum narudžbe (kupca)
DocType: Sales Invoice Item,Delivered Qty,Isporučena količina
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,Ukupno ne. Porez
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","Ako je označeno, sva djeca svaku stavku proizvodnje će biti uključeni u materijalu zahtjeve."
DocType: Assessment Plan,Assessment Plan,plan Procjena
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,Korisnik {0} je stvoren.
DocType: Stock Settings,Limit Percent,Ograničenje posto
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Postavite instruktor imenovanja sustava u obrazovanju&gt; Postavke obrazovanja
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,Trenutno nema dostupnih dionica u bilo kojem skladištu
,Payment Period Based On Invoice Date,Razdoblje za naplatu po Datum fakture
DocType: Sample Collection,No. of print,Broj ispisa
@ -3754,12 +3760,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),Dužnici ({0})
DocType: Pricing Rule,Margin,Marža
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,Novi kupci
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,Bruto dobit%
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,Bruto dobit%
DocType: Appraisal Goal,Weightage (%),Weightage (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,Promjena POS profila
DocType: Bank Reconciliation Detail,Clearance Date,Razmak Datum
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,Izvješće o procjeni
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,Bruto Iznos narudžbe je obavezno
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,Bruto Iznos narudžbe je obavezno
DocType: Lead,Address Desc,Adresa silazno
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,Stranka je obvezna
DocType: Journal Entry,JV-,JV-
@ -3791,7 +3797,6 @@ DocType: Account,Accumulated Depreciation,akumulirana amortizacija
DocType: Supplier Scorecard Scoring Standing,Standing Name,Stalni naziv
DocType: Stock Entry,Customer or Supplier Details,Kupca ili dobavljača Detalji
DocType: Employee Loan Application,Required by Date,Potrebna po datumu
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),Završni saldo (Dr - Cr)
DocType: Lead,Lead Owner,Vlasnik potencijalnog kupca
DocType: Bin,Requested Quantity,Tražena količina
DocType: Patient,Marital Status,Bračni status
@ -3805,7 +3810,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,Višestruke inačice
DocType: Sales Invoice,Against Income Account,Protiv računu dohotka
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% Isporučeno
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Stavka {0}: Ž Količina Jedinična {1} ne može biti manja od minimalne narudžbe kom {2} (definiranom u točki).
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Stavka {0}: Ž Količina Jedinična {1} ne može biti manja od minimalne narudžbe kom {2} (definiranom u točki).
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,Mjesečni postotak distribucije
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,Prijavite se kao drugi korisnik.
DocType: Territory,Territory Targets,Prodajni plan prema teritoriju
@ -3904,7 +3909,7 @@ DocType: Program Enrollment,School House,Škola Kuća
DocType: Serial No,Out of AMC,Od AMC
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,Broj deprecijaciju rezervirano ne može biti veća od Ukupan broj deprecijaciju
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,Provjerite održavanja Posjetite
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,Molimo kontaktirajte korisniku koji imaju Sales Manager Master {0} ulogu
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,Molimo kontaktirajte korisniku koji imaju Sales Manager Master {0} ulogu
DocType: Company,Default Cash Account,Zadani novčani račun
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,Društvo ( ne kupaca i dobavljača ) majstor .
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,To se temelji na prisustvo ovog Student
@ -4054,7 +4059,6 @@ DocType: Delivery Note Item,From Warehouse,Iz skladišta
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,Nema zaposlenika za navedene kriterije
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,Nema Stavke sa Bill materijala za proizvodnju
DocType: Restaurant,Default Customer,Zadani kupac
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Postavite Imenovanje zaposlenika u ljudskim resursima&gt; HR postavke
DocType: Assessment Plan,Supervisor Name,Naziv Supervisor
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,Nemojte potvrditi je li sastanak izrađen za isti dan
DocType: Program Enrollment Course,Program Enrollment Course,Tečaj za upis na program
@ -4172,7 +4176,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,Opis web stranice
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,Neto promjena u kapitalu
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,Najnoviji
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,Otkažite fakturi {0} prvi
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,Otkažite fakturi {0} prvi
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","E-mail adresa mora biti jedinstvena, već postoji za {0}"
DocType: Serial No,AMC Expiry Date,AMC Datum isteka
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,Priznanica
@ -4189,7 +4193,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,Još nema kupa
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,Izvještaj o novčanom tijeku
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},Iznos kredita ne može biti veći od maksimalnog iznosa zajma {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,licenca
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},Molimo uklonite ovu fakturu {0} od C-obrasca {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},Molimo uklonite ovu fakturu {0} od C-obrasca {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,Molimo odaberite prenositi ako želite uključiti prethodnoj fiskalnoj godini je ravnoteža ostavlja na ovoj fiskalnoj godini
DocType: GL Entry,Against Voucher Type,Protiv voucher vrsti
DocType: Physician,Phone (R),Telefon (R)
@ -4201,7 +4205,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,Negativan
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,Status održavanja mora biti poništen ili dovršen za slanje
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},Račun {0} ne pripada društvu {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,Serijski brojevi u retku {0} ne podudaraju se s dostavom
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,Serijski brojevi u retku {0} ne podudaraju se s dostavom
DocType: Student,Guardian Details,Guardian Detalji
DocType: C-Form,C-Form,C-obrazac
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,Mark Gledatelja za više radnika
@ -4243,7 +4247,7 @@ DocType: Opening Invoice Creation Tool,Sales,Prodaja
DocType: Stock Entry Detail,Basic Amount,Osnovni iznos
DocType: Training Event,Exam,Ispit
DocType: Complaint,Complaint,prigovor
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},Skladište je potrebno za skladišne proizvode {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},Skladište je potrebno za skladišne proizvode {0}
DocType: Leave Allocation,Unused leaves,Neiskorišteni lišće
DocType: Patient,Alcohol Past Use,Prethodna upotreba alkohola
DocType: Fertilizer Content,Fertilizer Content,Sadržaj gnojiva
@ -4367,6 +4371,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,Formula
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,Serijski #
DocType: Lab Test Template,Lab Test Template,Predložak testa laboratorija
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,Račun prodaje
DocType: Purchase Invoice Item,Total Weight,Totalna tezina
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,Komisija za prodaju
DocType: Offer Letter Term,Value / Description,Vrijednost / Opis
@ -4524,7 +4529,7 @@ Updated via 'Time Log'","U nekoliko minuta
DocType: Customer,From Lead,Od Olovo
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,Narudžbe objavljen za proizvodnju.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,Odaberite fiskalnu godinu ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,POS Profil potrebna da bi POS unos
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,POS Profil potrebna da bi POS unos
DocType: Program Enrollment Tool,Enroll Students,upisati studenti
DocType: Lab Test,Approved Date,Odobreni datum
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,Standardna prodaja
@ -4600,7 +4605,7 @@ DocType: Employee,Held On,Održanoj
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,Proizvodni proizvod
,Employee Information,Informacije o zaposleniku
DocType: Stock Entry Detail,Additional Cost,Dodatni trošak
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","Ne možete filtrirati na temelju vaučer No , ako grupirani po vaučer"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","Ne možete filtrirati na temelju vaučer No , ako grupirani po vaučer"
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,Napravi ponudu dobavljaču
DocType: Quality Inspection,Incoming,Dolazni
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,Osnovni su predlošci poreza za prodaju i kupnju.
@ -4617,7 +4622,7 @@ DocType: Batch,Batch ID,ID serije
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},Napomena: {0}
,Delivery Note Trends,Trend otpremnica
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,Ovaj tjedan Sažetak
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,Na skladištu Kol
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,Na skladištu Kol
DocType: Delivery Trip,Calculate Estimated Arrival Times,Izračunajte procijenjene vrijeme dolaska
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,Račun: {0} može se ažurirati samo preko Stock promet
DocType: Student Group Creation Tool,Get Courses,dobiti Tečajevi
@ -4633,7 +4638,7 @@ DocType: Purchase Order,To Bill,Za Billa
DocType: Material Request,% Ordered,% Naručeno
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.","Za Studentsku grupu na tečaju, tečaj će biti validiran za svakog studenta iz upisanih kolegija u upisu na program."
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,Rad po komadu
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,Prosječna nabavna cijena
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,Prosječna nabavna cijena
DocType: Task,Actual Time (in Hours),Stvarno vrijeme (u satima)
DocType: Employee,History In Company,Povijest tvrtke
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},Nova poruka od {sender}
@ -4681,7 +4686,7 @@ DocType: Asset Repair,Asset Repair,Popravak imovine
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},Red {0}: Valuta sastavnice # {1} bi trebao biti jednak odabranoj valuti {2}
DocType: Journal Entry Account,Exchange Rate,Tečaj
DocType: Patient,Additional information regarding the patient,Dodatne informacije o pacijentu
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,Prodajnog naloga {0} nije podnesen
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,Prodajnog naloga {0} nije podnesen
DocType: Homepage,Tag Line,Tag linija
DocType: Fee Component,Fee Component,Naknada Komponenta
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,Mornarički menađer
@ -4893,7 +4898,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,Procjena Detalj Rezul
DocType: Employee Education,Employee Education,Obrazovanje zaposlenika
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,Dvostruki stavke skupina nalaze se u tablici stavke grupe
DocType: Land Unit,Parent Land Unit,Roditeljska jedinica
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,To je potrebno kako bi dohvatili Stavka Pojedinosti.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,To je potrebno kako bi dohvatili Stavka Pojedinosti.
DocType: Fertilizer,Fertilizer Name,Ime gnojiva
DocType: Salary Slip,Net Pay,Neto plaća
DocType: Account,Account,Račun
@ -4972,7 +4977,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),Stvarni Kol (na izvoru
DocType: Item Customer Detail,Ref Code,Ref. Šifra
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,Grupa korisnika je obavezna u POS profilu
apps/erpnext/erpnext/config/hr.py +12,Employee records.,Evidencija zaposlenih.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,Molimo postavite Next Amortizacija Date
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,Molimo postavite Next Amortizacija Date
DocType: HR Settings,Payroll Settings,Postavke plaće
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,Klađenje na ne-povezane faktura i plaćanja.
DocType: POS Settings,POS Settings,POS Postavke
@ -5139,7 +5144,7 @@ DocType: Item,Customer Code,Kupac Šifra
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},Rođendan Podsjetnik za {0}
DocType: Asset Maintenance Task,Last Completion Date,Datum posljednjeg dovršetka
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,Dana od posljednje narudžbe
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,Zaduženja računa mora biti bilanca račun
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,Zaduženja računa mora biti bilanca račun
DocType: Buying Settings,Naming Series,Imenovanje serije
DocType: Leave Block List,Leave Block List Name,Naziv popisa neodobrenih odsustava
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,Osiguranje Datum početka mora biti manja od osiguranja datum završetka
@ -5266,6 +5271,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,Dobiti Ulaz plaćanja
DocType: Quotation Item,Against Docname,Protiv Docname
DocType: SMS Center,All Employee (Active),Svi zaposlenici (aktivni)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Kupac&gt; Grupa kupaca&gt; Teritorij
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,Pogledaj sada
DocType: BOM,Raw Material Cost,Troškova sirovine
DocType: Item Reorder,Re-Order Level,Ponovno bi razini
@ -5364,7 +5370,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,Sjedenje Kapacitet
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,Lab test grupe
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Kupac&gt; Grupa kupaca&gt; Teritorij
DocType: Project,Total Expense Claim (via Expense Claims),Ukupni rashodi Zatraži (preko Rashodi potraživanja)
DocType: GST Settings,GST Summary,GST Sažetak
DocType: Assessment Result,Total Score,Ukupni rezultat
@ -5377,7 +5382,7 @@ DocType: Batch,Source Document Type,Izvorni tip dokumenta
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,Izrađeni su sljedeći raspored tečajeva
DocType: Journal Entry,Total Debit,Ukupno zaduženje
DocType: Manufacturing Settings,Default Finished Goods Warehouse,Zadane gotovih proizvoda Skladište
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,Prodajna osoba
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,Prodajna osoba
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,Proračun i Centar Cijena
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,Višestruki zadani način plaćanja nije dopušten
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,za
@ -5550,7 +5555,7 @@ DocType: Program,Program Name,Naziv programa
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Razmislite poreza ili pristojbi za
DocType: Driver,Driving License Category,Kategorija licence za vožnju
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,Stvarni Količina je obavezno
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} trenutačno ima stajalište dobavljača rezultata {1}, a narudžbenice za ovaj dobavljač trebaju biti izdane s oprezom."
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} trenutačno ima stajalište dobavljača rezultata {1}, a narudžbenice za ovaj dobavljač trebaju biti izdane s oprezom."
DocType: Asset Maintenance Team,Asset Maintenance Team,Tim za održavanje imovine
DocType: Employee Loan,Loan Type,Vrsta kredita
DocType: Scheduling Tool,Scheduling Tool,alat za raspoređivanje

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,Labor rendelvények
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,Rendezés ár szerint
,Delay Days,Késleltetési napok
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,Szolgáltatás költsége
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},Sorozat szám: {0} már hivatkozott ezen az Értékesítési számlán: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},Sorozat szám: {0} már hivatkozott ezen az Értékesítési számlán: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,Számla
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,Készlet megőrzési bejegyzés létrehozás
DocType: Purchase Invoice Item,Item Weight Details,Tétel súly részletei
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,Fő docname részletek
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","Referencia: {0}, pont kód: {1} és az ügyfél: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,Kg
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,Nyitott állások.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},ANYAGJ nincs megadva az alvállalkozó {0} tételéhez a(z) {1} sorban
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},ANYAGJ nincs megadva az alvállalkozó {0} tételéhez a(z) {1} sorban
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} Eredmény benyújtva
DocType: Item Attribute,Increment,Növekmény
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,Időtartam
@ -150,7 +150,7 @@ DocType: Patient,Married,Házas
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},Nem engedélyezett erre {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,Tételeket kér le innen
DocType: Price List,Price Not UOM Dependant,Ár nem Mértékegység függő
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},Készlet nem frissíthető ezzel a szállítólevéllel {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},Készlet nem frissíthető ezzel a szállítólevéllel {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},Gyártmány {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,Nincsenek listázott elemek
DocType: Asset Repair,Error Description,Hiba leírás
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,Összeegyeztetni
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,Élelmiszerbolt
DocType: Quality Inspection Reading,Reading 1,Olvasás 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,Nyugdíjpénztárak
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,Következő értékcsökkenés dátuma nem lehet korábbi a vásárlás dátumánál
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,Következő értékcsökkenés dátuma nem lehet korábbi a vásárlás dátumánál
DocType: Crop,Perennial,Állandó
DocType: Consultation,Consultation Date,Konzultációs dátum
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,Termékinformáció és felfedezés az ERPNext felhasználói részére
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,Leíró Költséghely
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""","pl. ""általános iskola"" vagy ""egyetem"""
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,Készlet jelentések
DocType: Warehouse,Warehouse Detail,Raktár részletek
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},Hitelkeretet már átlépte az ügyfél {0} {1}/{2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},Hitelkeretet már átlépte az ügyfél {0} {1}/{2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,"A feltétel végső dátuma nem lehet későbbi, mint a tanév év végi időpontja, amelyhez a kifejezés kapcsolódik (Tanév {}). Kérjük javítsa ki a dátumot, és próbálja újra."
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","""Ez tárgyi eszköz"" nem lehet kijelöletlen, mert Tárgyi eszköz rekord bejegyzés létezik ellen tételként"
DocType: Delivery Trip,Departure Time,Indulás ideje
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,Tanuló Belépés
DocType: Quality Inspection,Get Specification Details,Részletek lekérdezése
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,Beszállító állományainak sablonjai.
DocType: Lead,Interested,Érdekelt
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,Megnyitott
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,Megnyitott
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},Feladó {0} {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,Sikertelen az adók beállítása
DocType: Item,Copy From Item Group,Másolás tétel csoportból
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,"Tehermentesítő dátuma nagyobbnak kell lennie, mint Csatlakozás dátuma"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,Távollétek évente
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,"Sor {0}: Kérjük ellenőrizze, hogy 'ez előleg' a {1} számlához, tényleg egy előleg bejegyzés."
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},{0} raktár nem tartozik a(z) {1} céghez
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},{0} raktár nem tartozik a(z) {1} céghez
DocType: Email Digest,Profit & Loss,Profit & veszteség
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,Liter
DocType: Task,Total Costing Amount (via Time Sheet),Összes költség összeg ((Idő nyilvántartó szerint)
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,Ár és összeg
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,Ez a Vállalkozással szembeni tranzakciókra épül. Lásd az alábbi idővonalat a részletekért
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Email értesítő létrehozása automatikus Anyag igény létrehozásához
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,Ellenálló
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Consultationt
DocType: Journal Entry,Multi Currency,Több pénznem
DocType: Opening Invoice Creation Tool,Invoice Type,Számla típusa
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,Szállítólevél
@ -528,7 +529,6 @@ DocType: Email Digest,Credit Balance,Követelés egyenleg
DocType: Employee,Widowed,Özvegy
DocType: Request for Quotation,Request for Quotation,Ajánlatkérés
DocType: Healthcare Settings,Require Lab Test Approval,Laboratóriumi teszt jóváhagyása szükséges
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Tételkód&gt; Tételcsoport&gt; Márka
DocType: Salary Slip Timesheet,Working Hours,Munkaidő
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,Teljes fennálló kintlévő
DocType: Naming Series,Change the starting / current sequence number of an existing series.,Megváltoztatni a kezdő / aktuális sorszámot egy meglévő sorozatban.
@ -557,7 +557,7 @@ DocType: Subscription,Yearly,Évi
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,"Kérjük, adja meg a Költséghelyet"
DocType: Drug Prescription,Dosage,Adagolás
DocType: Journal Entry Account,Sales Order,Vevői rendelés
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,Átlagos eladási ár
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,Átlagos eladási ár
DocType: Assessment Plan,Examiner Name,Vizsgáztató neve
DocType: Lab Test Template,No Result,Nincs eredmény
DocType: Purchase Invoice Item,Quantity and Rate,Mennyiség és ár
@ -605,6 +605,7 @@ DocType: Employee,Health Concerns,Egészségügyi problémák
DocType: Payroll Entry,Select Payroll Period,Válasszon Bérszámfejtési Időszakot
DocType: Purchase Invoice,Unpaid,Fizetetlen
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,Fenntartott eladó
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,"Kérjük, állítsa be az alkalmazottak elnevezési rendszerét az emberi erőforrás&gt; HR beállításoknál"
DocType: Packing Slip,From Package No.,Csomag számból
DocType: Item Attribute,To Range,Tartományhoz
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,Értékpapírok és betétek
@ -629,11 +630,11 @@ DocType: Pricing Rule,Valid Upto,Érvényes eddig:
DocType: Training Event,Workshop,Műhely
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,Vevői rendelések figyelmeztetése
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,Felsorol egy pár vevőt. Ők lehetnek szervezetek vagy magánszemélyek.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,Elég alkatrészek a megépítéshez
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,Elég alkatrészek a megépítéshez
DocType: POS Profile User,POS Profile User,POS profil felhasználója
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,Közvetlen jövedelem
DocType: Patient Appointment,Date TIme,Dátum Idő
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","Nem tudja szűrni számla alapján, ha számlánként csoportosított"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","Nem tudja szűrni számla alapján, ha számlánként csoportosított"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,Igazgatási tisztviselő
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,Vállalkozás és adók létrehozása
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,"Kérjük, válasszon pályát"
@ -643,7 +644,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,Különbség főkönyvi számla
DocType: Purchase Invoice,Supplier GSTIN,Beszállító GSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,"Nem zárható feladat, mivel a hozzá fűződő feladat: {0} nincs lezárva."
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,"Kérjük, adja meg a Raktárat, amelyekre anyag igénylés keletkezett"
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,"Kérjük, adja meg a Raktárat, amelyekre anyag igénylés keletkezett"
DocType: Production Order,Additional Operating Cost,További üzemeltetési költség
DocType: Lab Test Template,Lab Routine,Labor rutin
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,Kozmetikum
@ -811,7 +812,7 @@ DocType: Employee,Passport Number,Útlevél száma
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Összefüggés Helyettesítő2
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,Menedzser
DocType: Payment Entry,Payment From / To,Fizetési Honnan / Hova
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},"Új hitelkeret kevesebb, mint a jelenlegi fennálló összeget a vevő számára. Hitelkeretnek minimum ennyinek kell lennie {0}"
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},"Új hitelkeret kevesebb, mint a jelenlegi fennálló összeget a vevő számára. Hitelkeretnek minimum ennyinek kell lennie {0}"
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},"Kérjük, állítson be fiókot a {0}"
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,Az 'Ez alapján' 'és a 'Csoport szerint' nem lehet azonos
DocType: Sales Person,Sales Person Targets,Értékesítői személy célok
@ -822,7 +823,7 @@ DocType: Lab Test Template,Compound,Összetett
DocType: Student Batch Name,Batch Name,Köteg neve
DocType: Fee Validity,Max number of visit,Látogatások max. száma
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,Munkaidő jelenléti ív nyilvántartás létrehozva:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},"Kérjük, állítsda be az alapértelmezett Készpénz vagy bankszámlát a Fizetési módban {0}"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},"Kérjük, állítsda be az alapértelmezett Készpénz vagy bankszámlát a Fizetési módban {0}"
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,Beiratkozás
DocType: GST Settings,GST Settings,GST Beállítások
DocType: Selling Settings,Customer Naming By,Vevő elnevezés típusa
@ -946,7 +947,7 @@ DocType: Delivery Note,Customer's Purchase Order No,Vevői beszerzési megrendel
DocType: Budget,Budget Against,Költségvetés ellenszámla
DocType: Employee,Cell Number,Mobilszám
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,"Az adott kritériumra nincs alkalmazott. Ellenőrizze, hogy a Bérlapok még nincsenek-e létrehozva."
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,Auto Anyagigénylés létrehozott
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,Auto Anyagigénylés létrehozott
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,Elveszett
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,"Ha nem tudja bevinni a jelenlegi utalványt az ""Ismételt Naplókönyvelés"" oszlopba"
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,Fenntartott gyártás
@ -954,7 +955,7 @@ DocType: Soil Texture,Sand,Homok
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,Energia
DocType: Opportunity,Opportunity From,Lehetőség tőle
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,Havi kimutatást.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,{0} sor: {1} A {2} tételhez szükséges sorozatszámok. Ön ezt adta meg {3}.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,{0} sor: {1} A {2} tételhez szükséges sorozatszámok. Ön ezt adta meg {3}.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,"Kérem, válasszon egy táblát"
DocType: BOM,Website Specifications,Weboldal részletek
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} egy érvénytelen e-mail cím a 'Címzettek' közt
@ -1023,7 +1024,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,Ajánlatkérés igényelve
DocType: Vital Signs,Heart Rate / Pulse,Pulzusszám / pulzus
DocType: Company,Default Bank Account,Alapértelmezett bankszámlaszám
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","Az Ügyfél alapján kiszűrni, válasszuk ki az Ügyfél típpust először"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","Az Ügyfél alapján kiszűrni, válasszuk ki az Ügyfél típpust először"
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},"'Készlet frissítés' nem ellenőrizhető, mert a tételek nem lettek elszállítva ezzel: {0}"
DocType: Vehicle,Acquisition Date,Beszerzés dátuma
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,Darabszám
@ -1047,7 +1048,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),Töltsd fel levél fejlécét (tartsd webhez megfelelően 900px-ról 100px-ig)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: fiók {2} nem lehet csoport
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,Tétel sor {idx}: {doctype} {docname} nem létezik a fenti '{doctype}' táblában
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,Jelenléti ív {0} már befejezett vagy törölt
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,Jelenléti ív {0} már befejezett vagy törölt
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,Nincsenek feladatok
DocType: Item Variant Settings,Copy Fields to Variant,Másolási mezők a változathoz
DocType: Asset,Opening Accumulated Depreciation,Nyitó halmozott ÉCS
@ -1159,9 +1160,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,Terv anyag a részegységekre
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,Vevő partnerek és Területek
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,ANYGJZ: {0} aktívnak kell lennie
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),Záró (nyitó + összes)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),Záró (nyitó + összes)
DocType: Journal Entry,Depreciation Entry,ÉCS bejegyzés
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,"Kérjük, válassza ki a dokumentum típusát először"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,Nyomtassa ki a számla pénznemét
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Törölje az anyag szemlét: {0}mielőtt törölné ezt a karbantartási látogatást
DocType: Crop Cycle,ISO 8016 standard,ISO 8016 szabvány
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},Széria sz {0} nem tartozik ehhez a tételhez {1}
@ -1187,7 +1189,7 @@ DocType: Purchase Receipt,Range,Tartomány
DocType: Supplier,Default Payable Accounts,Alapértelmezett kifizetendő számlák
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,"Alkalmazott {0} nem aktív, vagy nem létezik"
DocType: Fee Structure,Components,Alkatrészek
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},"Kérjük, adja meg a Vagyontárgy Kategóriát ebben a tételben: {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},"Kérjük, adja meg a Vagyontárgy Kategóriát ebben a tételben: {0}"
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,Tétel változatok {0} frissített
DocType: Quality Inspection Reading,Reading 6,Olvasás 6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1239,6 +1241,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,Válallkozás neve
DocType: SMS Center,Total Message(s),Összes üzenet(ek)
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,Válassza ki a tételt az átmozgatáshoz
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Állítsa be a Naming sorozat {0} beállítását a Beállítás&gt; Beállítások&gt; Nevezési sorozatok segítségével
DocType: Purchase Invoice,Additional Discount Percentage,További kedvezmény százalék
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,Minden súgó video megtekintése
DocType: Agriculture Analysis Criteria,Soil Texture,Talaj textúra
@ -1266,7 +1269,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,Anyagjegyzék honlap tétel
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,Kérjük töltse fel levele fejlécét és logo-ját. (Ezeket később szerkesztheti).
DocType: Timesheet Detail,Bill,Számla
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,Következő értékcsökkenés dátumaként múltbeli dátumot tüntettek fel
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,Következő értékcsökkenés dátumaként múltbeli dátumot tüntettek fel
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,Fehér
DocType: SMS Center,All Lead (Open),Összes Érdeklődés (Nyitott)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),Sor {0}: Mennyiség nem áll rendelkezésre {4} raktárban {1} a kiküldetés idején a bejegyzést ({2} {3})
@ -1282,7 +1285,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,Következő megbeszélés dátuma
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,Nyitó Mennyiség
DocType: Healthcare Settings,Appointment Reminder,Vizit időpont emlékeztető
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,"Kérjük, adja meg a Számlát a váltópénz összeghez"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,"Kérjük, adja meg a Számlát a váltópénz összeghez"
DocType: Program Enrollment Tool Student,Student Batch Name,Tanuló kötegnév
DocType: Consultation,Doctor,Orvos
DocType: Holiday List,Holiday List Name,Szabadnapok listájának neve
@ -1298,6 +1301,7 @@ DocType: Patient,Patient Relation,Beteg kapcsolat
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,Távollét Lefoglaló Eszköz
DocType: Item,Hub Category to Publish,Közzétételi Hub kategória
DocType: Leave Block List,Leave Block List Dates,Távollét blokk lista dátumok
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,"Kérjük, állítsa be a számozási sorozatot a részvételhez a Beállítás&gt; Számozási sorozatok segítségével"
DocType: Sales Invoice,Billing Address GSTIN,Számlázási cím GSTIN
DocType: Assessment Plan,Evaluate,értékelje
DocType: Workstation,Net Hour Rate,Nettó óra bér
@ -1331,7 +1335,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,Beszerzési megrendelés nyugta
DocType: Purchase Receipt,PREC-RET-,BESZBEV-ELLEN-
DocType: POS Profile,Sales Invoice Payment,Kimenő értékesítési számla kifizetése
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,Fenntartott Raktár a Vevői rendelésben / készáru raktárban
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,Értékesítési összeg
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,Értékesítési összeg
DocType: Repayment Schedule,Interest Amount,Kamatösszeg
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,"Te vagy a költség Jóváhagyó erre a bejegyzésre. Kérjük ""Állapot"" frissítsen és ""Mentés"""
DocType: Serial No,Creation Document No,Létrehozott Dokumentum sz.
@ -1422,7 +1426,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,Nyitó Könyvelési egyenleg
,GST Sales Register,GST értékesítés regisztráció
DocType: Sales Invoice Advance,Sales Invoice Advance,Kimenő értékesítési számla előleg
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,Nincs mit igényelni
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,Nincs mit igényelni
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,Válassza ki a domainjeit
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},"Egy másik költségvetési rekord ""{0}"" már létezik az {1} '{2}' ellen, ebben a pénzügyi évben {3}"
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,A mezők csak a létrehozás idején lesznek átmásolva.
@ -1432,11 +1436,11 @@ DocType: Cheque Print Template,Payer Settings,Fizetői beállítások
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","Ez lesz hozzáfűzve a termék egy varióciájához. Például, ha a rövidítés ""SM"", és a tételkód ""T-shirt"", a tétel kód variánsa ez lesz ""SM feliratú póló"""
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,"Nettó fizetés (szavakkal) lesz látható, ha mentette a Bérpapírt."
DocType: Purchase Invoice,Is Return,Ez visszáru
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,Vigyázat
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,Vigyázat
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,Vissza / terhelési értesítés
DocType: Price List Country,Price List Country,Árlista Országa
DocType: Item,UOMs,Mértékegységek
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},"{0} érvényes sorozatszámok, a(z) {1} tételhez"
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},"{0} érvényes sorozatszámok, a(z) {1} tételhez"
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Tételkódot nem lehet lecserélni Széria számmá
DocType: Purchase Invoice Item,UOM Conversion Factor,ME konverziós tényező
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,"Kérjük, adja meg a tételkódot, hogy megkapja a köteg számot"
@ -1540,7 +1544,7 @@ DocType: Journal Entry,Get Outstanding Invoices,Fennálló negatív kintlévő s
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,Vevői rendelés {0} nem érvényes
DocType: Supplier Scorecard,Warn for new Request for Quotations,Figyelmeztetés az új Ajánlatkéréshez
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,Beszerzési megrendelések segítenek megtervezni és követni a beszerzéseket
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","Sajnáljuk, a vállalkozásokat nem lehet összevonni,"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","Sajnáljuk, a vállalkozásokat nem lehet összevonni,"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,Laboratóriumi teszt rendelvények
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}","A teljes Probléma / Átvitt mennyiség {0} ebben az Anyaga igénylésben: {1} \ nem lehet nagyobb, mint az igényelt mennyiség: {2} erre a tételre: {3}"
@ -1578,7 +1582,6 @@ DocType: Vehicle,Fuel UOM,Üzemanyag mértékegység
DocType: Warehouse,Warehouse Contact Info,Raktári kapcsolattartó
DocType: Payment Entry,Write Off Difference Amount,Leíró Eltérés összeg
DocType: Volunteer,Volunteer Name,Önkéntes neve
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,"Kérjük, állítsd be az oktatónevezési rendszert az oktatásban&gt; Oktatási beállítások"
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0}: Alkalmazott email nem található, ezért nem küldte email"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},A szállítási szabály nem vonatkozik erre ozországra: {0}
DocType: Item,Foreign Trade Details,Külkereskedelem Részletei
@ -1590,7 +1593,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,Csoport regisztrációs száma
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry","{0} -hoz, csak jóváírási számlákat lehet kapcsolni a másik ellen terheléshez"
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,"Összesen feladat súlyozása legyen 1. Kérjük, állítsa a súlyozást minden projekt feladataira ennek megfelelően"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,A {0} Szállítólevelet nem nyújtották be
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,A {0} Szállítólevelet nem nyújtották be
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,Tétel {0} kell egy Alvállalkozásban Elem
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,Alap Felszereltség
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Árképzési szabályt először 'Alkalmazza ezen' mező alapján kiválasztott, ami lehet tétel, pont-csoport vagy a márka."
@ -1615,7 +1618,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,Al raktár létezik ebben a raktárban. Nem lehet törölni a raktárban.
DocType: Item,Website Item Groups,Weboldal tétel Csoportok
DocType: Purchase Invoice,Total (Company Currency),Összesen (a cég pénznemében)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,Széria sz. {0} többször bevitt
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,Széria sz. {0} többször bevitt
DocType: Journal Entry,Journal Entry,Könyvelési tétel
DocType: Expense Claim Advance,Unclaimed amount,Nem követelt összeg
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} tétel(ek) folyamatban
@ -1711,7 +1714,7 @@ DocType: Email Digest,For Company,A Vállakozásnak
apps/erpnext/erpnext/config/support.py +17,Communication log.,Kommunikációs napló.
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.","Ajánlatkérés le van tiltva a portálon keresztüli hozzáférésre, továbbiakhoz ellenőrizze a portál beállításokat."
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,Beszállító mutatószámok pontozási változója
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,Beszerzési mennyiség
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,Beszerzési mennyiség
DocType: Sales Invoice,Shipping Address Name,Szállítási cím neve
DocType: Material Request,Terms and Conditions Content,Általános szerződési feltételek tartalma
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,Hiba történt a kurzus ütemezés során
@ -1974,7 +1977,7 @@ DocType: Expense Claim,Total Amount Reimbursed,Visszatérített teljes összeg
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,Ennek alapja a naplók ehhez a járműhöz. Lásd az alábbi idővonalat a részletehez
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},Beszállító Ellenszámla {0} dátuma {1}
DocType: Customer,Default Price List,Alapértelmezett árlista
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,Vagyoneszköz mozgás bejegyzés {0} létrehozva
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,Vagyoneszköz mozgás bejegyzés {0} létrehozva
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,"Nem törölheti ezt a Pénzügyi évet: {0}. Pénzügyi év: {0} az alapértelmezett beállítás, a Globális beállításokban"
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,Már létezik egy azonos nevű vásárló
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,Ez Bérpapírt küld és létrehoz egy aktuális naplóbejegyzést. Akarod folytatni?
@ -1988,6 +1991,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,Árazás
DocType: Quotation,Term Details,ÁSZF részletek
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,"Nem lehet regisztrálni, több mint {0} diákot erre a diákcsoportra."
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),Összesen (adó nélkül)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,Érdeklődés számláló
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,"{0} nagyobbnak kell lennie, mint 0"
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,Raktáron lévő
@ -2006,7 +2010,6 @@ DocType: Lab Test,Technician Name,Technikus neve
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,Fizetetlen számlához tartozó Fizetés megszüntetése
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},"Jelenlegi leolvasott kilométerállásnak nagyobbnak kell lennie, mint a Jármű kezdeti kilométeróra állása {0}"
DocType: Restaurant Reservation,No Show,Nincs megjelenítés
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Állítsa be a Naming sorozat {0} beállítását a Beállítás&gt; Beállítások&gt; Nevezési sorozatok segítségével
DocType: Shipping Rule Country,Shipping Rule Country,Szállítási szabály Ország
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,Távollét és jelenlét
DocType: Maintenance Visit,Partially Completed,Részben befejezett
@ -2098,7 +2101,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,Diák csoport oktató
DocType: Grant Application,Assessment Mark (Out of 10),Értékelés jelölés (10-ből)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Helyettesítő2 Mobil szám
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,Legfontosabb
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,Legfontosabb
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,Változat
DocType: Naming Series,Set prefix for numbering series on your transactions,Sorozat számozás előtag beállítása a tranzakciókhoz
DocType: Employee Attendance Tool,Employees HTML,Alkalmazottak HTML
@ -2146,7 +2149,7 @@ DocType: Crop,Crop Spacing,Termés távolsága
DocType: Course,Course Abbreviation,Tanfolyam rövidítés
DocType: Student Leave Application,Student Leave Application,Diák távollét alkalmazás
DocType: Item,Will also apply for variants,Változatokra is alkalmazni fogja
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","Vagyoneszköz nem törölhető, mivel ez már {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","Vagyoneszköz nem törölhető, mivel ez már {0}"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},Alkalmazott {0} félműszakos ekkor {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},"Teljes munkaidő nem lehet nagyobb, mint a max munkaidő {0}"
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,Tovább
@ -2330,9 +2333,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),Tényleges befejezés dátuma (Idő nyilvántartó szerint)
DocType: Soil Texture,Soil Type,Talaj típus
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},Összeg: {0} {1} ellenéből {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,Új üzenet
,Quotation Trends,Árajánlatok alakulása
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},Tétel Csoport nem említett a tétel törzsadatban erre a tételre: {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,Tartozás megterhelés számlának bevételi számlának kell lennie
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,Tartozás megterhelés számlának bevételi számlának kell lennie
DocType: Shipping Rule,Shipping Amount,Szállítandó mennyiség
DocType: Supplier Scorecard Period,Period Score,Időszak pontszám
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,Vevők hozzáadása
@ -2343,7 +2347,7 @@ DocType: Purchase Order,Delivered,Kiszállítva
,Vehicle Expenses,Jármű költségek
DocType: Serial No,Invoice Details,Számla részletei
DocType: Grant Application,Show on Website,Megjelenítés a weboldalon
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},"Várható érték a hasznos élettartam után nagyobbnak kell lennie, vagy egyenlő, mint {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},"Várható érték a hasznos élettartam után nagyobbnak kell lennie, vagy egyenlő, mint {0}"
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,Kezdés ekkor
DocType: Hub Category,Hub Category,Hub kategória
DocType: Purchase Invoice,SEZ,áruszállítás
@ -2374,7 +2378,7 @@ DocType: Patient,Patient Details,A beteg adatai
DocType: Patient,B Positive,B Pozitív
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","Sor # {0}: Mennyiség legyen 1, a tétel egy tárgyi eszköz. Használjon külön sort több menny."
DocType: Leave Block List Allow,Leave Block List Allow,Távollét blokk lista engedélyezése
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,Rövidített nem lehet üres vagy szóköz
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,Rövidített nem lehet üres vagy szóköz
DocType: Patient Medical Record,Patient Medical Record,Beteg orvosi kartonja
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,Csoport Csoporton kívülire
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,Sportok
@ -2424,6 +2428,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,"Nem állítható be beérkezettnek az Árajánlatkérés , nincs Árajánlat"
DocType: Quotation,QTN-,AJ-
DocType: Salary Slip,Total Deduction,Összesen levonva
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,Válasszon ki egy fiókot a számla pénznemére történő nyomtatáshoz
,Production Analytics,Termelési elemzések
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,Ez a betegekkel szembeni tranzakciókra épül. Lásd az alábbi idővonalat a részletekért
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,Költség Frissítve
@ -2478,7 +2483,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,Téte
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,Válasszon vállalkozást...
DocType: Leave Control Panel,Leave blank if considered for all departments,"Hagyja üresen, ha figyelembe veszi az összes szervezeti egységen"
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","Alkalmazott foglalkoztatás típusa (munkaidős, szerződéses, gyakornok stb)."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} kötelező a(z) {1} tételnek
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} kötelező a(z) {1} tételnek
DocType: Payroll Entry,Fortnightly,Kéthetenkénti
DocType: Currency Exchange,From Currency,Pénznemből
DocType: Vital Signs,Weight (In Kilogram),Súly (kilogrammban)
@ -2554,7 +2559,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),Alapösszeg (Vállalkoz
DocType: Student,Guardians,Helyettesítők
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,"Az árak nem jelennek meg, ha Árlista nincs megadva"
DocType: Stock Entry,Total Incoming Value,Beérkező össz Érték
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,Tartozás megterhelése szükséges
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,Tartozás megterhelése szükséges
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Munkaidő jelenléti ív segít nyomon követni az idő, költség és számlázási tevékenységeit a csoportjának."
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,Beszerzési árlista
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,A beszállító eredménymutató-változóinak sablonjai.
@ -2655,7 +2660,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,Csak tájékoztató jellegűek.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},A {0} orvos nem érhető el ezen {1}
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,Válasszon köteg sz.
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},Érvénytelen {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},Érvénytelen {0}: {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,BESZSZ-ELLEN-
DocType: Fee Validity,Reference Inv,Szla. referencia
@ -2692,8 +2697,8 @@ DocType: Fees,Send Payment Request,Fizetési kérelem küldése
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Adja meg a műveletet, a működési költségeket, és adjon meg egy egyedi műveletet a műveletekhez."
DocType: Water Analysis,Origin,Származás
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,Ez a dokumentum túlcsordult ennyivel {0} {1} erre a tételre {4}. Létrehoz egy másik {3} ugyanazon {2} helyett?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,"Kérjük, állítsa be az ismétlődést a mentés után"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,Válasszon váltópénz összeg számlát
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,"Kérjük, állítsa be az ismétlődést a mentés után"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,Válasszon váltópénz összeg számlát
DocType: Purchase Invoice,Price List Currency,Árlista pénzneme
DocType: Naming Series,User must always select,Felhasználónak mindig választani kell
DocType: Stock Settings,Allow Negative Stock,Negatív készlet engedélyezése
@ -2749,7 +2754,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,Karbantartási
DocType: Supplier Scorecard,Warn for new Purchase Orders,Figyelmeztetés az új Vevői megrendelésekre
DocType: Quality Inspection Reading,Reading 9,Olvasás 9
DocType: Supplier,Is Frozen,Ez zárolt
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,Csoport csomópont raktár nem választhatók a tranzakciókhoz
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,Csoport csomópont raktár nem választhatók a tranzakciókhoz
DocType: Buying Settings,Buying Settings,Beszerzési Beállítások
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,Késztermék Anyagjegyzék száma
DocType: Upload Attendance,Attendance To Date,Részvétel befejezés dátuma
@ -2763,6 +2768,7 @@ DocType: Offer Letter,Accepted,Elfogadva
DocType: Grant Application,Organization,Szervezet
DocType: BOM Update Tool,BOM Update Tool,ANYAGJ frissítő eszköz
DocType: SG Creation Tool Course,Student Group Name,Diák csoport neve
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,Ropsztatott nézet megjelenítése
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,Díjak létrehozása
apps/erpnext/erpnext/setup/doctype/company/company.js +91,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.,"Kérjük, győződjön meg róla, hogy valóban törölni szeretné az összes tranzakció ennél a vállalatnál. Az Ön törzsadati megmaradnak. Ez a művelet nem vonható vissza."
DocType: Room,Room Number,Szoba szám
@ -2773,7 +2779,7 @@ DocType: Journal Entry Account,Payroll Entry,Bérszámfejtési bejegyzés
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,Adózási sablon létrehozása
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,Felhasználói fórum
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,Nyersanyagok nem lehet üres.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","Nem sikerült frissíteni a készletet, számla tartalmaz közvetlen szállítási elemet."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","Nem sikerült frissíteni a készletet, számla tartalmaz közvetlen szállítási elemet."
DocType: Lab Test Sample,Lab Test Sample,Labor teszt minta
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,Gyors Naplókönyvelés
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,"Nem tudod megváltoztatni az árat, ha az említett ANYGJZ összefügg már egy tétellel"
@ -2844,7 +2850,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,USD
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,Számla készítése
DocType: Selling Settings,Auto close Opportunity after 15 days,Automatikus lezárása az ügyeknek 15 nap után
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,"Vásárlási rendelések nem engedélyezettek erre: {0}, mivel az eredménymutatók értéke: {1}."
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,"Vásárlási rendelések nem engedélyezettek erre: {0}, mivel az eredménymutatók értéke: {1}."
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,Befejező év
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Áraj / Lehet %
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,"Szerződés befejezés dátuma nem lehet nagyobb, mint a Csatlakozás dátuma"
@ -2936,7 +2942,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90 felett
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,"Sor # {0}: Naplókönyvelés {1} nem rendelkezik {2} számlával, vagy már összeegyeztetett egy másik utalvánnyal"
DocType: Supplier Scorecard Criteria,Criteria Weight,Kritérium Súlyozás
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Szállító&gt; Szállító típusa
DocType: Buying Settings,Default Buying Price List,Alapértelmezett Vásárlási árjegyzék
DocType: Payroll Entry,Salary Slip Based on Timesheet,Bérpapirok a munkaidő jelenléti ív alapján
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,Beszerzési érték
@ -3024,7 +3029,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,Ipari típusonkénti Érdeklődés nyomonkövetése.
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,Menjen a Fejlécekhez
DocType: Item Supplier,Item Supplier,Tétel Beszállító
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,"Kérjük, adja meg a tételkódot a köteg szám megadásához"
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,"Kérjük, adja meg a tételkódot a köteg szám megadásához"
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},"Kérjük, válasszon értéket {0} ehhez az árajánlathoz {1}"
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,Összes cím.
DocType: Company,Stock Settings,Készlet beállítások
@ -3201,6 +3206,7 @@ DocType: Employee Loan,Loan Details,Hitel részletei
DocType: Company,Default Inventory Account,Alapértelmezett készlet számla
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,"Sor {0}: Befejezve Mennyiség nagyobbnak kell lennie, mint nulla."
DocType: Antibiotic,Antibiotic Name,Antibiotikum neve
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Tételkód&gt; Tételcsoport&gt; Márka
DocType: Purchase Invoice,Apply Additional Discount On,Alkalmazzon további kedvezmény ezen
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,Válasszon típust...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,"Egy link az összes föld területre, ahol a termés növekszik"
@ -3394,6 +3400,7 @@ DocType: Guardian Student,Guardian Student,Helyettesítő tanuló
DocType: Supplier,Credit Limit,Követelés limit
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,Átl. értékesítési árlista
DocType: Production Plan Sales Order,Salse Order Date,Vevői rendelés Dátuma
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Szállító&gt; Szállító típusa
DocType: Salary Component,Salary Component,Bér összetevői
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,"Fizetési bejegyzések {0}, melyek nem-kedveltek"
DocType: GL Entry,Voucher No,Bizonylatszám
@ -3402,7 +3409,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,Legnepszerűbb
DocType: Leave Allocation,Leave Allocation,Távollét lefoglalása
DocType: Payment Request,Recipient Message And Payment Details,Címzett üzenet és fizetési részletek
DocType: Training Event,Trainer Email,Képző Email
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,{0} anyagigénylés létrejött
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,{0} anyagigénylés létrejött
DocType: Restaurant Reservation,No of People,Emberek száma
DocType: Production Planning Tool,Include sub-contracted raw materials,Tartalmazza az alvállalkozók nyersanyagait
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,Sablon a feltételekre vagy szerződésre.
@ -3466,7 +3473,7 @@ DocType: Landed Cost Item,Receipt Document,Nyugta dokumentum
DocType: Production Planning Tool,Create Material Requests,Anyagigénylés létrehozása
DocType: Employee Education,School/University,Iskola / Egyetem
DocType: Payment Request,Reference Details,Hivatkozó Részletek
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,"Várható érték a hasznos élettartam után kevesebbnek kell lennie, mint a bruttó beszerzés összege"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,"Várható érték a hasznos élettartam után kevesebbnek kell lennie, mint a bruttó beszerzés összege"
DocType: Sales Invoice Item,Available Qty at Warehouse,Elérhető mennyiség a raktárban
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,Számlázott összeg
DocType: Asset,Double Declining Balance,Progresszív leírási modell egyenleg
@ -3478,7 +3485,7 @@ DocType: Attendance,On Leave,Távolléten
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,Változások lekérdezése
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: fiók {2} nem tartozik ehhez a vállalkozáshoz {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,Válasszon ki legalább egy értéket az egyes jellemzőkből.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,"A(z) {0} anyagigénylés törölve, vagy leállítva"
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,"A(z) {0} anyagigénylés törölve, vagy leállítva"
apps/erpnext/erpnext/config/hr.py +310,Leave Management,Távollét kezelő
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,Számla által csoportosítva
DocType: Sales Order,Fully Delivered,Teljesen leszállítva
@ -3489,14 +3496,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},"Folyósított összeg nem lehet nagyobb, a kölcsön összegénél {0}"
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,Menjen a Programokhoz
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},"{0} sor # A lekötött összeg {1} nem lehet nagyobb, mint a nem követelt összeg {2}"
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,"Kérjük, állítsa be a számozási sorozatot a részvételhez a Beállítás&gt; Számozási sorozatok segítségével"
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},Beszerzési megrendelés száma szükséges ehhez az elemhez {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,Gyártási rendelés nincs létrehozva
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"a ""Dátumtól"" értéknek későbbinek kell lennie a ""Dátumig"" értéknél"
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},"Nem lehet megváltoztatni az állapotát, mivel a hallgató: {0} hozzá van fűzve ehhez az alkalmazáshoz: {1}"
DocType: Asset,Fully Depreciated,Teljesen amortizálódott
,Stock Projected Qty,Készlet kivetített Mennyiség
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},Vevő {0} nem tartozik ehhez a projekthez {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},Vevő {0} nem tartozik ehhez a projekthez {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,Jelzett Nézőszám HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers","Árajánlatok mind javaslatok, a vásárlói részére kiküldött ajánlatok"
DocType: Sales Order,Customer's Purchase Order,Vevői Beszerzési megrendelés
@ -3580,7 +3586,7 @@ DocType: Salary Slip,Hour Rate,Óra értéke
DocType: Stock Settings,Item Naming By,Tétel elnevezés típusa
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},Egy újabb Időszak záró bejegyzés {0} létre lett hozva ez után: {1}
DocType: Production Order,Material Transferred for Manufacturing,Anyag átrakva gyártáshoz
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,A {0} számla nem létezik
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,A {0} számla nem létezik
DocType: Project,Project Type,Projekt téma típusa
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,Al feladat létezik erre a feladatra. Ezt a feladatot nem törölheti.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,Vagy előirányzott Menny. vagy előirányzott összeg kötelező
@ -3682,11 +3688,11 @@ DocType: C-Form,I,én
DocType: Company,Asset Depreciation Cost Center,Vagyoneszköz Értékcsökkenés Költséghely
DocType: Sales Order Item,Sales Order Date,Vevői rendelés dátuma
DocType: Sales Invoice Item,Delivered Qty,Kiszállított mennyiség
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,Összesen Adó
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","Ha be van jelölve, az összes gyártási tétel al tétele bekerül az anyag igénylés kérésekbe."
DocType: Assessment Plan,Assessment Plan,Értékelés terv
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,Az ügyfél {0} létrehozva.
DocType: Stock Settings,Limit Percent,Limit Percent
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,"Kérjük, állítsd be az oktatónevezési rendszert az oktatásban&gt; Oktatási beállítások"
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,Jelenleg nincs raktárkészlet egyik raktárban sem
,Payment Period Based On Invoice Date,Fizetési határidő számla dátuma alapján
DocType: Sample Collection,No. of print,Nyomtatás száma
@ -3702,12 +3708,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),Követelések ({0})
DocType: Pricing Rule,Margin,Árkülönbözet
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,Új Vevők
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,Bruttó nyereség %
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,Bruttó nyereség %
DocType: Appraisal Goal,Weightage (%),Súlyozás (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,POS profil megváltoztatása
DocType: Bank Reconciliation Detail,Clearance Date,Végső dátum
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,Értékelés jelentés
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,Bruttó vásárlási összeg kötelező
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,Bruttó vásárlási összeg kötelező
DocType: Lead,Address Desc,Cím leírása
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,Ügyfél kötelező
DocType: Journal Entry,JV-,KT-
@ -3739,7 +3745,6 @@ DocType: Account,Accumulated Depreciation,Halmozott értékcsökkenés
DocType: Supplier Scorecard Scoring Standing,Standing Name,Állandó név
DocType: Stock Entry,Customer or Supplier Details,Vevő vagy Beszállító részletei
DocType: Employee Loan Application,Required by Date,Kötelező dátumonként
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),Záró egyenleg (ÉCS - Köv)
DocType: Lead,Lead Owner,Érdeklődés tulajdonosa
DocType: Bin,Requested Quantity,kért mennyiség
DocType: Patient,Marital Status,Családi állapot
@ -3753,7 +3758,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,Több változat
DocType: Sales Invoice,Against Income Account,Elleni jövedelem számla
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% szállítva
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,"Tétel {0}: Rendelet Mennyisége: {1} nem lehet kevesebb, mint a minimális rendelési mennyiség {2} (Tételnél meghatározott)."
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,"Tétel {0}: Rendelet Mennyisége: {1} nem lehet kevesebb, mint a minimális rendelési mennyiség {2} (Tételnél meghatározott)."
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,Havi Felbontás százaléka
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,"Kérjük, lépjen be mint másik felhasználó."
DocType: Territory,Territory Targets,Területi célok
@ -3852,7 +3857,7 @@ DocType: Program Enrollment,School House,Iskola épület
DocType: Serial No,Out of AMC,ÉKSz időn túl
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,"Lekönyvelt amortizációk száma nem lehet nagyobb, mint az összes amortizációk száma"
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,Karbantartási látogatás készítés
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,"Kérjük, lépjen kapcsolatba a felhasználóval, akinek van Értékesítési törzsadat kezelő {0} beosztása"
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,"Kérjük, lépjen kapcsolatba a felhasználóval, akinek van Értékesítési törzsadat kezelő {0} beosztása"
DocType: Company,Default Cash Account,Alapértelmezett készpénzforgalmi számla
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,Vállalkozás (nem vevő vagy beszállító) törzsadat.
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,Ez a Tanuló jelenlétén alapszik
@ -4002,7 +4007,6 @@ DocType: Delivery Note Item,From Warehouse,Raktárról
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,Az említett kritériumok alapján nincsenek alkalmazottak
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,Nincs elem az Anyagjegyzéken a Gyártáshoz
DocType: Restaurant,Default Customer,Alapértelmezett vevő
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,"Kérjük, állítsa be az alkalmazottak elnevezési rendszerét az emberi erőforrás&gt; HR beállításoknál"
DocType: Assessment Plan,Supervisor Name,Felügyelő neve
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,"Ne erősítse meg, hogy ugyanazon a napra már van találkozója"
DocType: Program Enrollment Course,Program Enrollment Course,Program Jelentkezés kurzus
@ -4120,7 +4124,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,Weboldal leírása
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,Nettó változás a saját tőkében
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,Legújabb
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,"Kérjük, vonja vissza a(z) {0} Beszállítói számlát először"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,"Kérjük, vonja vissza a(z) {0} Beszállítói számlát először"
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","E-mail címnek egyedinek kell lennie, ez már létezik: {0}"
DocType: Serial No,AMC Expiry Date,Éves karbantartási szerződés lejárati dátuma
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,Nyugta
@ -4137,7 +4141,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,Még nem Vevő
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,Pénzforgalmi kimutatás
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},Hitel összege nem haladhatja meg a maximális kölcsön összegét {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,Licenc
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},Töröld a számlát: {0} a C-űrlapból: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},Töröld a számlát: {0} a C-űrlapból: {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,"Kérjük, válassza ki az átvitelt, ha Ön is szeretné az előző pénzügyi év mérlege ágait erre a költségvetési évre áthozni"
DocType: GL Entry,Against Voucher Type,Ellen-bizonylat típusa
DocType: Physician,Phone (R),Telefon (Otthoni)
@ -4149,7 +4153,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,B Negatív
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,Karbantartási állapotot törölni vagy befejezni kell a küldéshez
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},A {0}számlához nem tartozik a {1} vállalat
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,Sorozatszámok ebben a sorban {0} nem egyezik a szállítólevéllel
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,Sorozatszámok ebben a sorban {0} nem egyezik a szállítólevéllel
DocType: Student,Guardian Details,Helyettesítő részletei
DocType: C-Form,C-Form,C-Form
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,Jelölje a Jelenlétet több alkalmazotthoz
@ -4191,7 +4195,7 @@ DocType: Opening Invoice Creation Tool,Sales,Értékesítés
DocType: Stock Entry Detail,Basic Amount,Alapösszege
DocType: Training Event,Exam,Vizsga
DocType: Complaint,Complaint,Panasz
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},Raktár szükséges a {0} tételhez
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},Raktár szükséges a {0} tételhez
DocType: Leave Allocation,Unused leaves,A fel nem használt távollétek
DocType: Patient,Alcohol Past Use,Korábbi alkoholfogyasztás
DocType: Fertilizer Content,Fertilizer Content,Műtrágya tartalma
@ -4315,6 +4319,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,Képlet
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,Szériasz #
DocType: Lab Test Template,Lab Test Template,Labor teszt sablon
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,Értékesítési számla
DocType: Purchase Invoice Item,Total Weight,Össz súly
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,Értékesítések jutalékai
DocType: Offer Letter Term,Value / Description,Érték / Leírás
@ -4471,7 +4476,7 @@ Updated via 'Time Log'",percben Frissítve az 'Idő napló'-n keresztül
DocType: Customer,From Lead,Érdeklődésből
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,Megrendelések gyártásra bocsátva.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,Válasszon pénzügyi évet ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,POS profil szükséges a POS bevitelhez
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,POS profil szükséges a POS bevitelhez
DocType: Program Enrollment Tool,Enroll Students,Diákok felvétele
DocType: Lab Test,Approved Date,Jóváhagyás dátuma
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,Alapértelmezett értékesítési
@ -4547,7 +4552,7 @@ DocType: Employee,Held On,Tartott
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,Gyártási tétel
,Employee Information,Alkalmazott adatok
DocType: Stock Entry Detail,Additional Cost,Járulékos költség
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","Nem tudja szűrni utalvány szám alapján, ha utalványonként csoportosított"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","Nem tudja szűrni utalvány szám alapján, ha utalványonként csoportosított"
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,Beszállítói ajánlat létrehozás
DocType: Quality Inspection,Incoming,Bejövő
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,Az értékesítés és a vásárlás alapértelmezett adómintáit hozták létre.
@ -4564,7 +4569,7 @@ DocType: Batch,Batch ID,Köteg ID
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},Megjegyzés: {0}
,Delivery Note Trends,Szállítólevelek alakulása
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,Összefoglaló erről a hétről
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,Készleten mennyiség
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,Készleten mennyiség
DocType: Delivery Trip,Calculate Estimated Arrival Times,Számítsa ki a becsült érkezési időket
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,Számla: {0} csak Készlet tranzakciókkal frissíthető
DocType: Student Group Creation Tool,Get Courses,Tanfolyamok lekérése
@ -4580,7 +4585,7 @@ DocType: Purchase Order,To Bill,Számlázandó
DocType: Material Request,% Ordered,% Rendezve
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.","Tanfolyam alapú Tanuló csoport, a Tanfolyamon érvényesítésre kerül minden hallgató aki beiratkozott a tanfolyamra a Program beiratkozáskor."
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,Darabszámra fizetett munka
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,Átlagos vásárlási érték
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,Átlagos vásárlási érték
DocType: Task,Actual Time (in Hours),Tényleges idő (óra)
DocType: Employee,History In Company,Előzmények a cégnél
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},Új üzenet {sender} -től
@ -4628,7 +4633,7 @@ DocType: Asset Repair,Asset Repair,Eszköz javítás
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},Sor {0}: Anyagjegyzés BOM pénzneme #{1} egyeznie kell a kiválasztott pénznemhez {2}
DocType: Journal Entry Account,Exchange Rate,Átváltási arány
DocType: Patient,Additional information regarding the patient,További információk a beteggel kapcsolatban
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,Vevői rendelés {0} nem nyújtják be
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,Vevői rendelés {0} nem nyújtják be
DocType: Homepage,Tag Line,Jelmondat sor
DocType: Fee Component,Fee Component,Díj komponens
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,Flotta kezelés
@ -4840,7 +4845,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,Értékelés eredmén
DocType: Employee Education,Employee Education,Alkalmazott képzése
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,Ismétlődő elem csoport található a csoport táblázatában
DocType: Land Unit,Parent Land Unit,Fő föld terület
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,"Erre azért van szükség, hogy behozza a Termék részleteket."
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,"Erre azért van szükség, hogy behozza a Termék részleteket."
DocType: Fertilizer,Fertilizer Name,Műtrágya neve
DocType: Salary Slip,Net Pay,Nettó fizetés
DocType: Account,Account,Számla
@ -4919,7 +4924,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),Tényleges Mennyiség
DocType: Item Customer Detail,Ref Code,Hiv. kód
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,Az ügyfélcsoport szükséges a POS profilban
apps/erpnext/erpnext/config/hr.py +12,Employee records.,Alkalmazotti nyilvántartó adatok.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,"Kérjük, állítsa be a Következő Értékcsökkenés dátumát"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,"Kérjük, állítsa be a Következő Értékcsökkenés dátumát"
DocType: HR Settings,Payroll Settings,Bérszámfejtés Beállítások
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,Egyeztesse az összeköttetésben nem álló számlákat és a kifizetéseket.
DocType: POS Settings,POS Settings,POS beállításai
@ -5086,7 +5091,7 @@ DocType: Item,Customer Code,Vevő kódja
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},Születésnapi emlékeztető {0}
DocType: Asset Maintenance Task,Last Completion Date,Utolsó befejezés dátuma
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,Utolsó rendeléstől eltel napok
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,Tartozás főkönyvi számlának Mérlegszámlának kell lennie
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,Tartozás főkönyvi számlának Mérlegszámlának kell lennie
DocType: Buying Settings,Naming Series,Sorszámozási csoportok
DocType: Leave Block List,Leave Block List Name,Távollét blokk lista neve
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,"Biztosítás kezdeti dátumának kisebbnek kell lennie, mint a biztosítás befejezés dátuma"
@ -5212,6 +5217,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,Fizetési bejegyzések lekérése
DocType: Quotation Item,Against Docname,Ellen Doknév
DocType: SMS Center,All Employee (Active),Összes alkalmazott (Aktív)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Ügyfél&gt; Ügyfélcsoport&gt; Terület
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,Megtekintés most
DocType: BOM,Raw Material Cost,Nyersanyagköltsége
DocType: Item Reorder,Re-Order Level,Újra-rendelési szint
@ -5310,7 +5316,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,Ülőhely kapacitás
DocType: Issue,ISS-,PROBL-
DocType: Lab Test Groups,Lab Test Groups,Labor Teszt csoportok
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Ügyfél&gt; Ügyfélcsoport&gt; Terület
DocType: Project,Total Expense Claim (via Expense Claims),Teljes Költség Követelés (költségtérítési igényekkel)
DocType: GST Settings,GST Summary,GST Összefoglaló
DocType: Assessment Result,Total Score,Összesített pontszám
@ -5323,7 +5328,7 @@ DocType: Batch,Source Document Type,Forrás dokument típusa
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,A következő kurzus ütemezések készültek el
DocType: Journal Entry,Total Debit,Tartozás összesen
DocType: Manufacturing Settings,Default Finished Goods Warehouse,Alapértelmezett készáru raktár
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,Értékesítő
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,Értékesítő
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,Költségvetés és költséghely
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,Több alapértelmezett fizetési mód nem engedélyezett
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,a
@ -5496,7 +5501,7 @@ DocType: Program,Program Name,Program neve
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Fontolja meg az adókat és díjakat erre
DocType: Driver,Driving License Category,Vezetői engedély kategóriája
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,Tényleges Mennyiség ami kötelező
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","A(z) {0} jelenleg {1} Szállítói mutatószámmal rendelkezik, ezért a vevői rendeléseket ennek a szállítónak óvatosan kell kiadni."
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","A(z) {0} jelenleg {1} Szállítói mutatószámmal rendelkezik, ezért a vevői rendeléseket ennek a szállítónak óvatosan kell kiadni."
DocType: Asset Maintenance Team,Asset Maintenance Team,Eszközkarbantartó csoport
DocType: Employee Loan,Loan Type,Hitel típus
DocType: Scheduling Tool,Scheduling Tool,Ütemező eszköz

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,Resep Lab
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,Urutkan berdasarkan harga
,Delay Days,Tunda hari
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,Beban layanan
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},Nomor Seri: {0} sudah dirujuk dalam Faktur Penjualan: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},Nomor Seri: {0} sudah dirujuk dalam Faktur Penjualan: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,Faktur
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,Buat Entri Stok Retensi
DocType: Purchase Invoice Item,Item Weight Details,Rincian Berat Item
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,Induk Detil docname
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","Referensi: {0}, Kode Item: {1} dan Pelanggan: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,Kg
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,Lowongan untuk Pekerjaan.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},BOM belum ditentukan untuk subkontrak barang {0} pada baris {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},BOM belum ditentukan untuk subkontrak barang {0} pada baris {1}
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} Hasil terkirim
DocType: Item Attribute,Increment,Kenaikan
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,Rentang waktu
@ -150,7 +150,7 @@ DocType: Patient,Married,Menikah
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},Tidak diizinkan untuk {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,Mendapatkan Stok Barang-Stok Barang dari
DocType: Price List,Price Not UOM Dependant,Harga UOM Tidak Tergantung
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},Persediaan tidak dapat diperbarui terhadap Nota Pengiriman {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},Persediaan tidak dapat diperbarui terhadap Nota Pengiriman {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},Produk {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,Tidak ada item yang terdaftar
DocType: Asset Repair,Error Description,Deskripsi kesalahan
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,Rekonsiliasi
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,Toko Kelontongan
DocType: Quality Inspection Reading,Reading 1,Membaca 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,Dana pensiun
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,Berikutnya Penyusutan Tanggal tidak boleh sebelum Tanggal Pembelian
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,Berikutnya Penyusutan Tanggal tidak boleh sebelum Tanggal Pembelian
DocType: Crop,Perennial,Abadi
DocType: Consultation,Consultation Date,Tanggal Konsultasi
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,Daftar produk dan penemuan untuk pengguna ERPNext
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,Write Off Biaya Pusat
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""",misalnya &quot;Sekolah Dasar&quot; atau &quot;Universitas&quot;
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,Laporan Persediaan
DocType: Warehouse,Warehouse Detail,Detail Gudang
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},Batas kredit telah terlampaui untuk Pelanggan {0} {1}/{2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},Batas kredit telah terlampaui untuk Pelanggan {0} {1}/{2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,Jangka Tanggal Akhir tidak bisa lebih lambat dari Akhir Tahun Tanggal Tahun Akademik yang istilah terkait (Tahun Akademik {}). Perbaiki tanggal dan coba lagi.
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","""Aset Tetap"" tidak dapat tidak dicentang, karena ada data Asset terhadap barang"
DocType: Delivery Trip,Departure Time,Waktu keberangkatan
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,Mahasiswa Log
DocType: Quality Inspection,Get Specification Details,Dapatkan Spesifikasi Detail
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,Template dari klasemen pemasok.
DocType: Lead,Interested,Tertarik
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,Pembukaan
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,Pembukaan
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},Dari {0} ke {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,Gagal menyetorkan pajak
DocType: Item,Copy From Item Group,Salin Dari Grup Stok Barang
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,Menghilangkan Tanggal harus lebih besar dari Tanggal Bergabung
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,cuti per Tahun
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,Baris {0}: Silakan periksa 'Apakah Muka' terhadap Rekening {1} jika ini adalah sebuah entri muka.
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},Gudang {0} bukan milik perusahaan {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},Gudang {0} bukan milik perusahaan {1}
DocType: Email Digest,Profit & Loss,Rugi laba
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,Liter
DocType: Task,Total Costing Amount (via Time Sheet),Total Costing Jumlah (via Waktu Lembar)
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,Tarif &amp; Jumlah
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,Hal ini didasarkan pada transaksi terhadap Perusahaan ini. Lihat garis waktu di bawah untuk rinciannya
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Beritahu melalui Surel pada pembuatan Permintaan Material otomatis
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,Tahan
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Konsultasi
DocType: Journal Entry,Multi Currency,Multi Mata Uang
DocType: Opening Invoice Creation Tool,Invoice Type,Tipe Faktur
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,Nota Pengiriman
@ -528,7 +529,6 @@ DocType: Email Digest,Credit Balance,Saldo kredit
DocType: Employee,Widowed,Janda
DocType: Request for Quotation,Request for Quotation,Permintaan Quotation
DocType: Healthcare Settings,Require Lab Test Approval,Memerlukan Lab Test Approval
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Item Code&gt; Item Group&gt; Brand
DocType: Salary Slip Timesheet,Working Hours,Jam Kerja
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,Total Posisi
DocType: Naming Series,Change the starting / current sequence number of an existing series.,Mengubah mulai / nomor urut saat ini dari seri yang ada.
@ -557,7 +557,7 @@ DocType: Subscription,Yearly,Tahunan
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,Harap Masukan Jenis Biaya Pusat
DocType: Drug Prescription,Dosage,Dosis
DocType: Journal Entry Account,Sales Order,Order Penjualan
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,Harga Jual Rata-rata
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,Harga Jual Rata-rata
DocType: Assessment Plan,Examiner Name,Nama pemeriksa
DocType: Lab Test Template,No Result,Tidak ada hasil
DocType: Purchase Invoice Item,Quantity and Rate,Kuantitas dan Harga
@ -605,6 +605,7 @@ DocType: Employee,Health Concerns,Kekhawatiran Kesehatan
DocType: Payroll Entry,Select Payroll Period,Pilih Payroll Periode
DocType: Purchase Invoice,Unpaid,Tunggakan
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,Dicadangkan untuk dijual
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Silakan setup Employee Naming System di Human Resource&gt; HR Settings
DocType: Packing Slip,From Package No.,Dari Package No
DocType: Item Attribute,To Range,Berkisar
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,Efek Saham dan Deposit
@ -629,11 +630,11 @@ DocType: Pricing Rule,Valid Upto,Valid Upto
DocType: Training Event,Workshop,Bengkel
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,Peringatkan untuk Pesanan Pembelian
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,Daftar beberapa pelanggan anda. Bisa organisasi atau individu.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,Bagian yang cukup untuk Membangun
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,Bagian yang cukup untuk Membangun
DocType: POS Profile User,POS Profile User,Profil Pengguna POS
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,Pendapatan Langsung
DocType: Patient Appointment,Date TIme,Tanggal Waktu
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","Tidak dapat memfilter berdasarkan Account, jika dikelompokkan berdasarkan Account"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","Tidak dapat memfilter berdasarkan Account, jika dikelompokkan berdasarkan Account"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,Petugas Administrasi
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,Menyiapkan perusahaan dan pajak
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,Silakan pilih Kursus
@ -643,7 +644,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,Perbedaan Akun
DocType: Purchase Invoice,Supplier GSTIN,Pemasok GSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,Tidak bisa tugas sedekat tugas yang tergantung {0} tidak tertutup.
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,Entrikan Gudang yang Material Permintaan akan dibangkitkan
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,Entrikan Gudang yang Material Permintaan akan dibangkitkan
DocType: Production Order,Additional Operating Cost,Biaya Operasi Tambahan
DocType: Lab Test Template,Lab Routine,Lab Rutin
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,Kosmetik
@ -811,7 +812,7 @@ DocType: Employee,Passport Number,Nomor Paspor
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Hubungan dengan Guardian2
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,Manajer
DocType: Payment Entry,Payment From / To,Pembayaran Dari / Untuk
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},batas kredit baru kurang dari jumlah yang luar biasa saat ini bagi pelanggan. batas kredit harus minimal {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},batas kredit baru kurang dari jumlah yang luar biasa saat ini bagi pelanggan. batas kredit harus minimal {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},Harap setel akun di Gudang {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,'Berdasarkan' dan 'Kelompokkan Menurut' tidak boleh sama
DocType: Sales Person,Sales Person Targets,Target Sales Person
@ -822,7 +823,7 @@ DocType: Lab Test Template,Compound,Senyawa
DocType: Student Batch Name,Batch Name,Nama Kumpulan
DocType: Fee Validity,Max number of visit,Jumlah kunjungan maksimal
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,Absen dibuat:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},Silakan set Cash standar atau rekening Bank Mode Pembayaran {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},Silakan set Cash standar atau rekening Bank Mode Pembayaran {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,Mendaftar
DocType: GST Settings,GST Settings,Pengaturan GST
DocType: Selling Settings,Customer Naming By,Penamaan Pelanggan Dengan
@ -946,7 +947,7 @@ DocType: Delivery Note,Customer's Purchase Order No,Nomor Order Pembelian Pelang
DocType: Budget,Budget Against,anggaran Terhadap
DocType: Employee,Cell Number,Nomor HP
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,Tidak ada karyawan untuk kriteria yang diberikan. Periksa bahwa Slip Gaji belum pernah dibuat.
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,Pembuatan Form Permintaan Material Otomatis
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,Pembuatan Form Permintaan Material Otomatis
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,Kalah
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,Anda tidak dapat memasukkan voucher saat ini di kolom 'Terhadap Entri Jurnal'
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,Dicadangkan untuk manufaktur
@ -954,7 +955,7 @@ DocType: Soil Texture,Sand,Pasir
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,Energi
DocType: Opportunity,Opportunity From,Peluang Dari
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,Laporan gaji bulanan.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Baris {0}: {1} Nomor seri diperlukan untuk Item {2}. Anda telah memberikan {3}.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Baris {0}: {1} Nomor seri diperlukan untuk Item {2}. Anda telah memberikan {3}.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,Silahkan pilih sebuah tabel
DocType: BOM,Website Specifications,Website Spesifikasi
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} adalah alamat email yang tidak valid di &#39;Penerima&#39;
@ -1023,7 +1024,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,Permintaan Kutipan
DocType: Vital Signs,Heart Rate / Pulse,Heart Rate / Pulse
DocType: Company,Default Bank Account,Standar Rekening Bank
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","Untuk menyaring berdasarkan Party, pilih Partai Ketik terlebih dahulu"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","Untuk menyaring berdasarkan Party, pilih Partai Ketik terlebih dahulu"
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},'Pembaruan Persediaan tidak dapat dipilih karena barang tidak dikirim melalui {0}
DocType: Vehicle,Acquisition Date,Tanggal akuisisi
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,Nos
@ -1047,7 +1048,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),Upload kepala surat Anda (Jaga agar web semudah 900px dengan 100px)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: Akun {2} tidak boleh Kelompok
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,Item Row {idx}: {doctype} {DOCNAME} tidak ada di atas &#39;{doctype}&#39; table
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,Absen {0} sudah selesai atau dibatalkan
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,Absen {0} sudah selesai atau dibatalkan
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,Tidak ada tugas
DocType: Item Variant Settings,Copy Fields to Variant,Copy Fields ke Variant
DocType: Asset,Opening Accumulated Depreciation,Membuka Penyusutan Akumulasi
@ -1159,9 +1160,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,Planning Material untuk Barang Rakitan
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,Mitra Penjualan dan Wilayah
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,BOM {0} harus aktif
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),Penutupan (Pembukaan + Total)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),Penutupan (Pembukaan + Total)
DocType: Journal Entry,Depreciation Entry,penyusutan Masuk
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Silakan pilih jenis dokumen terlebih dahulu
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,Cetak dalam Mata Uang Akun
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Batal Kunjungan Material {0} sebelum membatalkan ini Maintenance Visit
DocType: Crop Cycle,ISO 8016 standard,Standar ISO 8016
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},Serial ada {0} bukan milik Stok Barang {1}
@ -1187,7 +1189,7 @@ DocType: Purchase Receipt,Range,Jarak
DocType: Supplier,Default Payable Accounts,Standar Akun Hutang
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,Karyawan {0} tidak aktif atau tidak ada
DocType: Fee Structure,Components,komponen
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},Cukup masukkan Aset Kategori dalam angka {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},Cukup masukkan Aset Kategori dalam angka {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,Varian Barang {0} diperbarui
DocType: Quality Inspection Reading,Reading 6,Membaca 6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1239,6 +1241,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,Nama Perusahaan
DocType: SMS Center,Total Message(s),Total Pesan (s)
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,Pilih item untuk transfer
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Harap tentukan Seri Penamaan untuk {0} melalui Setup&gt; Settings&gt; Naming Series
DocType: Purchase Invoice,Additional Discount Percentage,Persentase Diskon Tambahan
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,Lihat daftar semua bantuan video
DocType: Agriculture Analysis Criteria,Soil Texture,Tekstur Tanah
@ -1266,7 +1269,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,BOM Situs Persediaan
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,Unggah kop surat dan logo. (Anda dapat mengubahnya nanti).
DocType: Timesheet Detail,Bill,Tagihan
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,Berikutnya Penyusutan Tanggal dimasukkan sebagai tanggal terakhir
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,Berikutnya Penyusutan Tanggal dimasukkan sebagai tanggal terakhir
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,Putih
DocType: SMS Center,All Lead (Open),Semua Prospek (Terbuka)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),Row {0}: Qty tidak tersedia untuk {4} di gudang {1} pada postingan kali entri ({2} {3})
@ -1282,7 +1285,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,Tanggal Komunikasi Selanjutnya
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,Qty Pembukaan
DocType: Healthcare Settings,Appointment Reminder,Pengingat Penunjukan
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,Silahkan masukkan account untuk Perubahan Jumlah
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,Silahkan masukkan account untuk Perubahan Jumlah
DocType: Program Enrollment Tool Student,Student Batch Name,Mahasiswa Nama Batch
DocType: Consultation,Doctor,Dokter
DocType: Holiday List,Holiday List Name,Daftar Nama Hari Libur
@ -1298,6 +1301,7 @@ DocType: Patient,Patient Relation,Hubungan Pasien
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,Alat Alokasi Cuti
DocType: Item,Hub Category to Publish,Kategori Hub untuk Publikasikan
DocType: Leave Block List,Leave Block List Dates,Tanggal Blok List Cuti
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Silakan setup seri penomoran untuk Kehadiran melalui Setup&gt; Numbering Series
DocType: Sales Invoice,Billing Address GSTIN,Alamat Penagihan GSTIN
DocType: Assessment Plan,Evaluate,Evaluasi
DocType: Workstation,Net Hour Rate,Jumlah Jam Bersih
@ -1331,7 +1335,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,Nota Penerimaan Stok Barang
DocType: Purchase Receipt,PREC-RET-,Prec-RET-
DocType: POS Profile,Sales Invoice Payment,Pembayaran Faktur Penjualan
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,Reserved Gudang di Sales Order / Stok Barang Jadi Gudang
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,Nilai Penjualan
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,Nilai Penjualan
DocType: Repayment Schedule,Interest Amount,Jumlah bunga
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,Anda adalah Penyetuju data ini. Harap Perbarui 'Status' dan Simpan
DocType: Serial No,Creation Document No,Nomor Dokumen
@ -1422,7 +1426,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,Saldo Pembukaan Akuntansi
,GST Sales Register,Daftar Penjualan GST
DocType: Sales Invoice Advance,Sales Invoice Advance,Uang Muka Faktur Penjualan
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,Tidak ada Permintaan
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,Tidak ada Permintaan
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,Pilih Domain Anda
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},record Anggaran lain &#39;{0}&#39; sudah ada terhadap {1} &#39;{2}&#39; untuk tahun fiskal {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,Fields akan disalin hanya pada saat penciptaan.
@ -1432,11 +1436,11 @@ DocType: Cheque Print Template,Payer Settings,Pengaturan Wajib
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","Ini akan ditambahkan ke Item Code dari varian. Sebagai contoh, jika Anda adalah singkatan ""SM"", dan kode Stok Barang adalah ""T-SHIRT"", kode item varian akan ""T-SHIRT-SM"""
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,Pay Bersih (dalam kata-kata) akan terlihat setelah Anda menyimpan Slip Gaji.
DocType: Purchase Invoice,Is Return,Retur Barang
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,Peringatan
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,Peringatan
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,Nota Retur / Debit
DocType: Price List Country,Price List Country,Negara Daftar Harga
DocType: Item,UOMs,UOMs
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} nomor seri berlaku untuk Item {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} nomor seri berlaku untuk Item {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Item Code tidak dapat diubah untuk Serial Number
DocType: Purchase Invoice Item,UOM Conversion Factor,Faktor Konversi UOM
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,Masukkan Item Code untuk mendapatkan Nomor Batch
@ -1540,7 +1544,7 @@ DocType: Journal Entry,Get Outstanding Invoices,Dapatkan Faktur Berjalan
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,Order Penjualan {0} tidak valid
DocType: Supplier Scorecard,Warn for new Request for Quotations,Peringatkan untuk Permintaan Kuotasi baru
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,pesanan pembelian membantu Anda merencanakan dan menindaklanjuti pembelian Anda
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","Maaf, perusahaan tidak dapat digabungkan"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","Maaf, perusahaan tidak dapat digabungkan"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,Resep Uji Lab
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",Total Issue / transfer kuantitas {0} Material Permintaan {1} \ tidak dapat lebih besar dari yang diminta kuantitas {2} untuk Item {3}
@ -1578,7 +1582,6 @@ DocType: Vehicle,Fuel UOM,BBM UOM
DocType: Warehouse,Warehouse Contact Info,Info Kontak Gudang
DocType: Payment Entry,Write Off Difference Amount,Menulis Off Perbedaan Jumlah
DocType: Volunteer,Volunteer Name,Nama Relawan
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Silakan setup Sistem Penamaan Instruktur di Pendidikan&gt; Pengaturan Pendidikan
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0}: email Karyawan tidak ditemukan, maka email tidak dikirim"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},Aturan pengiriman tidak berlaku untuk negara {0}
DocType: Item,Foreign Trade Details,Rincian Perdagangan Luar Negeri
@ -1590,7 +1593,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,Nomor roll grup
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry","Untuk {0}, hanya rekening kredit dapat dihubungkan dengan entri debit lain"
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,Total semua bobot tugas harus 1. Sesuaikan bobot dari semua tugas Proyek sesuai
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,Nota pengiriman {0} tidak Terkirim
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,Nota pengiriman {0} tidak Terkirim
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,Item {0} harus Item Sub-kontrak
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,Perlengkapan Modal
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Rule harga terlebih dahulu dipilih berdasarkan 'Terapkan On' lapangan, yang dapat Stok Barang, Stok Barang Grup atau Merek."
@ -1615,7 +1618,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,gudang anak ada untuk gudang ini. Anda tidak dapat menghapus gudang ini.
DocType: Item,Website Item Groups,Situs Grup Stok Barang
DocType: Purchase Invoice,Total (Company Currency),Total (Perusahaan Mata Uang)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,Serial number {0} masuk lebih dari sekali
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,Serial number {0} masuk lebih dari sekali
DocType: Journal Entry,Journal Entry,Jurnal Entri
DocType: Expense Claim Advance,Unclaimed amount,Jumlah yang tidak diklaim
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} item berlangsung
@ -1711,7 +1714,7 @@ DocType: Email Digest,For Company,Untuk Perusahaan
apps/erpnext/erpnext/config/support.py +17,Communication log.,Log komunikasi.
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.","Permintaan Quotation dinonaktifkan untuk akses dari portal, untuk pengaturan Portal cek lagi."
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,Variabel Scorecard Supplier Variabel
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,Jumlah Pembelian
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,Jumlah Pembelian
DocType: Sales Invoice,Shipping Address Name,Alamat Pengiriman
DocType: Material Request,Terms and Conditions Content,Syarat dan Ketentuan Konten
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,Ada kesalahan dalam membuat Jadwal Kursus
@ -1975,7 +1978,7 @@ DocType: Expense Claim,Total Amount Reimbursed,Jumlah Total diganti
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,Hal ini didasarkan pada log terhadap kendaraan ini. Lihat timeline di bawah untuk rincian
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},Terhadap Faktur Supplier {0} di tanggal {1}
DocType: Customer,Default Price List,Standar List Harga
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,Gerakan aset catatan {0} dibuat
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,Gerakan aset catatan {0} dibuat
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,Anda tidak dapat menghapus Tahun Anggaran {0}. Tahun Fiskal {0} diatur sebagai default di Pengaturan Global
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,Pelanggan dengan nama yang sama sudah ada
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,Ini akan mengirimkan Slip Gaji dan membuat Entri Jurnal akrual. Apakah kamu ingin melanjutkan?
@ -1989,6 +1992,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,harga
DocType: Quotation,Term Details,Rincian Term
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,tidak bisa mendaftar lebih dari {0} siswa untuk kelompok siswa ini.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),Total (Tanpa Pajak)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,Jumlah Prospek
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} harus lebih besar dari 0
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,Stok Tersedia
@ -2007,7 +2011,6 @@ DocType: Lab Test,Technician Name,Nama teknisi
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,Membatalkan tautan Pembayaran pada Pembatalan Faktur
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},Odometer membaca saat masuk harus lebih besar dari awal Kendaraan Odometer {0}
DocType: Restaurant Reservation,No Show,Tidak menunjukkan
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Harap tentukan Seri Penamaan untuk {0} melalui Setup&gt; Settings&gt; Naming Series
DocType: Shipping Rule Country,Shipping Rule Country,Aturan Pengiriman Negara
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,Tinggalkan dan Kehadiran
DocType: Maintenance Visit,Partially Completed,Selesai Sebagian
@ -2098,7 +2101,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,Instruktur Kelompok Mahasiswa
DocType: Grant Application,Assessment Mark (Out of 10),Tanda Penilaian (Dari 10)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 Ponsel Tidak
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,Utama
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,Utama
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,Varian
DocType: Naming Series,Set prefix for numbering series on your transactions,Mengatur awalan untuk penomoran seri pada transaksi Anda
DocType: Employee Attendance Tool,Employees HTML,Karyawan HTML
@ -2146,7 +2149,7 @@ DocType: Crop,Crop Spacing,Jarak tanam
DocType: Course,Course Abbreviation,Singkatan saja
DocType: Student Leave Application,Student Leave Application,Mahasiswa Cuti Aplikasi
DocType: Item,Will also apply for variants,Juga akan berlaku untuk varian
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","Aset tidak dapat dibatalkan, karena sudah {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","Aset tidak dapat dibatalkan, karena sudah {0}"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},Karyawan {0} tentang Half hari {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},Jumlah jam kerja tidak boleh lebih besar dari max jam kerja {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,Nyala
@ -2331,9 +2334,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),Tanggal Akhir Aktual (dari Lembar Waktu)
DocType: Soil Texture,Soil Type,Jenis tanah
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},Jumlah {0} {1} terhadap {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,Pesan baru
,Quotation Trends,Trend Penawaran
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},Item Grup tidak disebutkan dalam master Stok Barang untuk item {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,Debit Untuk akun harus rekening Piutang
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,Debit Untuk akun harus rekening Piutang
DocType: Shipping Rule,Shipping Amount,Jumlah Pengiriman
DocType: Supplier Scorecard Period,Period Score,Skor Periode
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,Tambahkan Pelanggan
@ -2344,7 +2348,7 @@ DocType: Purchase Order,Delivered,Dikirim
,Vehicle Expenses,Beban kendaraan
DocType: Serial No,Invoice Details,Detail faktur
DocType: Grant Application,Show on Website,Tampilkan di Website
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},nilai yang diharapkan setelah masa manfaat harus lebih besar dari atau sama dengan {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},nilai yang diharapkan setelah masa manfaat harus lebih besar dari atau sama dengan {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,Mulai dari
DocType: Hub Category,Hub Category,Kategori Hub
DocType: Purchase Invoice,SEZ,SEZ
@ -2375,7 +2379,7 @@ DocType: Patient,Patient Details,Rincian pasien
DocType: Patient,B Positive,B Positif
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","Row # {0}: Qty harus 1, sebagai item aset tetap. Silakan gunakan baris terpisah untuk beberapa qty."
DocType: Leave Block List Allow,Leave Block List Allow,Cuti Block List Izinkan
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,Singkatan tidak boleh kosong atau spasi
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,Singkatan tidak boleh kosong atau spasi
DocType: Patient Medical Record,Patient Medical Record,Catatan Medis Pasien
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,Kelompok Non-kelompok
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,Olahraga
@ -2425,6 +2429,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,Tidak dapat mengatur RFQ yang diterima ke No Quote
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,Jumlah Deduksi
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,Pilih akun yang akan dicetak dalam mata uang akun
,Production Analytics,Analytics produksi
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,Hal ini didasarkan pada transaksi melawan Pasien ini. Lihat garis waktu di bawah untuk rinciannya
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,Biaya Diperbarui
@ -2479,7 +2484,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,Penga
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,Pilih Perusahaan ...
DocType: Leave Control Panel,Leave blank if considered for all departments,Biarkan kosong jika dianggap untuk semua departemen
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","Jenis pekerjaan (permanen, kontrak, magang dll)."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} adalah wajib untuk Item {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} adalah wajib untuk Item {1}
DocType: Payroll Entry,Fortnightly,sekali dua minggu
DocType: Currency Exchange,From Currency,Dari mata uang
DocType: Vital Signs,Weight (In Kilogram),Berat (dalam Kilogram)
@ -2555,7 +2560,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),Nilai Dasar (Mata Uang P
DocType: Student,Guardians,Penjaga
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,Harga tidak akan ditampilkan jika Harga Daftar tidak diatur
DocType: Stock Entry,Total Incoming Value,Total nilai masuk
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,Debit Untuk diperlukan
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,Debit Untuk diperlukan
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Timesheets membantu melacak waktu, biaya dan penagihan untuk kegiatan yang dilakukan oleh tim Anda"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,Pembelian Daftar Harga
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,Template dari variabel scorecard pemasok.
@ -2656,7 +2661,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,Untuk referensi saja.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},Dokter {0} tidak tersedia di {1}
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,Pilih Batch No
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},Valid {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},Valid {0}: {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Fee Validity,Reference Inv,Referensi Inv
@ -2693,8 +2698,8 @@ DocType: Fees,Send Payment Request,Kirim Permintaan Pembayaran
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Tentukan operasi, biaya operasi dan memberikan Operation unik ada pada operasi Anda."
DocType: Water Analysis,Origin,Asal
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,Dokumen ini adalah lebih dari batas oleh {0} {1} untuk item {4}. Apakah Anda membuat yang lain {3} terhadap yang sama {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,Silahkan mengatur berulang setelah menyimpan
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,Pilih akun berubah jumlah
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,Silahkan mengatur berulang setelah menyimpan
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,Pilih akun berubah jumlah
DocType: Purchase Invoice,Price List Currency,Daftar Harga Mata uang
DocType: Naming Series,User must always select,Pengguna harus selalu pilih
DocType: Stock Settings,Allow Negative Stock,Izinkan persediaan negatif
@ -2750,7 +2755,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,Jadwal pemeliha
DocType: Supplier Scorecard,Warn for new Purchase Orders,Peringatkan untuk Pesanan Pembelian baru
DocType: Quality Inspection Reading,Reading 9,Membaca 9
DocType: Supplier,Is Frozen,Dibekukan
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,gudang kelompok simpul tidak diperbolehkan untuk memilih untuk transaksi
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,gudang kelompok simpul tidak diperbolehkan untuk memilih untuk transaksi
DocType: Buying Settings,Buying Settings,Setting Pembelian
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,No. BOM untuk Barang Jadi
DocType: Upload Attendance,Attendance To Date,Kehadiran Sampai Tanggal
@ -2764,6 +2769,7 @@ DocType: Offer Letter,Accepted,Diterima
DocType: Grant Application,Organization,Organisasi
DocType: BOM Update Tool,BOM Update Tool,Alat Pembaruan BOM
DocType: SG Creation Tool Course,Student Group Name,Nama Kelompok Mahasiswa
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,Tampilkan tampilan yang meledak
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,Menciptakan Biaya
apps/erpnext/erpnext/setup/doctype/company/company.js +91,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.,Pastikan Anda benar-benar ingin menghapus semua transaksi untuk perusahaan ini. Data master Anda akan tetap seperti itu. Tindakan ini tidak bisa dibatalkan.
DocType: Room,Room Number,Nomor kamar
@ -2774,7 +2780,7 @@ DocType: Journal Entry Account,Payroll Entry,Entri Penggajian
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,Buat Template Pajak
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,Forum pengguna
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,Bahan baku tidak boleh kosong.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","Tidak bisa memperbarui persediaan, faktur berisi barang titipan."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","Tidak bisa memperbarui persediaan, faktur berisi barang titipan."
DocType: Lab Test Sample,Lab Test Sample,Sampel Uji Lab
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,Jurnal Entry Cepat
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,Anda tidak dapat mengubah kurs jika BOM disebutkan atas tiap barang
@ -2845,7 +2851,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,USD
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,Membuat Invoice
DocType: Selling Settings,Auto close Opportunity after 15 days,Auto Peluang dekat setelah 15 hari
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Pesanan Pembelian tidak diizinkan untuk {0} karena kartu skor berdiri {1}.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Pesanan Pembelian tidak diizinkan untuk {0} karena kartu skor berdiri {1}.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,akhir Tahun
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Penawaran/Prospek %
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,Kontrak Tanggal Akhir harus lebih besar dari Tanggal Bergabung
@ -2957,7 +2963,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90-ke atas
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,Row # {0}: Journal Entri {1} tidak memiliki akun {2} atau sudah cocok dengan voucher lain
DocType: Supplier Scorecard Criteria,Criteria Weight,Kriteria Berat
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Supplier&gt; Supplier Type
DocType: Buying Settings,Default Buying Price List,Standar Membeli Daftar Harga
DocType: Payroll Entry,Salary Slip Based on Timesheet,Slip Gaji Berdasarkan Daftar Absen
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,Tingkat pembelian
@ -3045,7 +3050,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,Lacak Prospek menurut Jenis Industri.
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,Pergi ke kop surat
DocType: Item Supplier,Item Supplier,Item Supplier
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,Entrikan Item Code untuk mendapatkan bets tidak
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,Entrikan Item Code untuk mendapatkan bets tidak
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},Silakan pilih nilai untuk {0} quotation_to {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,Semua Alamat
DocType: Company,Stock Settings,Pengaturan Persediaan
@ -3222,6 +3227,7 @@ DocType: Employee Loan,Loan Details,Detail pinjaman
DocType: Company,Default Inventory Account,Akun Inventaris Default
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,Row {0}: Selesai Qty harus lebih besar dari nol.
DocType: Antibiotic,Antibiotic Name,Nama Antibiotik
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Item Code&gt; Item Group&gt; Brand
DocType: Purchase Invoice,Apply Additional Discount On,Terapkan tambahan Diskon Pada
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,Pilih Jenis ...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,Tautan ke semua Unit Tanah tempat Tanaman tumbuh
@ -3415,6 +3421,7 @@ DocType: Guardian Student,Guardian Student,wali Mahasiswa
DocType: Supplier,Credit Limit,Batas Kredit
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,Rata-rata Tarif Daftar Harga Jual
DocType: Production Plan Sales Order,Salse Order Date,Salse Urutan Tanggal
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Supplier&gt; Supplier Type
DocType: Salary Component,Salary Component,Komponen gaji
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,Entries pembayaran {0} adalah un-linked
DocType: GL Entry,Voucher No,Voucher Tidak ada
@ -3423,7 +3430,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,Paling populer
DocType: Leave Allocation,Leave Allocation,Alokasi Cuti
DocType: Payment Request,Recipient Message And Payment Details,Penerima Pesan Dan Rincian Pembayaran
DocType: Training Event,Trainer Email,Email Pelatih
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,Permintaan Material {0} dibuat
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,Permintaan Material {0} dibuat
DocType: Restaurant Reservation,No of People,Tidak ada orang
DocType: Production Planning Tool,Include sub-contracted raw materials,Termasuk bahan baku sub-kontrak
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,Template istilah atau kontrak.
@ -3487,7 +3494,7 @@ DocType: Landed Cost Item,Receipt Document,Dokumen penerimaan
DocType: Production Planning Tool,Create Material Requests,Buat Order Permintaan Material
DocType: Employee Education,School/University,Sekolah / Universitas
DocType: Payment Request,Reference Details,Detail referensi
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,Nilai diharapkan Setelah Hidup Berguna harus kurang dari Gross Jumlah Pembelian
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,Nilai diharapkan Setelah Hidup Berguna harus kurang dari Gross Jumlah Pembelian
DocType: Sales Invoice Item,Available Qty at Warehouse,Jumlah Tersedia di Gudang
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,Nilai Tagihan
DocType: Asset,Double Declining Balance,Ganda Saldo Menurun
@ -3499,7 +3506,7 @@ DocType: Attendance,On Leave,Sedang cuti
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,Dapatkan Perbaruan
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: Akun {2} bukan milik Perusahaan {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,Pilih setidaknya satu nilai dari masing-masing atribut.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,Permintaan Material {0} dibatalkan atau dihentikan
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,Permintaan Material {0} dibatalkan atau dihentikan
apps/erpnext/erpnext/config/hr.py +310,Leave Management,Manajemen Cuti
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,Group by Akun
DocType: Sales Order,Fully Delivered,Sepenuhnya Terkirim
@ -3510,14 +3517,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},Dicairkan Jumlah tidak dapat lebih besar dari Jumlah Pinjaman {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,Buka Program
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},Baris {0} # Jumlah alokasi {1} tidak boleh lebih besar dari jumlah yang tidak diklaim {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Silakan setup seri penomoran untuk Kehadiran melalui Setup&gt; Numbering Series
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},Nomor Purchase Order yang diperlukan untuk Item {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,Pesanan produksi tidak diciptakan
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','Tanggal Mulai' harus sebelum 'Tanggal Akhir'
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},tidak dapat mengubah status sebagai mahasiswa {0} terkait dengan aplikasi mahasiswa {1}
DocType: Asset,Fully Depreciated,sepenuhnya disusutkan
,Stock Projected Qty,Proyeksi Jumlah Persediaan
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},Pelanggan {0} tidak termasuk proyek {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},Pelanggan {0} tidak termasuk proyek {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,Kehadiran ditandai HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers","Penawaran adalah proposal, tawaran yang anda kirim kepada pelanggan"
DocType: Sales Order,Customer's Purchase Order,Order Pembelian Pelanggan
@ -3601,7 +3607,7 @@ DocType: Salary Slip,Hour Rate,Nilai per Jam
DocType: Stock Settings,Item Naming By,Item Penamaan Dengan
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},Lain Periode Pendaftaran penutupan {0} telah dibuat setelah {1}
DocType: Production Order,Material Transferred for Manufacturing,Bahan Ditransfer untuk Manufaktur
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,Akun {0} tidak ada
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,Akun {0} tidak ada
DocType: Project,Project Type,Jenis proyek
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,Tugas Anak ada untuk Tugas ini. Anda tidak dapat menghapus tugas ini.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,Entah Target qty atau jumlah target adalah wajib.
@ -3703,11 +3709,11 @@ DocType: C-Form,I,saya
DocType: Company,Asset Depreciation Cost Center,Asset Pusat Penyusutan Biaya
DocType: Sales Order Item,Sales Order Date,Tanggal Nota Penjualan
DocType: Sales Invoice Item,Delivered Qty,Qty Terkirim
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,Total Excl. Pajak
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","Jika dicentang, semua anak-anak dari setiap item produksi akan dimasukkan dalam Permintaan Material."
DocType: Assessment Plan,Assessment Plan,Rencana penilaian
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,Pelanggan {0} dibuat
DocType: Stock Settings,Limit Percent,batas Persen
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Silakan setup Sistem Penamaan Instruktur di Pendidikan&gt; Pengaturan Pendidikan
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,Saat ini tidak ada persediaan di gudang manapun
,Payment Period Based On Invoice Date,Masa Pembayaran Berdasarkan Faktur Tanggal
DocType: Sample Collection,No. of print,Jumlah cetak
@ -3723,12 +3729,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),Debitur ({0})
DocType: Pricing Rule,Margin,Margin
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,Pelanggan baru
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,Laba Kotor%
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,Laba Kotor%
DocType: Appraisal Goal,Weightage (%),Weightage (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,Ubah Profil POS
DocType: Bank Reconciliation Detail,Clearance Date,Izin Tanggal
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,Laporan Penilaian
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,Jumlah Pembelian kotor adalah wajib
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,Jumlah Pembelian kotor adalah wajib
DocType: Lead,Address Desc,Deskripsi Alamat
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,Partai adalah wajib
DocType: Journal Entry,JV-,JV-
@ -3760,7 +3766,6 @@ DocType: Account,Accumulated Depreciation,Akumulasi penyusutan
DocType: Supplier Scorecard Scoring Standing,Standing Name,Nama berdiri
DocType: Stock Entry,Customer or Supplier Details,Rincian Pelanggan atau Pemasok
DocType: Employee Loan Application,Required by Date,Dibutuhkan oleh Tanggal
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),Saldo Penutupan (Dr - Cr)
DocType: Lead,Lead Owner,Pemilik Prospek
DocType: Bin,Requested Quantity,diminta Kuantitas
DocType: Patient,Marital Status,Status Perkawinan
@ -3774,7 +3779,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,Beberapa varian
DocType: Sales Invoice,Against Income Account,Terhadap Akun Pendapatan
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% Terkirim
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Item {0}: qty Memerintahkan {1} tidak bisa kurang dari qty minimum order {2} (didefinisikan dalam Butir).
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Item {0}: qty Memerintahkan {1} tidak bisa kurang dari qty minimum order {2} (didefinisikan dalam Butir).
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,Bulanan Persentase Distribusi
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,Silahkan login sebagai pengguna lain.
DocType: Territory,Territory Targets,Target Wilayah
@ -3873,7 +3878,7 @@ DocType: Program Enrollment,School House,Asrama Sekolah
DocType: Serial No,Out of AMC,Dari AMC
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,Jumlah Penyusutan Memesan tidak dapat lebih besar dari total jumlah Penyusutan
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,Membuat Maintenance Visit
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,Silahkan hubungi untuk pengguna yang memiliki penjualan Guru Manajer {0} peran
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,Silahkan hubungi untuk pengguna yang memiliki penjualan Guru Manajer {0} peran
DocType: Company,Default Cash Account,Standar Rekening Kas
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,Perusahaan (bukan Pelanggan atau Pemasok) Utama.
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,Hal ini didasarkan pada kehadiran mahasiswa ini
@ -4023,7 +4028,6 @@ DocType: Delivery Note Item,From Warehouse,Dari Gudang
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,Tidak ada karyawan untuk kriteria tersebut
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,Tidak ada Item dengan Bill of Material untuk Industri
DocType: Restaurant,Default Customer,Pelanggan default
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Silakan setup Employee Naming System di Human Resource&gt; HR Settings
DocType: Assessment Plan,Supervisor Name,Nama pengawas
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,Jangan mengkonfirmasi jika janji dibuat untuk hari yang sama
DocType: Program Enrollment Course,Program Enrollment Course,Kursus Pendaftaran Program
@ -4141,7 +4145,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,Website Description
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,Perubahan Bersih Ekuitas
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,Terbaru
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,Batalkan Purchase Invoice {0} pertama
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,Batalkan Purchase Invoice {0} pertama
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","Alamat Email harus unik, sudah ada untuk {0}"
DocType: Serial No,AMC Expiry Date,Tanggal Kadaluarsa AMC
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,Penerimaan
@ -4158,7 +4162,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,Belum ada pela
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,Laporan arus kas
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},Jumlah Pinjaman tidak dapat melebihi Jumlah pinjaman maksimum {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,Lisensi
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},Hapus Invoice ini {0} dari C-Form {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},Hapus Invoice ini {0} dari C-Form {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,Silakan pilih Carry Teruskan jika Anda juga ingin menyertakan keseimbangan fiskal tahun sebelumnya cuti tahun fiskal ini
DocType: GL Entry,Against Voucher Type,Terhadap Tipe Voucher
DocType: Physician,Phone (R),Telepon (R)
@ -4170,7 +4174,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,B Negatif
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,Status Pemeliharaan harus Dibatalkan atau Selesai untuk Dikirim
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},Akun {0} bukan milik perusahaan {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,Nomor Seri di baris {0} tidak cocok dengan Catatan Pengiriman
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,Nomor Seri di baris {0} tidak cocok dengan Catatan Pengiriman
DocType: Student,Guardian Details,Detail wali
DocType: C-Form,C-Form,C-Form
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,Mark Kehadiran untuk beberapa karyawan
@ -4212,7 +4216,7 @@ DocType: Opening Invoice Creation Tool,Sales,Penjualan
DocType: Stock Entry Detail,Basic Amount,Nilai Dasar
DocType: Training Event,Exam,Ujian
DocType: Complaint,Complaint,Keluhan
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},Gudang diperlukan untuk Barang Persediaan{0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},Gudang diperlukan untuk Barang Persediaan{0}
DocType: Leave Allocation,Unused leaves,cuti terpakai
DocType: Patient,Alcohol Past Use,Penggunaan Alkohol yang Telah Lalu
DocType: Fertilizer Content,Fertilizer Content,Isi pupuk
@ -4336,6 +4340,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,Rumus
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,Serial #
DocType: Lab Test Template,Lab Test Template,Lab Test Template
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,Akun penjualan
DocType: Purchase Invoice Item,Total Weight,Berat keseluruhan
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,Komisi Penjualan
DocType: Offer Letter Term,Value / Description,Nilai / Keterangan
@ -4492,7 +4497,7 @@ Updated via 'Time Log'",di Menit Diperbarui melalui 'Log Waktu'
DocType: Customer,From Lead,Dari Prospek
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,Order dirilis untuk produksi.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,Pilih Tahun Anggaran ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,POS Profil diperlukan untuk membuat POS Entri
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,POS Profil diperlukan untuk membuat POS Entri
DocType: Program Enrollment Tool,Enroll Students,Daftarkan Siswa
DocType: Lab Test,Approved Date,Tanggal yang Disetujui
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,Standard Jual
@ -4568,7 +4573,7 @@ DocType: Employee,Held On,Diadakan Pada
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,Produksi Stok Barang
,Employee Information,Informasi Karyawan
DocType: Stock Entry Detail,Additional Cost,Biaya tambahan
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","Tidak dapat memfilter berdasarkan No. Voucher, jika dikelompokkan berdasarkan Voucher"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","Tidak dapat memfilter berdasarkan No. Voucher, jika dikelompokkan berdasarkan Voucher"
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,Membuat Pemasok Quotation
DocType: Quality Inspection,Incoming,Incoming
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,Template pajak default untuk penjualan dan pembelian telah dibuat.
@ -4585,7 +4590,7 @@ DocType: Batch,Batch ID,Batch ID
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},Catatan: {0}
,Delivery Note Trends,Tren pengiriman Note
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,Ringkasan minggu ini
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,Jumlah tersedia
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,Jumlah tersedia
DocType: Delivery Trip,Calculate Estimated Arrival Times,Hitung Perkiraan Waktu Kedatangan
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,Akun: {0} hanya dapat diperbarui melalui Transaksi Persediaan
DocType: Student Group Creation Tool,Get Courses,Dapatkan Program
@ -4601,7 +4606,7 @@ DocType: Purchase Order,To Bill,Bill
DocType: Material Request,% Ordered,% Tersusun
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.","Untuk Kelompok Siswa Berbasis Kursus, Kursus akan divalidasi untuk setiap Siswa dari Program Pendaftaran Pendaftaran Program yang terdaftar."
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,Pekerjaan yg dibayar menurut hasil yg dikerjakan
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,Harga Beli Rata-rata
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,Harga Beli Rata-rata
DocType: Task,Actual Time (in Hours),Waktu Aktual (dalam Jam)
DocType: Employee,History In Company,Sejarah Dalam Perusahaan
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},Pesan baru dari {sender}
@ -4649,7 +4654,7 @@ DocType: Asset Repair,Asset Repair,Perbaikan Aset
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},Row {0}: Mata dari BOM # {1} harus sama dengan mata uang yang dipilih {2}
DocType: Journal Entry Account,Exchange Rate,Nilai Tukar
DocType: Patient,Additional information regarding the patient,Informasi tambahan mengenai pasien
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,Order Penjualan {0} tidak Terkirim
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,Order Penjualan {0} tidak Terkirim
DocType: Homepage,Tag Line,klimaks
DocType: Fee Component,Fee Component,biaya Komponen
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,Manajemen armada
@ -4861,7 +4866,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,Penilaian Detil Hasil
DocType: Employee Education,Employee Education,Pendidikan Karyawan
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,Kelompok barang duplikat yang ditemukan dalam tabel grup item
DocType: Land Unit,Parent Land Unit,Unit Induk Tanah
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,Hal ini diperlukan untuk mengambil Item detail.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,Hal ini diperlukan untuk mengambil Item detail.
DocType: Fertilizer,Fertilizer Name,Nama pupuk
DocType: Salary Slip,Net Pay,Nilai Bersih Terbayar
DocType: Account,Account,Akun
@ -4940,7 +4945,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),Jumlah Aktual (di sumb
DocType: Item Customer Detail,Ref Code,Ref Kode
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,Grup Pelanggan Diperlukan di Profil POS
apps/erpnext/erpnext/config/hr.py +12,Employee records.,Catatan karyawan.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,Silahkan mengatur Berikutnya Penyusutan Tanggal
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,Silahkan mengatur Berikutnya Penyusutan Tanggal
DocType: HR Settings,Payroll Settings,Pengaturan Payroll
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,Cocokkan Faktur non-linked dan Pembayaran.
DocType: POS Settings,POS Settings,Pengaturan POS
@ -5107,7 +5112,7 @@ DocType: Item,Customer Code,Kode Pelanggan
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},Birthday Reminder untuk {0}
DocType: Asset Maintenance Task,Last Completion Date,Tanggal penyelesaian terakhir
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,Jumlah Hari Semenjak Order Terakhir
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,Debit Untuk akun harus rekening Neraca
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,Debit Untuk akun harus rekening Neraca
DocType: Buying Settings,Naming Series,Series Penamaan
DocType: Leave Block List,Leave Block List Name,Cuti Nama Block List
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,Tanggal asuransi mulai harus kurang dari tanggal asuransi End
@ -5234,6 +5239,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,Dapatkan Entries Pembayaran
DocType: Quotation Item,Against Docname,Terhadap Docname
DocType: SMS Center,All Employee (Active),Semua Karyawan (Aktif)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Pelanggan&gt; Grup Pelanggan&gt; Wilayah
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,Lihat Sekarang
DocType: BOM,Raw Material Cost,Biaya Bahan Baku
DocType: Item Reorder,Re-Order Level,Tingkat Re-order
@ -5332,7 +5338,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,Kapasitas tempat duduk
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,Kelompok Uji Lab
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Pelanggan&gt; Grup Pelanggan&gt; Wilayah
DocType: Project,Total Expense Claim (via Expense Claims),Jumlah Klaim Beban (via Klaim Beban)
DocType: GST Settings,GST Summary,Ringkasan GST
DocType: Assessment Result,Total Score,Skor total
@ -5345,7 +5350,7 @@ DocType: Batch,Source Document Type,Jenis Dokumen Sumber
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,Jadwal kursus berikut telah dibuat
DocType: Journal Entry,Total Debit,Jumlah Debit
DocType: Manufacturing Settings,Default Finished Goods Warehouse,Gudang bawaan Selesai Stok Barang
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,Sales Person
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,Sales Person
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,Anggaran dan Pusat Biaya
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,Beberapa modus pembayaran default tidak diperbolehkan
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,Untuk
@ -5518,7 +5523,7 @@ DocType: Program,Program Name,Program Nama
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Pertimbangkan Pajak atau Biaya untuk
DocType: Driver,Driving License Category,Kategori Lisensi Mengemudi
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,Qty Aktual wajib diisi
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} saat ini memiliki posisi Scorecard Pemasok {1}, Pesanan Pembelian untuk pemasok ini harus dikeluarkan dengan hati-hati."
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} saat ini memiliki posisi Scorecard Pemasok {1}, Pesanan Pembelian untuk pemasok ini harus dikeluarkan dengan hati-hati."
DocType: Asset Maintenance Team,Asset Maintenance Team,Tim Pemeliharaan Aset
DocType: Employee Loan,Loan Type,Jenis pinjaman
DocType: Scheduling Tool,Scheduling Tool,Alat penjadwalan

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,Lab Prescription
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,Raða eftir Verð
,Delay Days,Frestur daga
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,þjónusta Expense
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},Raðnúmer: {0} er nú þegar vísað í sölureikning: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},Raðnúmer: {0} er nú þegar vísað í sölureikning: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,reikningur
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,Gerðu varðveisluvörslu
DocType: Purchase Invoice Item,Item Weight Details,Vara þyngd upplýsingar
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,Parent Detail DOCNAME
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","Tilvísun: {0}, Liður: {1} og Viðskiptavinur: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,kg
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,Opnun fyrir Job.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},BOM er ekki tilgreint fyrir undirverktaka atriði {0} í röð {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},BOM er ekki tilgreint fyrir undirverktaka atriði {0} í röð {1}
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} Niðurstöður sendar inn
DocType: Item Attribute,Increment,vöxtur
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,Tímabil
@ -150,7 +150,7 @@ DocType: Patient,Married,giftur
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},Ekki leyft {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,Fá atriði úr
DocType: Price List,Price Not UOM Dependant,Verð ekki UOM háð
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},Stock Ekki er hægt að uppfæra móti afhendingarseðlinum {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},Stock Ekki er hægt að uppfæra móti afhendingarseðlinum {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},Vara {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,Engin atriði skráð
DocType: Asset Repair,Error Description,Villa lýsing
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,sætta
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,matvöruverslun
DocType: Quality Inspection Reading,Reading 1,lestur 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,lífeyrissjóðir
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,Næsta Afskriftir Dagsetning má ekki vera áður kaupdegi
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,Næsta Afskriftir Dagsetning má ekki vera áður kaupdegi
DocType: Crop,Perennial,Ævarandi
DocType: Consultation,Consultation Date,Samráðsdagur
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,Vörulisti og uppgötvun fyrir ERPNext notendur
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,Skrifaðu Off Kostnaður Center
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""",td &quot;Primary School&quot; eða &quot;University&quot;
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,lager Skýrslur
DocType: Warehouse,Warehouse Detail,Warehouse Detail
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},Hámarksupphæð hefur verið yfir fyrir viðskiptavin {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},Hámarksupphæð hefur verið yfir fyrir viðskiptavin {0} {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,Hugtakið Lokadagur getur ekki verið síðar en árslok Dagsetning skólaárið sem hugtakið er tengt (skólaárið {}). Vinsamlega leiðréttu dagsetningar og reyndu aftur.
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","&quot;Er Fast Asset&quot; getur ekki verið valið, eins Asset met hendi á móti hlut"
DocType: Delivery Trip,Departure Time,Brottfaratími
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,Student Log
DocType: Quality Inspection,Get Specification Details,Fá upplýsingar eru
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,Sniðmát af birgðastöðu.
DocType: Lead,Interested,áhuga
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,opnun
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,opnun
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},Frá {0} til {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,Mistókst að setja upp skatta
DocType: Item,Copy From Item Group,Afrita Frá Item Group
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,Létta Dagsetning verður að vera hærri en Dagsetning Tengja
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,Leaves á ári
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,Row {0}: Vinsamlegast athugaðu &#39;Er Advance&#39; gegn reikninginn {1} ef þetta er fyrirfram færslu.
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},Warehouse {0} ekki tilheyra félaginu {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},Warehouse {0} ekki tilheyra félaginu {1}
DocType: Email Digest,Profit & Loss,Hagnaður &amp; Tap
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,Litre
DocType: Task,Total Costing Amount (via Time Sheet),Total kostnaðarútreikninga Magn (með Time Sheet)
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,Röð og upphæð
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,Þetta byggist á viðskiptum gegn þessu fyrirtæki. Sjá tímalínu fyrir neðan til að fá nánari upplýsingar
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Tilkynna með tölvupósti á sköpun sjálfvirka Material Beiðni
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,Þola
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Samráð
DocType: Journal Entry,Multi Currency,multi Gjaldmiðill
DocType: Opening Invoice Creation Tool,Invoice Type,Reikningar Type
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,Afhendingarseðilinn
@ -528,7 +529,6 @@ DocType: Email Digest,Credit Balance,Inneignin
DocType: Employee,Widowed,Ekkja
DocType: Request for Quotation,Request for Quotation,Beiðni um tilvitnun
DocType: Healthcare Settings,Require Lab Test Approval,Krefjast samþykkis Lab Test
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Vörunúmer&gt; Liðurhópur&gt; Vörumerki
DocType: Salary Slip Timesheet,Working Hours,Vinnutími
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,Samtals framúrskarandi
DocType: Naming Series,Change the starting / current sequence number of an existing series.,Breyta upphafsdegi / núverandi raðnúmer núverandi röð.
@ -557,7 +557,7 @@ DocType: Subscription,Yearly,Árlega
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,Vinsamlegast sláðu Kostnaður Center
DocType: Drug Prescription,Dosage,Skammtar
DocType: Journal Entry Account,Sales Order,Sölupöntun
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,Avg. sölugengi
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,Avg. sölugengi
DocType: Assessment Plan,Examiner Name,prófdómari Name
DocType: Lab Test Template,No Result,engin Niðurstaða
DocType: Purchase Invoice Item,Quantity and Rate,Magn og Rate
@ -605,6 +605,7 @@ DocType: Employee,Health Concerns,Heilsa Áhyggjuefni
DocType: Payroll Entry,Select Payroll Period,Veldu Launaskrá Tímabil
DocType: Purchase Invoice,Unpaid,ógreitt
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,Frátekið til sölu
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Vinsamlega settu upp starfsmannamiðlunarkerfi í mannauði&gt; HR-stillingar
DocType: Packing Slip,From Package No.,Frá pakkinn nr
DocType: Item Attribute,To Range,til Hóflegt
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,Verðbréfa
@ -629,11 +630,11 @@ DocType: Pricing Rule,Valid Upto,gildir uppí
DocType: Training Event,Workshop,Workshop
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,Varið innkaupapantanir
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,Listi nokkrar af viðskiptavinum þínum. Þeir gætu verið stofnanir eða einstaklingar.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,Nóg Varahlutir til að byggja
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,Nóg Varahlutir til að byggja
DocType: POS Profile User,POS Profile User,POS prófíl notandi
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,bein Tekjur
DocType: Patient Appointment,Date TIme,Dagsetning Tími
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","Getur ekki síað byggð á reikning, ef flokkaðar eftir reikningi"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","Getur ekki síað byggð á reikning, ef flokkaðar eftir reikningi"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,Administrative Officer
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,Uppsetning fyrirtækja og skatta
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,Vinsamlegast veldu Námskeið
@ -643,7 +644,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,munurinn Reikningur
DocType: Purchase Invoice,Supplier GSTIN,Birgir GSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,Get ekki loka verkefni eins háð verkefni hennar {0} er ekki lokað.
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,Vinsamlegast sláðu Warehouse sem efni Beiðni verði hækkað
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,Vinsamlegast sláðu Warehouse sem efni Beiðni verði hækkað
DocType: Production Order,Additional Operating Cost,Viðbótarupplýsingar rekstrarkostnaður
DocType: Lab Test Template,Lab Routine,Lab Routine
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,snyrtivörur
@ -811,7 +812,7 @@ DocType: Employee,Passport Number,Vegabréfs númer
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Tengsl Guardian2
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,framkvæmdastjóri
DocType: Payment Entry,Payment From / To,Greiðsla Frá / Til
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Ný hámarksupphæð er minna en núverandi útistandandi upphæð fyrir viðskiptavininn. Hámarksupphæð þarf að vera atleast {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Ný hámarksupphæð er minna en núverandi útistandandi upphæð fyrir viðskiptavininn. Hámarksupphæð þarf að vera atleast {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},Vinsamlegast settu inn reikning í vörugeymslu {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,"""Byggt á' og 'hópað eftir' getur ekki verið það sama"
DocType: Sales Person,Sales Person Targets,Velta Person markmið
@ -822,7 +823,7 @@ DocType: Lab Test Template,Compound,Efnasamband
DocType: Student Batch Name,Batch Name,hópur Name
DocType: Fee Validity,Max number of visit,Hámarksfjöldi heimsókna
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,Timesheet búið:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},Vinsamlegast settu sjálfgefinn Cash eða bankareikning í háttur á greiðslu {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},Vinsamlegast settu sjálfgefinn Cash eða bankareikning í háttur á greiðslu {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,innritast
DocType: GST Settings,GST Settings,GST Stillingar
DocType: Selling Settings,Customer Naming By,Viðskiptavinur Nafngift By
@ -946,7 +947,7 @@ DocType: Delivery Note,Customer's Purchase Order No,Purchase Order No viðskipta
DocType: Budget,Budget Against,Budget Against
DocType: Employee,Cell Number,Cell Number
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,Það er engin starfsmaður fyrir tiltekin skilyrði. Athugaðu að launagreiðslur hafi ekki þegar verið búnar til.
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,Auto Efni Beiðnir Myndað
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,Auto Efni Beiðnir Myndað
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,Lost
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,Þú getur ekki slá núverandi skírteini í &quot;Against dagbókarfærslu &#39;dálki
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,Frátekið fyrir framleiðslu
@ -954,7 +955,7 @@ DocType: Soil Texture,Sand,Sandur
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,Orka
DocType: Opportunity,Opportunity From,tækifæri Frá
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,Mánaðarlaun yfirlýsingu.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Row {0}: {1} Raðnúmer er nauðsynlegt fyrir lið {2}. Þú hefur veitt {3}.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Row {0}: {1} Raðnúmer er nauðsynlegt fyrir lið {2}. Þú hefur veitt {3}.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,Vinsamlegast veldu töflu
DocType: BOM,Website Specifications,Vefsíða Upplýsingar
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} er ógilt netfang í &#39;viðtakendum&#39;
@ -1023,7 +1024,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,Tilvitnun
DocType: Vital Signs,Heart Rate / Pulse,Hjartsláttur / púls
DocType: Company,Default Bank Account,Sjálfgefið Bank Account
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","Að sía byggt á samningsaðila, velja Party Sláðu fyrst"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","Að sía byggt á samningsaðila, velja Party Sláðu fyrst"
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},&#39;Uppfæra Stock&#39; Ekki er hægt að athuga vegna þess að hlutir eru ekki send með {0}
DocType: Vehicle,Acquisition Date,yfirtökudegi
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,nos
@ -1047,7 +1048,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),Hladdu bréfshöfuðinu þínu (Haltu því á vefnum vingjarnlegur og 900px með 100px)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: Account {2} getur ekki verið Group
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,Liður Row {idx}: {DOCTYPE} {DOCNAME} er ekki til í að ofan &#39;{DOCTYPE}&#39; borð
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,Timesheet {0} er þegar lokið eða hætt
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,Timesheet {0} er þegar lokið eða hætt
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,Engin verkefni
DocType: Item Variant Settings,Copy Fields to Variant,Afritaðu reiti í afbrigði
DocType: Asset,Opening Accumulated Depreciation,Opnun uppsöfnuðum afskriftum
@ -1159,9 +1160,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,Plan efni fyrir undireiningum
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,Velta Partners og Territory
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,BOM {0} verður að vera virkt
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),Lokun (Opnun + Samtals)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),Lokun (Opnun + Samtals)
DocType: Journal Entry,Depreciation Entry,Afskriftir Entry
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Vinsamlegast veldu tegund skjals fyrst
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,Prenta í reiknings Gjaldmiðill
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Hætta Efni Heimsóknir {0} áður hætta þessu Viðhald Farðu
DocType: Crop Cycle,ISO 8016 standard,ISO 8016 staðall
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},Serial Nei {0} ekki tilheyra lið {1}
@ -1187,7 +1189,7 @@ DocType: Purchase Receipt,Range,Range
DocType: Supplier,Default Payable Accounts,Sjálfgefin greiðast reikningar
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,Starfsmaður {0} er ekki virkur eða er ekki til
DocType: Fee Structure,Components,Hluti
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},Vinsamlegast sláðu eignaflokki í lið {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},Vinsamlegast sláðu eignaflokki í lið {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,Liður Afbrigði {0} uppfærð
DocType: Quality Inspection Reading,Reading 6,lestur 6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1239,6 +1241,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,nafn fyrirtækis
DocType: SMS Center,Total Message(s),Total Message (s)
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,Veldu Atriði til flutnings
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Vinsamlegast settu Nöfnunarröð fyrir {0} í gegnum Skipulag&gt; Stillingar&gt; Nöfnunarröð
DocType: Purchase Invoice,Additional Discount Percentage,Viðbótarupplýsingar Afsláttur Hlutfall
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,Skoða lista yfir öll hjálparefni myndbönd
DocType: Agriculture Analysis Criteria,Soil Texture,Jarðvegur áferð
@ -1266,7 +1269,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,BOM Website Item
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,Hlaða bréf höfuðið og merki. (Þú getur breytt þeim síðar).
DocType: Timesheet Detail,Bill,Bill
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,Næsta Afskriftir Date er færður sem síðasta dags
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,Næsta Afskriftir Date er færður sem síðasta dags
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,White
DocType: SMS Center,All Lead (Open),Allt Lead (Open)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),Row {0}: Magn er ekki í boði fyrir {4} í vöruhús {1} á að senda sinn færslunnar ({2} {3})
@ -1282,7 +1285,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,Næsta samband við þann
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,opnun Magn
DocType: Healthcare Settings,Appointment Reminder,Tilnefning tilnefningar
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,Vinsamlegast sláðu inn reikning fyrir Change Upphæð
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,Vinsamlegast sláðu inn reikning fyrir Change Upphæð
DocType: Program Enrollment Tool Student,Student Batch Name,Student Hópur Name
DocType: Consultation,Doctor,Læknir
DocType: Holiday List,Holiday List Name,Holiday List Nafn
@ -1298,6 +1301,7 @@ DocType: Patient,Patient Relation,Sjúklingar Tengsl
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,Skildu Úthlutun Tól
DocType: Item,Hub Category to Publish,Hub Flokkur til birtingar
DocType: Leave Block List,Leave Block List Dates,Skildu Block Listi Dagsetningar
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Vinsamlegast settu upp flokkunarnúmer fyrir þátttöku í gegnum skipulag&gt; Numbers Series
DocType: Sales Invoice,Billing Address GSTIN,Innheimtu Heimilisfang GSTIN
DocType: Assessment Plan,Evaluate,Meta
DocType: Workstation,Net Hour Rate,Net Hour Rate
@ -1331,7 +1335,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,Kvittun Item
DocType: Purchase Receipt,PREC-RET-,PREC-RET-
DocType: POS Profile,Sales Invoice Payment,Velta Invoice Greiðsla
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,Frátekin Warehouse í Velta Order / Finished Goods Warehouse
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,selja Upphæð
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,selja Upphæð
DocType: Repayment Schedule,Interest Amount,vextir Upphæð
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,Þú ert kostnað samþykkjari fyrir þessa færslu. Uppfærðu &#39;Staða&#39; og Vista
DocType: Serial No,Creation Document No,Creation Skjal nr
@ -1422,7 +1426,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,Opnun Bókhald Balance
,GST Sales Register,GST söluskrá
DocType: Sales Invoice Advance,Sales Invoice Advance,Velta Invoice Advance
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,Ekkert til að biðja
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,Ekkert til að biðja
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,Veldu lénin þín
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},Annar Budget met &#39;{0}&#39; er þegar til á móti {1} &#39;{2}&#39; fyrir reikningsár {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,Fields verður afritað aðeins á upphafinu.
@ -1432,11 +1436,11 @@ DocType: Cheque Print Template,Payer Settings,greiðandi Stillingar
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","Þetta verður bætt við Item Code afbrigði. Til dæmis, ef skammstöfun er &quot;SM&quot;, og hluturinn kóða er &quot;T-bolur&quot;, hluturinn kóðann um afbrigði verður &quot;T-bolur-SM&quot;"
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,Net Borga (í orðum) verður sýnileg þegar þú hefur vistað Laun Slip.
DocType: Purchase Invoice,Is Return,er aftur
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,Varúð
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,Varúð
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,Return / skuldfærslu Note
DocType: Price List Country,Price List Country,Verðskrá Country
DocType: Item,UOMs,UOMs
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} gild raðnúmer nos fyrir lið {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} gild raðnúmer nos fyrir lið {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Item Code er ekki hægt að breyta fyrir Raðnúmer
DocType: Purchase Invoice Item,UOM Conversion Factor,UOM viðskipta Factor
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,Vinsamlegast sláðu Item Code til að fá lotunúmer
@ -1540,7 +1544,7 @@ DocType: Journal Entry,Get Outstanding Invoices,Fá útistandandi reikninga
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,Velta Order {0} er ekki gilt
DocType: Supplier Scorecard,Warn for new Request for Quotations,Varið við nýja beiðni um tilboðsyfirlit
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,Kaup pantanir hjálpa þér að skipuleggja og fylgja eftir kaupum þínum
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","Því miður, fyrirtæki geta ekki vera sameinuð"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","Því miður, fyrirtæki geta ekki vera sameinuð"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,Lab Test Prescriptions
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",Heildarkostnaður Issue / Transfer magn {0} í efni Beiðni {1} \ má ekki vera meiri en óskað magn {2} fyrir lið {3}
@ -1578,7 +1582,6 @@ DocType: Vehicle,Fuel UOM,eldsneyti UOM
DocType: Warehouse,Warehouse Contact Info,Warehouse Contact Info
DocType: Payment Entry,Write Off Difference Amount,Skrifaðu Off Mismunur Upphæð
DocType: Volunteer,Volunteer Name,Sjálfboðaliðanöfn
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Vinsamlegast skipulag kennari Nafnakerfi í menntun&gt; Menntun
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0}: Starfsmaður tölvupósti fannst ekki, þess vegna email ekki sent"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},Sendingarregla gildir ekki fyrir land {0}
DocType: Item,Foreign Trade Details,Foreign Trade Upplýsingar
@ -1590,7 +1593,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,Group Roll Number
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry","Fyrir {0}, aðeins kredit reikninga er hægt að tengja við aðra gjaldfærslu"
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,Alls öllum verkefni lóðum skal vera 1. Stilltu vigta allar verkefni verkefni í samræmi við
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,Afhending Note {0} er ekki lögð
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,Afhending Note {0} er ekki lögð
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,Liður {0} verður að vera Sub-dregist Item
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,Capital útbúnaður
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Verðlagning Regla er fyrst valið byggist á &#39;Virkja Á&#39; sviði, sem getur verið Item, Item Group eða Brand."
@ -1615,7 +1618,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,Barnið vöruhús er til fyrir þetta vöruhús. Þú getur ekki eytt þessari vöruhús.
DocType: Item,Website Item Groups,Vefsíða Item Hópar
DocType: Purchase Invoice,Total (Company Currency),Total (Company Gjaldmiðill)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,Raðnúmer {0} inn oftar en einu sinni
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,Raðnúmer {0} inn oftar en einu sinni
DocType: Journal Entry,Journal Entry,Dagbókarfærsla
DocType: Expense Claim Advance,Unclaimed amount,Óhæfð upphæð
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} atriði í gangi
@ -1711,7 +1714,7 @@ DocType: Email Digest,For Company,Company
apps/erpnext/erpnext/config/support.py +17,Communication log.,Samskipti þig.
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.","Beiðni um tilvitnun er óvirk til að fá aðgang frá vefsíðunni, fyrir meira Check vefgáttinni stillingar."
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,Birgir Scorecard Scoring Variable
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,Kaup Upphæð
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,Kaup Upphæð
DocType: Sales Invoice,Shipping Address Name,Sendingar Address Nafn
DocType: Material Request,Terms and Conditions Content,Skilmálar og skilyrði Content
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,Það voru villur að búa til námskeiði
@ -1974,7 +1977,7 @@ DocType: Expense Claim,Total Amount Reimbursed,Heildarfjárhæð Endurgreiða
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,Þetta er byggt á logs gegn þessu ökutæki. Sjá tímalínu hér fyrir nánari upplýsingar
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},Gegn Birgir Invoice {0} dagsett {1}
DocType: Customer,Default Price List,Sjálfgefið Verðskrá
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,Eignastýring Hreyfing met {0} búin
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,Eignastýring Hreyfing met {0} búin
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,Þú getur ekki eytt Fiscal Year {0}. Reikningsár {0} er sett sem sjálfgefið í Global Settings
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,Viðskiptavinur með sama nafni er þegar til
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,Þetta mun leggja inn launakostnað og búa til dagbókarfærslu. Viltu halda áfram?
@ -1988,6 +1991,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,verðlagning
DocType: Quotation,Term Details,Term Upplýsingar
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,Ekki er hægt að innritast meira en {0} nemendum fyrir þessum nemendahópi.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),Samtals (án skatta)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,Leiða Count
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} verður að vera hærri en 0
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,Tilboð í boði
@ -2006,7 +2010,6 @@ DocType: Lab Test,Technician Name,Nafn tæknimanns
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,Aftengja greiðsla á niðurfellingar Invoice
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},Núverandi kílómetramæli lestur inn ætti að vera hærri en upphaflega Ökutæki Kílómetrastaða {0}
DocType: Restaurant Reservation,No Show,Engin sýning
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Vinsamlegast settu Nöfnunarröð fyrir {0} í gegnum Skipulag&gt; Stillingar&gt; Nöfnunarröð
DocType: Shipping Rule Country,Shipping Rule Country,Sendingar Regla Country
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,Leyfi og Mæting
DocType: Maintenance Visit,Partially Completed,hluta Lokið
@ -2097,7 +2100,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,Nemandi hópur kennari
DocType: Grant Application,Assessment Mark (Out of 10),Námsmat (af 10)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 Mobile No
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,Main
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,Main
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,Variant
DocType: Naming Series,Set prefix for numbering series on your transactions,Setja forskeyti fyrir númerakerfi röð á viðskiptum þínum
DocType: Employee Attendance Tool,Employees HTML,starfsmenn HTML
@ -2145,7 +2148,7 @@ DocType: Crop,Crop Spacing,Crop Spacing
DocType: Course,Course Abbreviation,Auðvitað Skammstöfun
DocType: Student Leave Application,Student Leave Application,Student Leave Umsókn
DocType: Item,Will also apply for variants,Mun einnig gilda fyrir afbrigði
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","Eign er ekki hætt, eins og það er nú þegar {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","Eign er ekki hætt, eins og það er nú þegar {0}"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},Starfsmaður {0} á hálfan dag á {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},Samtals vinnutími ætti ekki að vera meiri en max vinnutíma {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,Á
@ -2329,9 +2332,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),Raunveruleg End Date (með Time Sheet)
DocType: Soil Texture,Soil Type,Jarðvegsgerð
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},Upphæð {0} {1} gegn {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,Ný skilaboð
,Quotation Trends,Tilvitnun Trends
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},Item Group ekki getið í master lið fyrir lið {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,Debit Til reikning verður að vera Krafa reikning
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,Debit Til reikning verður að vera Krafa reikning
DocType: Shipping Rule,Shipping Amount,Sendingar Upphæð
DocType: Supplier Scorecard Period,Period Score,Tímabilsstig
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,Bæta við viðskiptavinum
@ -2342,7 +2346,7 @@ DocType: Purchase Order,Delivered,afhent
,Vehicle Expenses,ökutæki Útgjöld
DocType: Serial No,Invoice Details,Reikningsupplýsingar
DocType: Grant Application,Show on Website,Sýna á heimasíðu
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},Væntanlegur gildi eftir nýtingartíma skal vera meiri en eða jafnt og {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},Væntanlegur gildi eftir nýtingartíma skal vera meiri en eða jafnt og {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,Byrjaðu á
DocType: Hub Category,Hub Category,Hub Flokkur
DocType: Purchase Invoice,SEZ,SEZ
@ -2373,7 +2377,7 @@ DocType: Patient,Patient Details,Sjúklingur Upplýsingar
DocType: Patient,B Positive,B Jákvæð
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","Row # {0}: Magn verður að vera 1, eins atriði er fastur eign. Notaðu sérstaka röð fyrir margar Magn."
DocType: Leave Block List Allow,Leave Block List Allow,Skildu Block List Leyfa
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,Skammstöfun má ekki vera autt eða bil
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,Skammstöfun má ekki vera autt eða bil
DocType: Patient Medical Record,Patient Medical Record,Sjúkratryggingaskrá
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,Group Non-Group
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,Íþróttir
@ -2423,6 +2427,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,Ekki er hægt að stilla móttekið RFQ til neins vitna
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,Samtals Frádráttur
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,Veldu reikning til að prenta í reiknings gjaldmiðli
,Production Analytics,framleiðslu Analytics
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,Þetta byggist á viðskiptum gegn þessum sjúklingum. Sjá tímalínu fyrir neðan til að fá nánari upplýsingar
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,kostnaður Uppfært
@ -2477,7 +2482,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,Variu
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,Veldu Company ...
DocType: Leave Control Panel,Leave blank if considered for all departments,Skildu eftir autt ef það er talið að öllum deildum
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","Tegundir ráðninga (varanleg, samningur, nemi o.fl.)."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} er nauðsynlegur fyrir lið {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} er nauðsynlegur fyrir lið {1}
DocType: Payroll Entry,Fortnightly,hálfsmánaðarlega
DocType: Currency Exchange,From Currency,frá Gjaldmiðill
DocType: Vital Signs,Weight (In Kilogram),Þyngd (í kílógramm)
@ -2553,7 +2558,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),Basic Magn (Company Gjal
DocType: Student,Guardians,forráðamenn
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,Verð verður ekki sýnd ef verðskrá er ekki sett
DocType: Stock Entry,Total Incoming Value,Alls Komandi Value
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,Skuldfærslu Til er krafist
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,Skuldfærslu Til er krafist
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Timesheets að halda utan um tíma, kostnað og innheimtu fyrir athafnir gert með lið"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,Kaupverðið List
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,Sniðmát af birgðatölumörkum.
@ -2654,7 +2659,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,Til viðmiðunar aðeins.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},Læknir {0} ekki fáanleg á {1}
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,Veldu lotu nr
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},Ógild {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},Ógild {0}: {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Fee Validity,Reference Inv,Tilvísun Inv
@ -2691,8 +2696,8 @@ DocType: Fees,Send Payment Request,Senda greiðslubók
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Tilgreina rekstur, rekstrarkostnaði og gefa einstakt notkun eigi að rekstri þínum."
DocType: Water Analysis,Origin,Uppruni
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,Þetta skjal er yfir mörkum með {0} {1} fyrir lið {4}. Ert þú að gera annað {3} gegn sama {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,Vinsamlegast settu endurtekin eftir vistun
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,Veldu breyting upphæð reiknings
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,Vinsamlegast settu endurtekin eftir vistun
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,Veldu breyting upphæð reiknings
DocType: Purchase Invoice,Price List Currency,Verðskrá Gjaldmiðill
DocType: Naming Series,User must always select,Notandi verður alltaf að velja
DocType: Stock Settings,Allow Negative Stock,Leyfa Neikvæð lager
@ -2748,7 +2753,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,Viðhald Dagskr
DocType: Supplier Scorecard,Warn for new Purchase Orders,Varið við nýjar innkaupapantanir
DocType: Quality Inspection Reading,Reading 9,lestur 9
DocType: Supplier,Is Frozen,er frosinn
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,Group hnút vöruhús er ekki leyft að velja fyrir viðskipti
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,Group hnút vöruhús er ekki leyft að velja fyrir viðskipti
DocType: Buying Settings,Buying Settings,Kaup Stillingar
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,BOM Nei fyrir Finished Good Item
DocType: Upload Attendance,Attendance To Date,Aðsókn að Dagsetning
@ -2762,6 +2767,7 @@ DocType: Offer Letter,Accepted,Samþykkt
DocType: Grant Application,Organization,Skipulag
DocType: BOM Update Tool,BOM Update Tool,BOM Update Tool
DocType: SG Creation Tool Course,Student Group Name,Student Group Name
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,Sýna sprauta skjá
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,Búa til gjöld
apps/erpnext/erpnext/setup/doctype/company/company.js +91,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.,Vinsamlegast vertu viss um að þú viljir virkilega að eyða öllum viðskiptum fyrir þetta fyrirtæki. stofngögn haldast eins og það er. Þessi aðgerð er ekki hægt að afturkalla.
DocType: Room,Room Number,Room Number
@ -2772,7 +2778,7 @@ DocType: Journal Entry Account,Payroll Entry,Launaskrá
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,Gerðu skattmálsgrein
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,User Forum
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,Hráefni má ekki vera auður.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","Gat ekki uppfært lager, reikningsnúmer inniheldur falla skipum hlut."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","Gat ekki uppfært lager, reikningsnúmer inniheldur falla skipum hlut."
DocType: Lab Test Sample,Lab Test Sample,Lab Test Dæmi
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,Quick Journal Entry
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,Þú getur ekki breytt hlutfall ef BOM getið agianst hvaða atriði
@ -2843,7 +2849,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,USD
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,Gerðu innheimtu
DocType: Selling Settings,Auto close Opportunity after 15 days,Auto nálægt Tækifæri eftir 15 daga
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Innkaupapantanir eru ekki leyfðar fyrir {0} vegna punkta sem standa upp á {1}.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Innkaupapantanir eru ekki leyfðar fyrir {0} vegna punkta sem standa upp á {1}.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,árslok
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Quot / Lead%
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,Samningur Lokadagur verður að vera hærri en Dagsetning Tengja
@ -2935,7 +2941,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90-Above
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,Row # {0}: Journal Entry {1} hefur ekki reikning {2} eða þegar samsvarandi gegn öðrum skírteini
DocType: Supplier Scorecard Criteria,Criteria Weight,Viðmiðunarþyngd
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Birgir&gt; Birgir Tegund
DocType: Buying Settings,Default Buying Price List,Sjálfgefið Buying Verðskrá
DocType: Payroll Entry,Salary Slip Based on Timesheet,Laun Slip Byggt á tímaskráningar
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,Kaupgengi
@ -3023,7 +3028,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,Track Vísbendingar um Industry tegund.
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,Farðu í Letterheads
DocType: Item Supplier,Item Supplier,Liður Birgir
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,Vinsamlegast sláðu Item Code til að fá lotu nr
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,Vinsamlegast sláðu Item Code til að fá lotu nr
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},Vinsamlegast veldu gildi fyrir {0} quotation_to {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,Öllum vistföngum.
DocType: Company,Stock Settings,lager Stillingar
@ -3200,6 +3205,7 @@ DocType: Employee Loan,Loan Details,lán Nánar
DocType: Company,Default Inventory Account,Sjálfgefin birgðareikningur
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,Row {0}: Lokið Magn verður að vera hærri en núll.
DocType: Antibiotic,Antibiotic Name,Name Sýklalyf
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Vörunúmer&gt; Liðurhópur&gt; Vörumerki
DocType: Purchase Invoice,Apply Additional Discount On,Berið Viðbótarupplýsingar afsláttur á
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,Veldu tegund ...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,Tengill til allra landsdeilda þar sem skógurinn er að vaxa
@ -3393,6 +3399,7 @@ DocType: Guardian Student,Guardian Student,Guardian Student
DocType: Supplier,Credit Limit,Skuldfærsluhámark
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,Meðaltal Selja Verðskrá Rate
DocType: Production Plan Sales Order,Salse Order Date,Salse Röð Dagsetning
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Birgir&gt; Birgir Tegund
DocType: Salary Component,Salary Component,laun Component
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,Greiðsla Færslur {0} eru un-tengd
DocType: GL Entry,Voucher No,skírteini nr
@ -3401,7 +3408,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,Vinsælast
DocType: Leave Allocation,Leave Allocation,Skildu Úthlutun
DocType: Payment Request,Recipient Message And Payment Details,Viðtakandinn Message og greiðsluskilmálar
DocType: Training Event,Trainer Email,þjálfari Email
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,Efni Beiðnir {0} búnar
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,Efni Beiðnir {0} búnar
DocType: Restaurant Reservation,No of People,Ekkert fólk
DocType: Production Planning Tool,Include sub-contracted raw materials,Fela undirverktaka hráefni
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,Snið af skilmálum eða samningi.
@ -3465,7 +3472,7 @@ DocType: Landed Cost Item,Receipt Document,kvittun Document
DocType: Production Planning Tool,Create Material Requests,Búa Efni beiðnum
DocType: Employee Education,School/University,Skóli / University
DocType: Payment Request,Reference Details,Tilvísun Upplýsingar
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,Væntanlegur Value Eftir nýtingartíma verður að vera minna en Gross kaupverði
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,Væntanlegur Value Eftir nýtingartíma verður að vera minna en Gross kaupverði
DocType: Sales Invoice Item,Available Qty at Warehouse,Laus Magn á Lager
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,billed Upphæð
DocType: Asset,Double Declining Balance,Tvöfaldur Minnkandi Balance
@ -3477,7 +3484,7 @@ DocType: Attendance,On Leave,Í leyfi
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,fá uppfærslur
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: Account {2} ekki tilheyra félaginu {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,Veldu að minnsta kosti eitt gildi af hverju eiginleiki.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,Efni Beiðni {0} er aflýst eða henni hætt
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,Efni Beiðni {0} er aflýst eða henni hætt
apps/erpnext/erpnext/config/hr.py +310,Leave Management,Skildu Stjórnun
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,Group eftir reikningi
DocType: Sales Order,Fully Delivered,Alveg Skilað
@ -3488,14 +3495,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},Andvirði lánsins getur ekki verið hærri en Lánsupphæðir {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,Fara í forrit
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},Rú {0} # Úthlutað magn {1} getur ekki verið hærra en óunnið magn {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Vinsamlegast settu upp flokkunarnúmer fyrir þátttöku í gegnum skipulag&gt; Numbers Series
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},Innkaupapöntunarnúmeri þarf fyrir lið {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,Framleiðsla Order ekki búin
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',&quot;Frá Dagsetning &#39;verður að vera eftir&#39; Til Dagsetning &#39;
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},Get ekki breytt stöðu sem nemandi {0} er tengd við beitingu nemandi {1}
DocType: Asset,Fully Depreciated,Alveg afskrifaðar
,Stock Projected Qty,Stock Áætlaðar Magn
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},Viðskiptavinur {0} ekki tilheyra verkefninu {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},Viðskiptavinur {0} ekki tilheyra verkefninu {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,Marked Aðsókn HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers",Tilvitnanir eru tillögur tilboðum þú sendir til viðskiptavina þinna
DocType: Sales Order,Customer's Purchase Order,Viðskiptavinar Purchase Order
@ -3579,7 +3585,7 @@ DocType: Salary Slip,Hour Rate,Hour Rate
DocType: Stock Settings,Item Naming By,Liður Nöfn By
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},Annar Tímabil Lokar Entry {0} hefur verið gert eftir {1}
DocType: Production Order,Material Transferred for Manufacturing,Efni flutt til framleiðslu
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,Reikningur {0} er ekki til
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,Reikningur {0} er ekki til
DocType: Project,Project Type,Project Type
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,Barnaskipti er til fyrir þetta verkefni. Þú getur ekki eytt þessu verkefni.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,Annaðhvort miða Magn eða miða upphæð er nauðsynlegur.
@ -3681,11 +3687,11 @@ DocType: C-Form,I,ég
DocType: Company,Asset Depreciation Cost Center,Eignastýring Afskriftir Kostnaður Center
DocType: Sales Order Item,Sales Order Date,Velta Order Dagsetning
DocType: Sales Invoice Item,Delivered Qty,Skilað Magn
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,Samtals Excl. Skattur
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.",Ef hakað öll börn hverri framleiðslueiningu atriði verður með í efninu beiðnir.
DocType: Assessment Plan,Assessment Plan,mat Plan
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,Viðskiptavinur {0} er búinn til.
DocType: Stock Settings,Limit Percent,Limit Percent
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Vinsamlegast skipulag kennari Nafnakerfi í menntun&gt; Menntun
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,Eins og er ekki birgðir í boði á hvaða vöruhúsi
,Payment Period Based On Invoice Date,Greiðsla Tímabil Byggt á reikningi Dagsetning
DocType: Sample Collection,No. of print,Fjöldi prenta
@ -3701,12 +3707,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),Skuldarar ({0})
DocType: Pricing Rule,Margin,spássía
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,ný Viðskiptavinir
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,Framlegð%
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,Framlegð%
DocType: Appraisal Goal,Weightage (%),Weightage (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,Breyta POS Profile
DocType: Bank Reconciliation Detail,Clearance Date,úthreinsun Dagsetning
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,Matsskýrsla
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,Gross Purchase Upphæð er nauðsynlegur
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,Gross Purchase Upphæð er nauðsynlegur
DocType: Lead,Address Desc,Heimilisfang karbósýklískan
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,Party er nauðsynlegur
DocType: Journal Entry,JV-,JV-
@ -3738,7 +3744,6 @@ DocType: Account,Accumulated Depreciation,uppsöfnuðum afskriftum
DocType: Supplier Scorecard Scoring Standing,Standing Name,Stöðugt nafn
DocType: Stock Entry,Customer or Supplier Details,Viðskiptavina eða Birgir Upplýsingar
DocType: Employee Loan Application,Required by Date,Krafist af Dagsetning
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),Lokajöfnuður (Dr - Cr)
DocType: Lead,Lead Owner,Lead Eigandi
DocType: Bin,Requested Quantity,Umbeðin Magn
DocType: Patient,Marital Status,Hjúskaparstaða
@ -3752,7 +3757,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,Margfeldi afbrigði
DocType: Sales Invoice,Against Income Account,Against þáttatekjum
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% Skilað
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Liður {0}: Pantaði Magn {1} má ekki vera minna en lágmarks röð Fjöldi {2} (sem skilgreindur er í lið).
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Liður {0}: Pantaði Magn {1} má ekki vera minna en lágmarks röð Fjöldi {2} (sem skilgreindur er í lið).
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,Mánaðarleg Dreifing Hlutfall
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,Vinsamlegast skráðu þig inn sem annar notandi.
DocType: Territory,Territory Targets,Territory markmið
@ -3851,7 +3856,7 @@ DocType: Program Enrollment,School House,School House
DocType: Serial No,Out of AMC,Út af AMC
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,Fjöldi Afskriftir bókað getur ekki verið meiri en heildarfjöldi Afskriftir
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,Gera Viðhald Heimsókn
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,Vinsamlegast hafðu samband við til notanda sem hefur sala Master Manager {0} hlutverki
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,Vinsamlegast hafðu samband við til notanda sem hefur sala Master Manager {0} hlutverki
DocType: Company,Default Cash Account,Sjálfgefið Cash Reikningur
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,Company (ekki viðskiptamenn eða birgja) skipstjóri.
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,Þetta er byggt á mætingu þessa Student
@ -4001,7 +4006,6 @@ DocType: Delivery Note Item,From Warehouse,frá Warehouse
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,Engar starfsmenn fyrir nefndar viðmiðanir
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,Engar Verk með Bill of Materials að Manufacture
DocType: Restaurant,Default Customer,Sjálfgefið viðskiptavinur
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Vinsamlega settu upp starfsmannamiðlunarkerfi í mannauði&gt; HR-stillingar
DocType: Assessment Plan,Supervisor Name,Umsjón Name
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,Ekki staðfestu ef skipun er búin til fyrir sama dag
DocType: Program Enrollment Course,Program Enrollment Course,Forritunarnámskeið
@ -4119,7 +4123,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,Vefsíða Lýsing
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,Net breyting á eigin fé
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,Nýjasta
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,Vinsamlegast hætta kaupa Reikningar {0} fyrst
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,Vinsamlegast hætta kaupa Reikningar {0} fyrst
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","Netfang verður að vera einstakt, þegar til fyrir {0}"
DocType: Serial No,AMC Expiry Date,AMC Fyrningardagsetning
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,kvittun
@ -4136,7 +4140,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,Engar viðskip
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,Sjóðstreymi
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},Lánið upphæð mega vera Hámarkslán af {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,License
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},Vinsamlegast fjarlægðu þennan reikning {0} úr C-Form {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},Vinsamlegast fjarlægðu þennan reikning {0} úr C-Form {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,Vinsamlegast veldu Yfirfæranlegt ef þú vilt líka að fela jafnvægi fyrra reikningsári er fer að þessu fjárhagsári
DocType: GL Entry,Against Voucher Type,Against Voucher Tegund
DocType: Physician,Phone (R),Sími (R)
@ -4148,7 +4152,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,B neikvæð
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,Viðhald Staða verður að vera Hætt eða lokið til að senda inn
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},Reikningur {0} er ekki tilheyrir fyrirtækinu {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,Raðnúmer í röð {0} samsvarar ekki við Afhendingartilkynningu
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,Raðnúmer í röð {0} samsvarar ekki við Afhendingartilkynningu
DocType: Student,Guardian Details,Guardian Upplýsingar
DocType: C-Form,C-Form,C-Form
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,Mark Mæting fyrir margar starfsmenn
@ -4190,7 +4194,7 @@ DocType: Opening Invoice Creation Tool,Sales,velta
DocType: Stock Entry Detail,Basic Amount,grunnfjárhæð
DocType: Training Event,Exam,Exam
DocType: Complaint,Complaint,Kvörtun
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},Warehouse krafist fyrir hlutabréfum lið {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},Warehouse krafist fyrir hlutabréfum lið {0}
DocType: Leave Allocation,Unused leaves,ónotuð leyfi
DocType: Patient,Alcohol Past Use,Áfengisnotkun áfengis
DocType: Fertilizer Content,Fertilizer Content,Áburður innihaldsefni
@ -4314,6 +4318,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,Formula
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,Serial #
DocType: Lab Test Template,Lab Test Template,Lab Test Sniðmát
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,Sölureikningur
DocType: Purchase Invoice Item,Total Weight,Heildarþyngd
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,Þóknun á sölu
DocType: Offer Letter Term,Value / Description,Gildi / Lýsing
@ -4470,7 +4475,7 @@ Updated via 'Time Log'",Fundargerðir Uppfært gegnum &#39;Time Innskráning &qu
DocType: Customer,From Lead,frá Lead
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,Pantanir út fyrir framleiðslu.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,Veldu fjárhagsársins ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,POS Profile þarf að gera POS Entry
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,POS Profile þarf að gera POS Entry
DocType: Program Enrollment Tool,Enroll Students,innritast Nemendur
DocType: Lab Test,Approved Date,Samþykkt dagsetning
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,Standard Selja
@ -4546,7 +4551,7 @@ DocType: Employee,Held On,Hélt í
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,framleiðsla Item
,Employee Information,starfsmaður Upplýsingar
DocType: Stock Entry Detail,Additional Cost,aukakostnaðar
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher",Getur ekki síað byggð á skírteini nr ef flokkaðar eftir skírteini
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher",Getur ekki síað byggð á skírteini nr ef flokkaðar eftir skírteini
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,Gera Birgir Tilvitnun
DocType: Quality Inspection,Incoming,Komandi
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,Sjálfgefin skatta sniðmát fyrir sölu og kaup eru búnar til.
@ -4562,7 +4567,7 @@ DocType: Batch,Batch ID,hópur ID
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},Ath: {0}
,Delivery Note Trends,Afhending Ath Trends
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,Samantekt Í þessari viku er
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,Á lager Magn
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,Á lager Magn
DocType: Delivery Trip,Calculate Estimated Arrival Times,Reikna áætlaðan komutíma
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,Reikningur: {0} Aðeins er hægt að uppfæra í gegnum lager Viðskipti
DocType: Student Group Creation Tool,Get Courses,fá Námskeið
@ -4578,7 +4583,7 @@ DocType: Purchase Order,To Bill,Bill
DocType: Material Request,% Ordered,% Pantaði
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.",Fyrir námsmiðaðan nemendahóp verður námskeiðið valið fyrir alla nemenda frá skráðum námskeiðum í námskrá.
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,ákvæðisvinnu
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,Avg. kaupgengi
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,Avg. kaupgengi
DocType: Task,Actual Time (in Hours),Tíminn (í klst)
DocType: Employee,History In Company,Saga In Company
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},Ný skilaboð frá {sendanda}
@ -4626,7 +4631,7 @@ DocType: Asset Repair,Asset Repair,Eignastýring
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},Row {0}: Gjaldmiðill af BOM # {1} ætti að vera jafn völdu gjaldmiðil {2}
DocType: Journal Entry Account,Exchange Rate,Exchange Rate
DocType: Patient,Additional information regarding the patient,Viðbótarupplýsingar um sjúklinginn
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,Velta Order {0} er ekki lögð
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,Velta Order {0} er ekki lögð
DocType: Homepage,Tag Line,tag Line
DocType: Fee Component,Fee Component,Fee Component
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,Lo Stjórn
@ -4838,7 +4843,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,Mat Niðurstaða Deta
DocType: Employee Education,Employee Education,starfsmaður Menntun
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,Afrit atriði hópur í lið töflunni
DocType: Land Unit,Parent Land Unit,Móðurhlutdeild
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,Það er nauðsynlegt að ná Item upplýsingar.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,Það er nauðsynlegt að ná Item upplýsingar.
DocType: Fertilizer,Fertilizer Name,Áburður Nafn
DocType: Salary Slip,Net Pay,Net Borga
DocType: Account,Account,Reikningur
@ -4917,7 +4922,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),Raunveruleg Magn (á u
DocType: Item Customer Detail,Ref Code,Ref Code
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,Viðskiptavinahópur er krafist í POS Profile
apps/erpnext/erpnext/config/hr.py +12,Employee records.,Employee færslur.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,Vinsamlegast settu Next Afskriftir Dagsetning
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,Vinsamlegast settu Next Afskriftir Dagsetning
DocType: HR Settings,Payroll Settings,launaskrá Stillingar
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,Passa non-tengd og greiðslur.
DocType: POS Settings,POS Settings,POS stillingar
@ -5084,7 +5089,7 @@ DocType: Item,Customer Code,viðskiptavinur Code
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},Afmæli Áminning fyrir {0}
DocType: Asset Maintenance Task,Last Completion Date,Síðasti lokadagur
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,Dagar frá síðustu Order
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,Debit Til reikning verður að vera Efnahagur reikning
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,Debit Til reikning verður að vera Efnahagur reikning
DocType: Buying Settings,Naming Series,nafngiftir Series
DocType: Leave Block List,Leave Block List Name,Skildu Block List Nafn
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,Tryggingar Start dagsetning ætti að vera minna en tryggingar lokadagsetning
@ -5210,6 +5215,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,Fá greiðslu færslur
DocType: Quotation Item,Against Docname,Against DOCNAME
DocType: SMS Center,All Employee (Active),Allt Starfsmaður (Active)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Viðskiptavinur&gt; Viðskiptavinahópur&gt; Territory
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,skoða Now
DocType: BOM,Raw Material Cost,Raw Material Kostnaður
DocType: Item Reorder,Re-Order Level,Re-Order Level
@ -5308,7 +5314,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,sætafjölda
DocType: Issue,ISS-,Út-
DocType: Lab Test Groups,Lab Test Groups,Lab Test Groups
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Viðskiptavinur&gt; Viðskiptavinahópur&gt; Territory
DocType: Project,Total Expense Claim (via Expense Claims),Total Expense Krafa (með kostnað kröfum)
DocType: GST Settings,GST Summary,GST Yfirlit
DocType: Assessment Result,Total Score,Total Score
@ -5321,7 +5326,7 @@ DocType: Batch,Source Document Type,Heimild skjal tegund
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,Eftirfarandi námskeið voru búnar til
DocType: Journal Entry,Total Debit,alls skuldfærsla
DocType: Manufacturing Settings,Default Finished Goods Warehouse,Sjálfgefin fullunnum Warehouse
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,Sölufulltrúa
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,Sölufulltrúa
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,Fjárhagsáætlun og kostnaður Center
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,Margfeldi sjálfgefið greiðslumáti er ekki leyfilegt
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,fyrir
@ -5494,7 +5499,7 @@ DocType: Program,Program Name,program Name
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Íhuga skatta og álaga fyrir
DocType: Driver,Driving License Category,Ökuskírteini Flokkur
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,Raunveruleg Magn er nauðsynlegur
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0} er nú með {1} Birgir Stuðningskort og kauptilboð til þessa birgis skulu gefin út með varúð.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0} er nú með {1} Birgir Stuðningskort og kauptilboð til þessa birgis skulu gefin út með varúð.
DocType: Asset Maintenance Team,Asset Maintenance Team,Eignastýringarteymi
DocType: Employee Loan,Loan Type,lán Type
DocType: Scheduling Tool,Scheduling Tool,Tímasetningar Tool

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,Prescrizione di laboratorio
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,Ordina per Prezzo
,Delay Days,Giorni di ritardo
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,spese per servizi
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},Numero di serie: {0} è già indicato nella fattura di vendita: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},Numero di serie: {0} è già indicato nella fattura di vendita: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,Fattura
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,Effettua la registrazione di stock di conservazione
DocType: Purchase Invoice Item,Item Weight Details,Dettagli peso articolo
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,Parent Dettaglio docname
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","Riferimento: {0}, codice dell&#39;articolo: {1} e cliente: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,Kg
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,Apertura di un lavoro.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},La distinta componenti non viene specificata per l&#39;articolo conto terzi {0} alla riga {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},La distinta componenti non viene specificata per l&#39;articolo conto terzi {0} alla riga {1}
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} Risultato inviato
DocType: Item Attribute,Increment,Incremento
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,Arco di tempo
@ -150,7 +150,7 @@ DocType: Patient,Married,Sposato
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},Non consentito per {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,Ottenere elementi dal
DocType: Price List,Price Not UOM Dependant,Prezzo non dipendente da UOM
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},Stock non può essere aggiornata contro Consegna Nota {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},Stock non può essere aggiornata contro Consegna Nota {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},Prodotto {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,Nessun elemento elencato
DocType: Asset Repair,Error Description,Descrizione dell&#39;errore
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,conciliare
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,Drogheria
DocType: Quality Inspection Reading,Reading 1,Lettura 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,Fondi Pensione
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,La data di ammortamento successivo non puó essere prima della Data di acquisto
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,La data di ammortamento successivo non puó essere prima della Data di acquisto
DocType: Crop,Perennial,Perenne
DocType: Consultation,Consultation Date,Data di consultazione
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,Elenco e scoperta di prodotti per gli utenti di ERPNext
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,Centro di costo Svalutazioni
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""","ad esempio, ""Scuola Elementare"" o ""Università"""
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,Reports Magazzino
DocType: Warehouse,Warehouse Detail,Dettagli Magazzino
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},Limite di credito è stato attraversato per il cliente {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},Limite di credito è stato attraversato per il cliente {0} {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,Il Data Terminologia fine non può essere successiva alla data di fine anno dell&#39;anno accademico a cui il termine è legata (Anno Accademico {}). Si prega di correggere le date e riprovare.
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","""E' un Asset"" non può essere deselezionato, in quanto esiste già un movimento collegato"
DocType: Delivery Trip,Departure Time,Orario di partenza
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,Student Log
DocType: Quality Inspection,Get Specification Details,Ottieni Specifiche Dettagli
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,Modelli di classifica dei fornitori.
DocType: Lead,Interested,Interessati
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,Apertura
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,Apertura
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},Da {0} a {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,Impossibile impostare le tasse
DocType: Item,Copy From Item Group,Copia da Gruppo Articoli
@ -268,7 +268,7 @@ DocType: Sales Invoice,Change Amount,quantità di modifica
DocType: BOM Update Tool,New BOM,Nuova Distinta Base
apps/erpnext/erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js +36,Show only POS,Mostra solo POS
DocType: Driver,Driving License Categories,Categorie di patenti di guida
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +118,Please enter Delivery Date,Inserisci la data di consegna
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +118,Please enter Delivery Date,Inserisci la Data di Consegna
DocType: Depreciation Schedule,Make Depreciation Entry,Crea una scrittura per l'ammortamento
DocType: Appraisal Template Goal,KRA,KRA
DocType: Lead,Request Type,Tipo di richiesta
@ -296,7 +296,7 @@ DocType: Guardian,Students,Alunni
apps/erpnext/erpnext/config/selling.py +91,Rules for applying pricing and discount.,Le modalità di applicazione di prezzi e sconti .
DocType: Physician Schedule,Time Slots,Fasce orarie
apps/erpnext/erpnext/stock/doctype/price_list/price_list.py +14,Price List must be applicable for Buying or Selling,Prezzo di listino deve essere applicabile per l'acquisto o la vendita di
apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.py +79,Installation date cannot be before delivery date for Item {0},Data di installazione non può essere prima della data di consegna per la voce {0}
apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.py +79,Installation date cannot be before delivery date for Item {0},La data di installazione non può essere precedente alla data di consegna per l'Articolo {0}
DocType: Pricing Rule,Discount on Price List Rate (%),Sconto su Prezzo di Listino (%)
apps/erpnext/erpnext/public/js/utils/item_quick_entry.js +112,Item Template,Modello di oggetto
apps/erpnext/erpnext/healthcare/setup.py +215,Biochemistry,Biochimica
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,Data Alleviare deve essere maggiore di Data di giunzione
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,Ferie per Anno
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,Riga {0}: Abilita 'è Advance' contro Account {1} se questa è una voce di anticipo.
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},Deposito {0} non appartiene alla società {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},Deposito {0} non appartiene alla società {1}
DocType: Email Digest,Profit & Loss,Profit &amp; Loss
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,Litro
DocType: Task,Total Costing Amount (via Time Sheet),Totale Costing Importo (tramite Time Sheet)
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,Tariffa e importo
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,Questo si basa sulle transazioni contro questa Azienda. Vedere la sequenza temporale qui sotto per i dettagli
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Notifica tramite e-mail sulla creazione di Richiesta automatica Materiale
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,Resistente
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Consultationt
DocType: Journal Entry,Multi Currency,Multi valuta
DocType: Opening Invoice Creation Tool,Invoice Type,Tipo Fattura
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,Documento Di Trasporto
@ -528,7 +529,6 @@ DocType: Email Digest,Credit Balance,Balance Credit
DocType: Employee,Widowed,Vedovo
DocType: Request for Quotation,Request for Quotation,Richiesta di offerta
DocType: Healthcare Settings,Require Lab Test Approval,Richiede l&#39;approvazione di un test di laboratorio
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Codice articolo&gt; Gruppo articoli&gt; Marca
DocType: Salary Slip Timesheet,Working Hours,Orari di lavoro
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,Assolutamente stupendo
DocType: Naming Series,Change the starting / current sequence number of an existing series.,Cambia l'inizio/numero sequenza corrente per una serie esistente
@ -557,7 +557,7 @@ DocType: Subscription,Yearly,Annuale
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,Inserisci Centro di costo
DocType: Drug Prescription,Dosage,Dosaggio
DocType: Journal Entry Account,Sales Order,Ordine di vendita
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,Avg. Tasso di vendita
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,Avg. Tasso di vendita
DocType: Assessment Plan,Examiner Name,Nome Examiner
DocType: Lab Test Template,No Result,Nessun risultato
DocType: Purchase Invoice Item,Quantity and Rate,Quantità e Prezzo
@ -605,6 +605,7 @@ DocType: Employee,Health Concerns,Preoccupazioni per la salute
DocType: Payroll Entry,Select Payroll Period,Seleziona Periodo Busta Paga
DocType: Purchase Invoice,Unpaid,Non pagata
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,Riservato per la vendita
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Configurare il sistema di denominazione dei dipendenti in Risorse umane&gt; Impostazioni HR
DocType: Packing Slip,From Package No.,Da Pacchetto N.
DocType: Item Attribute,To Range,Per Intervallo
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,I titoli e depositi
@ -629,11 +630,11 @@ DocType: Pricing Rule,Valid Upto,Valido Fino
DocType: Training Event,Workshop,Laboratorio
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,Avvisa gli ordini di acquisto
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,Elencare alcuni dei vostri clienti . Potrebbero essere organizzazioni o individui .
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,Parti abbastanza per costruire
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,Parti abbastanza per costruire
DocType: POS Profile User,POS Profile User,Profilo utente POS
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,reddito diretta
DocType: Patient Appointment,Date TIme,Appuntamento
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","Non è possibile filtrare sulla base di conto , se raggruppati per conto"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","Non è possibile filtrare sulla base di conto , se raggruppati per conto"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,responsabile amministrativo
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,Impostare società e tasse
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,Seleziona Corso
@ -643,7 +644,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,account differenza
DocType: Purchase Invoice,Supplier GSTIN,Fornitore GSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,Impossibile chiudere l'attività; esistono attività dipendenti {0} non completate.
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,Inserisci il Magazzino per cui Materiale richiesta sarà sollevata
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,Inserisci il Magazzino per cui Materiale richiesta sarà sollevata
DocType: Production Order,Additional Operating Cost,Ulteriori costi di esercizio
DocType: Lab Test Template,Lab Routine,Laboratorio di routine
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,cosmetici
@ -811,7 +812,7 @@ DocType: Employee,Passport Number,Numero di passaporto
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Rapporto con Guardian2
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,Manager
DocType: Payment Entry,Payment From / To,Pagamento da / a
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Il Nuovo limite di credito è inferiore all'attuale importo dovuto dal cliente. Il limite di credito deve essere almeno {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},Il Nuovo limite di credito è inferiore all'attuale importo dovuto dal cliente. Il limite di credito deve essere almeno {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},Imposta l&#39;account in Magazzino {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,'Basato Su' e 'Raggruppato Per' non può essere lo stesso
DocType: Sales Person,Sales Person Targets,Sales Person Obiettivi
@ -822,7 +823,7 @@ DocType: Lab Test Template,Compound,Composto
DocType: Student Batch Name,Batch Name,Batch Nome
DocType: Fee Validity,Max number of visit,Numero massimo di visite
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,Scheda attività creata:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},Si prega di impostare di default Contanti o conto bancario in Modalità di pagamento {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},Si prega di impostare di default Contanti o conto bancario in Modalità di pagamento {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,Iscriversi
DocType: GST Settings,GST Settings,Impostazioni GST
DocType: Selling Settings,Customer Naming By,Creare il Nome Cliente da
@ -946,7 +947,7 @@ DocType: Delivery Note,Customer's Purchase Order No,Ordine Acquisto Cliente N.
DocType: Budget,Budget Against,budget contro
DocType: Employee,Cell Number,Numero di Telefono
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,Non ci sono dipendenti per i criteri indicati. Verifica che gli Scivoli salariali non siano già stati creati.
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,Richieste Materiale Auto generata
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,Richieste Materiale Auto generata
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,perso
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,Non è possibile inserire il buono nella colonna 'Against Journal Entry'
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,Riservato per la produzione
@ -954,7 +955,7 @@ DocType: Soil Texture,Sand,Sabbia
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,Energia
DocType: Opportunity,Opportunity From,Opportunità da
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,Busta Paga Mensile.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Riga {0}: {1} Numeri di serie necessari per l&#39;articolo {2}. Hai fornito {3}.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Riga {0}: {1} Numeri di serie necessari per l&#39;articolo {2}. Hai fornito {3}.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,Seleziona una tabella
DocType: BOM,Website Specifications,Website Specifiche
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} è un indirizzo email non valido in &#39;Destinatari&#39;
@ -1042,7 +1043,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,Quotazione richiesta
DocType: Vital Signs,Heart Rate / Pulse,Frequenza cardiaca / impulso
DocType: Company,Default Bank Account,Conto Banca Predefinito
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","Per filtrare sulla base del Partner, selezionare prima il tipo di Partner"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","Per filtrare sulla base del Partner, selezionare prima il tipo di Partner"
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},'Aggiorna Scorte' non può essere selezionato perché gli articoli non vengono recapitati tramite {0}
DocType: Vehicle,Acquisition Date,Data Acquisizione
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,nos
@ -1066,7 +1067,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),Carica la tua testata (Rendila web friendly come 900px per 100px)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: Il conto {2} non può essere un gruppo
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,Articolo Row {} IDX: {DOCTYPE} {} docname non esiste nel precedente &#39;{} doctype&#39; tavolo
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,La scheda attività {0} è già stata completata o annullata
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,La scheda attività {0} è già stata completata o annullata
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,Nessuna attività
DocType: Item Variant Settings,Copy Fields to Variant,Copia campi in variante
DocType: Asset,Opening Accumulated Depreciation,Apertura del deprezzamento accumulato
@ -1178,9 +1179,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,Materiale Piano per sub-assemblaggi
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,I partner di vendita e Territorio
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,BOM {0} deve essere attivo
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),Chiusura (apertura + totale)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),Chiusura (apertura + totale)
DocType: Journal Entry,Depreciation Entry,Ammortamenti Entry
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Si prega di selezionare il tipo di documento prima
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,Stampa nella valuta dell&#39;account
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Annulla Visite Materiale {0} prima di annullare questa visita di manutenzione
DocType: Crop Cycle,ISO 8016 standard,ISO 8016 standard
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},Serial No {0} non appartiene alla voce {1}
@ -1206,7 +1208,7 @@ DocType: Purchase Receipt,Range,Intervallo
DocType: Supplier,Default Payable Accounts,Contabilità Fornitori Predefinita
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,Employee {0} non è attiva o non esiste
DocType: Fee Structure,Components,componenti
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},Si prega di inserire Asset categoria al punto {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},Si prega di inserire Asset categoria al punto {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,Voce Varianti {0} aggiornato
DocType: Quality Inspection Reading,Reading 6,Lettura 6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1258,6 +1260,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,Nome Azienda
DocType: SMS Center,Total Message(s),Totale Messaggi
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,Selezionare la voce per il trasferimento
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Impostare Serie di denominazione per {0} tramite Impostazione&gt; Impostazioni&gt; Serie di denominazione
DocType: Purchase Invoice,Additional Discount Percentage,Percentuale di sconto Aggiuntivo
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,Visualizzare un elenco di tutti i video di aiuto
DocType: Agriculture Analysis Criteria,Soil Texture,Texture del suolo
@ -1285,7 +1288,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,Distinta Base dell'Articolo sul Sito Web
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,Carica la tua testa lettera e logo. (È possibile modificare in un secondo momento).
DocType: Timesheet Detail,Bill,Conto
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,Successivo ammortamento Data viene inserita come data passata
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,Successivo ammortamento Data viene inserita come data passata
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,Bianco
DocType: SMS Center,All Lead (Open),Tutti i Lead (Aperti)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),Riga {0}: Qtà non disponibile per {4} in magazzino {1} al momento della pubblicazione della voce ({2} {3})
@ -1301,7 +1304,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,Data del contatto successivo
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,Quantità di apertura
DocType: Healthcare Settings,Appointment Reminder,Appuntamento promemoria
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,Si prega di inserire account per quantità di modifica
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,Si prega di inserire account per quantità di modifica
DocType: Program Enrollment Tool Student,Student Batch Name,Studente Batch Nome
DocType: Consultation,Doctor,Medico
DocType: Holiday List,Holiday List Name,Nome elenco vacanza
@ -1317,6 +1320,7 @@ DocType: Patient,Patient Relation,Relazione paziente
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,Strumento Allocazione Permessi
DocType: Item,Hub Category to Publish,Categoria Hub per pubblicare
DocType: Leave Block List,Leave Block List Dates,Lascia Blocco Elenco date
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Configurare le serie di numerazione per Presenze tramite Setup&gt; Numerazione serie
DocType: Sales Invoice,Billing Address GSTIN,Indirizzo di fatturazione GSTIN
DocType: Assessment Plan,Evaluate,Valutare
DocType: Workstation,Net Hour Rate,Tasso Netto Orario
@ -1350,7 +1354,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,Ricevuta di Acquisto Articolo
DocType: Purchase Receipt,PREC-RET-,PREC-RET-
DocType: POS Profile,Sales Invoice Payment,Pagamento Fattura di vendita
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,Warehouse Riservato a ordini di vendita / Magazzino prodotti finiti
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,Importo di vendita
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,Importo di vendita
DocType: Repayment Schedule,Interest Amount,Ammontare Interessi
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,Tu sei il Responsabile approvazione spese per questo record. Aggiorna lo Stato e salva
DocType: Serial No,Creation Document No,Creazione di documenti No
@ -1441,7 +1445,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,Apertura bilancio contabile
,GST Sales Register,Registro delle vendite GST
DocType: Sales Invoice Advance,Sales Invoice Advance,Fattura di vendita (anticipata)
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,Niente da chiedere
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,Niente da chiedere
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,Seleziona i tuoi domini
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},Un altro record di bilancio &#39;{0}&#39; esiste già contro {1} &#39;{2}&#39; per l&#39;anno fiscale {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,I campi verranno copiati solo al momento della creazione.
@ -1451,11 +1455,11 @@ DocType: Cheque Print Template,Payer Settings,Impostazioni Pagatore
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","Questo sarà aggiunto al codice articolo della variante. Ad esempio, se la sigla è ""SM"", e il codice articolo è ""T-SHIRT"", il codice articolo della variante sarà ""T-SHIRT-SM"""
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,Paga Netta (in lettere) sarà visibile una volta che si salva la busta paga.
DocType: Purchase Invoice,Is Return,È Return
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,Attenzione
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,Attenzione
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,Reso / Nota di Debito
DocType: Price List Country,Price List Country,Listino Prezzi Nazione
DocType: Item,UOMs,Unità di Misure
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} numeri di serie validi per l'articolo {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} numeri di serie validi per l'articolo {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Codice Articolo non può essere modificato per N. di Serie
DocType: Purchase Invoice Item,UOM Conversion Factor,Fattore di conversione Unità di Misura
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,Inserisci Codice Articolo per ottenere il numero di lotto
@ -1559,7 +1563,7 @@ DocType: Journal Entry,Get Outstanding Invoices,Ottieni fatture non saldate
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,Sales Order {0} non è valido
DocType: Supplier Scorecard,Warn for new Request for Quotations,Avvisa per la nuova richiesta per le citazioni
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,Gli ordini di acquisto ti aiutano a pianificare e monitorare i tuoi acquisti
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","Siamo spiacenti , le aziende non possono essere unite"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","Siamo spiacenti , le aziende non possono essere unite"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,Prescrizioni di laboratorio
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",La quantità emissione / trasferimento totale {0} in Materiale Richiesta {1} \ non può essere maggiore di quantità richiesta {2} per la voce {3}
@ -1597,7 +1601,6 @@ DocType: Vehicle,Fuel UOM,Fuel UOM
DocType: Warehouse,Warehouse Contact Info,Contatti Magazzino
DocType: Payment Entry,Write Off Difference Amount,Importo a differenza Svalutazione
DocType: Volunteer,Volunteer Name,Nome del volontario
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Installa il Sistema di denominazione degli istruttori in Istruzione&gt; Impostazioni istruzione
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0}: Indirizzo e-mail del dipendente non trovato, e-mail non inviata"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},Regola di spedizione non applicabile per il paese {0}
DocType: Item,Foreign Trade Details,Commercio Estero Dettagli
@ -1609,7 +1612,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,Numero di rotolo di gruppo
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry","Per {0}, solo i conti di credito possono essere collegati contro un'altra voce di addebito"
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,Totale di tutti i pesi delle attività dovrebbe essere 1. Modificare i pesi di tutte le attività del progetto di conseguenza
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,Il Documento di Trasporto {0} non è confermato
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,Il Documento di Trasporto {0} non è confermato
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,L'Articolo {0} deve essere di un sub-contratto
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,Attrezzature Capital
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Regola Prezzi viene prima selezionato in base al 'applicare sul campo', che può essere prodotto, Articolo di gruppo o di marca."
@ -1634,7 +1637,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,Esiste magazzino Bambino per questo magazzino. Non è possibile eliminare questo magazzino.
DocType: Item,Website Item Groups,Sito gruppi di articoli
DocType: Purchase Invoice,Total (Company Currency),Totale (Valuta Società)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,Numero di serie {0} è entrato più di una volta
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,Numero di serie {0} è entrato più di una volta
DocType: Journal Entry,Journal Entry,Registrazione Contabile
DocType: Expense Claim Advance,Unclaimed amount,Importo non reclamato
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} articoli in lavorazione
@ -1665,7 +1668,7 @@ apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +92,Privi
DocType: Purchase Invoice,Supplier Invoice Date,Data Fattura Fornitore
apps/erpnext/erpnext/templates/includes/product_page.js +18,per,per
apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +90,You need to enable Shopping Cart,È necessario abilitare Carrello
DocType: Payment Entry,Writeoff,Cancellare
DocType: Payment Entry,Writeoff,Svalutazione
DocType: Stock Settings,Naming Series Prefix,Prefisso serie di denominazione
DocType: Appraisal Template Goal,Appraisal Template Goal,Valutazione Modello Obiettivo
DocType: Salary Component,Earning,Rendimento
@ -1730,7 +1733,7 @@ DocType: Email Digest,For Company,Per Azienda
apps/erpnext/erpnext/config/support.py +17,Communication log.,Log comunicazione
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.","Richiesta di offerta disabilitata per l'accesso dal portale, verificare le configurazioni del portale"
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,Variabile di punteggio dei punteggi dei fornitori
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,Importo Acquisto
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,Importo Acquisto
DocType: Sales Invoice,Shipping Address Name,Destinazione
DocType: Material Request,Terms and Conditions Content,Termini e condizioni contenuti
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,Si sono verificati degli errori durante la creazione del programma del corso
@ -1994,7 +1997,7 @@ DocType: Expense Claim,Total Amount Reimbursed,Dell&#39;importo totale rimborsat
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,Questo si basa su tronchi contro questo veicolo. Vedere cronologia sotto per i dettagli
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},Al ricevimento della Fattura Fornitore {0} datata {1}
DocType: Customer,Default Price List,Listino Prezzi Predefinito
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,record di Asset Movimento {0} creato
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,record di Asset Movimento {0} creato
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,Non è possibile cancellare l&#39;anno fiscale {0}. Anno fiscale {0} è impostato in modo predefinito in Impostazioni globali
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,Esiste già un cliente con lo stesso nome
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,Questo invierà Salary Slips e creerà la registrazione ufficiale. Vuoi procedere?
@ -2008,6 +2011,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,Prezzi
DocType: Quotation,Term Details,Dettagli Termini
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,Non possono iscriversi più di {0} studenti per questo gruppo di studenti.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),Totale (senza tasse)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,Conto di piombo
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} deve essere maggiore di 0
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,Disponibile a magazzino
@ -2026,7 +2030,6 @@ DocType: Lab Test,Technician Name,Nome tecnico
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,Scollegare il pagamento per la cancellazione della fattura
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},lettura corrente dell&#39;odometro inserito deve essere maggiore di contachilometri iniziale veicolo {0}
DocType: Restaurant Reservation,No Show,Nessuno spettacolo
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Impostare Serie di denominazione per {0} tramite Impostazione&gt; Impostazioni&gt; Serie di denominazione
DocType: Shipping Rule Country,Shipping Rule Country,Tipo di Spedizione per Nazione
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,Permessi e Presenze
DocType: Maintenance Visit,Partially Completed,Parzialmente completato
@ -2117,7 +2120,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,Istruttore del gruppo di studenti
DocType: Grant Application,Assessment Mark (Out of 10),Segno di valutazione (su 10)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 mobile No
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,principale
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,principale
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,Variante
DocType: Naming Series,Set prefix for numbering series on your transactions,Impostare prefisso per numerazione serie sulle transazioni
DocType: Employee Attendance Tool,Employees HTML,Dipendenti HTML
@ -2165,7 +2168,7 @@ DocType: Crop,Crop Spacing,Spaziatura
DocType: Course,Course Abbreviation,Abbreviazione corso
DocType: Student Leave Application,Student Leave Application,Student Leave Application
DocType: Item,Will also apply for variants,Si applica anche per le varianti
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","Asset non può essere annullato, in quanto è già {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","Asset non può essere annullato, in quanto è già {0}"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},Employee {0} sulla mezza giornata su {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},l&#39;orario di lavoro totale non deve essere maggiore di ore di lavoro max {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,On
@ -2350,9 +2353,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),Data di fine effettiva (da Time Sheet)
DocType: Soil Texture,Soil Type,Tipo di terreno
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},Importo {0} {1} contro {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,Nuovo messaggio
,Quotation Trends,Tendenze di preventivo
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},Gruppo Articoli non menzionato nell'Articolo principale per l'Articolo {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,Debito Per account deve essere un account di Credito
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,Debito Per account deve essere un account di Credito
DocType: Shipping Rule,Shipping Amount,Importo spedizione
DocType: Supplier Scorecard Period,Period Score,Punteggio periodo
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,Aggiungi clienti
@ -2363,7 +2367,7 @@ DocType: Purchase Order,Delivered,Consegnato
,Vehicle Expenses,Spese del veicolo
DocType: Serial No,Invoice Details,Dettagli della fattura
DocType: Grant Application,Show on Website,Mostra sul sito web
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},Valore atteso dopo la vita utile deve essere maggiore o uguale a {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},Valore atteso dopo la vita utile deve essere maggiore o uguale a {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,Inizia
DocType: Hub Category,Hub Category,Categoria Hub
DocType: Purchase Invoice,SEZ,SEZ
@ -2394,7 +2398,7 @@ DocType: Patient,Patient Details,Dettagli del paziente
DocType: Patient,B Positive,B Positivo
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","Row # {0}: Quantità deve essere 1, poiche' si tratta di un Bene Strumentale. Si prega di utilizzare riga separata per quantita' multiple."
DocType: Leave Block List Allow,Leave Block List Allow,Lascia permesso blocco lista
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,L'abbr. non può essere vuota o spazio
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,L'abbr. non può essere vuota o spazio
DocType: Patient Medical Record,Patient Medical Record,Registro medico paziente
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,Gruppo di Non-Group
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,sportivo
@ -2444,6 +2448,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,Impossibile impostare un RFQ ricevuto su No Quote
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,Deduzione totale
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,Seleziona un account per stampare nella valuta dell&#39;account
,Production Analytics,Analytics di produzione
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,Questo è basato sulle transazioni contro questo paziente. Per dettagli vedere la sequenza temporale qui sotto
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,Costo Aggiornato
@ -2498,7 +2503,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,Impos
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,Seleziona Company ...
DocType: Leave Control Panel,Leave blank if considered for all departments,Lasciare vuoto se considerato per tutti i reparti
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","Tipi di occupazione (permanente , contratti , ecc intern ) ."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} è obbligatorio per la voce {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} è obbligatorio per la voce {1}
DocType: Payroll Entry,Fortnightly,Quindicinale
DocType: Currency Exchange,From Currency,Da Valuta
DocType: Vital Signs,Weight (In Kilogram),Peso (in chilogrammo)
@ -2574,7 +2579,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),Importo di base (Societ
DocType: Student,Guardians,Guardiani
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,I prezzi non verranno visualizzati se listino non è impostata
DocType: Stock Entry,Total Incoming Value,Totale Valore Incoming
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,Debito A è richiesto
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,Debito A è richiesto
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Schede attività per tenere traccia del tempo, i costi e la fatturazione per attività fatta per tua squadra"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,Acquisto Listino Prezzi
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,Modelli delle variabili dei scorecard fornitori.
@ -2675,7 +2680,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,Per riferimento soltanto.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},Medico {0} non disponibile in {1}
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,Seleziona il numero di lotto
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},Non valido {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},Non valido {0}: {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Fee Validity,Reference Inv,Riferimento Inv
@ -2712,8 +2717,8 @@ DocType: Fees,Send Payment Request,Invia richiesta di pagamento
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Specificare le operazioni, costi operativi e dare una gestione unica di no a vostre operazioni."
DocType: Water Analysis,Origin,Origine
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,Questo documento è oltre il limite da {0} {1} per item {4}. State facendo un altro {3} contro lo stesso {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,Si prega di impostare ricorrenti dopo il salvataggio
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,conto importo Selezionare cambiamento
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,Si prega di impostare ricorrenti dopo il salvataggio
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,conto importo Selezionare cambiamento
DocType: Purchase Invoice,Price List Currency,Prezzo di listino Valuta
DocType: Naming Series,User must always select,L&#39;utente deve sempre selezionare
DocType: Stock Settings,Allow Negative Stock,Permetti Scorte Negative
@ -2769,7 +2774,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,Dettaglio progr
DocType: Supplier Scorecard,Warn for new Purchase Orders,Avvisa per i nuovi ordini di acquisto
DocType: Quality Inspection Reading,Reading 9,Lettura 9
DocType: Supplier,Is Frozen,È Congelato
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,magazzino nodo di gruppo non è permesso di selezionare per le transazioni
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,magazzino nodo di gruppo non è permesso di selezionare per le transazioni
DocType: Buying Settings,Buying Settings,Impostazioni Acquisto
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,N. BOM per quantità buona completata
DocType: Upload Attendance,Attendance To Date,Data Fine Frequenza
@ -2783,6 +2788,7 @@ DocType: Offer Letter,Accepted,Accettato
DocType: Grant Application,Organization,Organizzazione
DocType: BOM Update Tool,BOM Update Tool,Strumento di aggiornamento BOM
DocType: SG Creation Tool Course,Student Group Name,Nome gruppo Student
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,Mostra vista esplosa
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,Creazione di tariffe
apps/erpnext/erpnext/setup/doctype/company/company.js +91,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.,Assicurati di voler cancellare tutte le transazioni di questa azienda. I dati anagrafici rimarranno così com&#39;è. Questa azione non può essere annullata.
DocType: Room,Room Number,Numero di Camera
@ -2793,7 +2799,7 @@ DocType: Journal Entry Account,Payroll Entry,Ingresso del libro paga
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,Crea modello fiscale
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,Forum utente
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,Materie prime non può essere vuoto.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","Impossibile aggiornare magazzino, fattura contiene articoli di trasporto di goccia."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","Impossibile aggiornare magazzino, fattura contiene articoli di trasporto di goccia."
DocType: Lab Test Sample,Lab Test Sample,Campione di prova del laboratorio
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,Breve diario
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,Non è possibile cambiare tariffa se la distinta (BOM) è già assegnata a un articolo
@ -2840,7 +2846,7 @@ DocType: Student,Joining Date,Unire Data
apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +152,Mark Present,Segna come Presente
DocType: Project,% Complete Method,% Completamento
apps/erpnext/erpnext/healthcare/setup.py +181,Drug,Droga
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +200,Maintenance start date can not be before delivery date for Serial No {0},La data di inizio manutenzione non può essere precedente alla consegna del Serial No {0}
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +200,Maintenance start date can not be before delivery date for Serial No {0},La data di inizio manutenzione non può essere precedente alla data di consegna del Nº di Serie {0}
DocType: Production Order,Actual End Date,Data di fine effettiva
DocType: BOM,Operating Cost (Company Currency),Costi di funzionamento (Società di valuta)
DocType: Purchase Invoice,PINV-,PINV-
@ -2864,7 +2870,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,Dollaro statunitense
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,Crea Fattura
DocType: Selling Settings,Auto close Opportunity after 15 days,Chiudi automaticamente Opportunità dopo 15 giorni
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Gli ordini di acquisto non sono consentiti per {0} a causa di una posizione di scorecard di {1}.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Gli ordini di acquisto non sono consentiti per {0} a causa di una posizione di scorecard di {1}.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,fine Anno
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Quot / Lead%
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,Data fine contratto deve essere maggiore di Data di giunzione
@ -2976,7 +2982,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90-Sopra
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,Row # {0}: diario {1} non ha conto {2} o già confrontato con un altro buono
DocType: Supplier Scorecard Criteria,Criteria Weight,Criteri Peso
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Fornitore&gt; Tipo di fornitore
DocType: Buying Settings,Default Buying Price List,Predefinito acquisto Prezzo di listino
DocType: Payroll Entry,Salary Slip Based on Timesheet,Stipendio slip Sulla base di Timesheet
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,Tasso di acquisto
@ -3064,7 +3069,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,Monitora i Leads per settore.
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,Vai a carta intestata
DocType: Item Supplier,Item Supplier,Articolo Fornitore
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,Inserisci il codice Item per ottenere lotto non
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,Inserisci il codice Item per ottenere lotto non
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},Si prega di selezionare un valore per {0} quotation_to {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,Tutti gli indirizzi.
DocType: Company,Stock Settings,Impostazioni Giacenza
@ -3253,6 +3258,7 @@ DocType: Employee Loan,Loan Details,prestito Dettagli
DocType: Company,Default Inventory Account,Account di inventario predefinito
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,Riga {0}: Quantità compilato deve essere maggiore di zero.
DocType: Antibiotic,Antibiotic Name,Nome antibiotico
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Codice articolo&gt; Gruppo articoli&gt; Marca
DocType: Purchase Invoice,Apply Additional Discount On,Applicare lo Sconto Aggiuntivo su
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,Seleziona tipo ...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,Un link a tutte le unità di terra in cui cresce il raccolto
@ -3388,7 +3394,7 @@ DocType: Supplier Scorecard,Notify Employee,Notifica dipendente
DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,Inserisci il nome della Campagna se la sorgente di indagine è la campagna
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +38,Newspaper Publishers,Editori Giornali
apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +30,Select Fiscal Year,Selezionare l'anno fiscale
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +115,Expected Delivery Date should be after Sales Order Date,La data di consegna prevista dovrebbe essere dopo la data di ordine di vendita
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +115,Expected Delivery Date should be after Sales Order Date,La data di consegna prevista dovrebbe essere successiva alla data dell'Ordine di Vendita
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +43,Reorder Level,Riordina Level
DocType: Company,Chart Of Accounts Template,Modello del Piano dei Conti
DocType: Attendance,Attendance Date,Data Presenza
@ -3446,6 +3452,7 @@ DocType: Guardian Student,Guardian Student,Guardiano Student
DocType: Supplier,Credit Limit,Limite Credito
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,Avg. Tasso di listino prezzi di vendita
DocType: Production Plan Sales Order,Salse Order Date,Salse Data ordine
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Fornitore&gt; Tipo di fornitore
DocType: Salary Component,Salary Component,stipendio Componente
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,I Pagamenti {0} non sono collegati
DocType: GL Entry,Voucher No,Voucher No
@ -3454,7 +3461,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,Più popolare
DocType: Leave Allocation,Leave Allocation,Lascia Allocazione
DocType: Payment Request,Recipient Message And Payment Details,Destinatario del Messaggio e Modalità di Pagamento
DocType: Training Event,Trainer Email,Trainer-mail
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,Richieste di materiale {0} creato
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,Richieste di materiale {0} creato
DocType: Restaurant Reservation,No of People,No di persone
DocType: Production Planning Tool,Include sub-contracted raw materials,Includere le materie prime in subappalto
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,Template di termini o di contratto.
@ -3518,7 +3525,7 @@ DocType: Landed Cost Item,Receipt Document,Documento di Ricevuta
DocType: Production Planning Tool,Create Material Requests,Creare Richieste Materiale
DocType: Employee Education,School/University,Scuola / Università
DocType: Payment Request,Reference Details,Riferimento Dettagli
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,Il valore atteso dopo la durata utile deve essere inferiore all' importo di acquisto lordo
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,Il valore atteso dopo la durata utile deve essere inferiore all' importo di acquisto lordo
DocType: Sales Invoice Item,Available Qty at Warehouse,Quantità Disponibile a magazzino
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,Importo Fatturato
DocType: Asset,Double Declining Balance,Doppia valori residui
@ -3530,7 +3537,7 @@ DocType: Attendance,On Leave,In ferie
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,Ricevi aggiornamenti
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: Il conto {2} non appartiene alla società {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,Seleziona almeno un valore da ciascuno degli attributi.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,Richiesta materiale {0} è stato annullato o interrotto
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,Richiesta materiale {0} è stato annullato o interrotto
apps/erpnext/erpnext/config/hr.py +310,Leave Management,Lascia Gestione
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,Raggruppa per Conto
DocType: Sales Order,Fully Delivered,Completamente Consegnato
@ -3541,14 +3548,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},Importo erogato non può essere superiore a prestito Importo {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,Vai a Programmi
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},Riga {0} # L&#39;importo assegnato {1} non può essere maggiore dell&#39;importo non reclamato {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Configurare le serie di numerazione per Presenze tramite Setup&gt; Numerazione serie
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},Numero ordine di acquisto richiesto per la voce {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,Ordine di produzione non ha creato
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',' Dalla Data' deve essere successivo a 'Alla Data'
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},Impossibile cambiare status di studente {0} è collegata con l&#39;applicazione studente {1}
DocType: Asset,Fully Depreciated,completamente ammortizzato
,Stock Projected Qty,Qtà Prevista Giacenza
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},Cliente {0} non appartiene a proiettare {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},Cliente {0} non appartiene a proiettare {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,Marcata presenze HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers","Le quotazioni sono proposte, offerte che hai inviato ai tuoi clienti"
DocType: Sales Order,Customer's Purchase Order,Ordine di Acquisto del Cliente
@ -3632,7 +3638,7 @@ DocType: Salary Slip,Hour Rate,Rapporto Orario
DocType: Stock Settings,Item Naming By,Creare il Nome Articolo da
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},Un'altra voce periodo di chiusura {0} è stato fatto dopo {1}
DocType: Production Order,Material Transferred for Manufacturing,Materiale trasferito per produzione
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,Il Conto {0} non esiste
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,Il Conto {0} non esiste
DocType: Project,Project Type,Tipo di progetto
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,Non è possibile eliminare questa attività; esiste un'altra Attività dipendente da questa.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,Sia qty destinazione o importo obiettivo è obbligatoria .
@ -3734,11 +3740,11 @@ DocType: C-Form,I,io
DocType: Company,Asset Depreciation Cost Center,Asset Centro di ammortamento dei costi
DocType: Sales Order Item,Sales Order Date,Ordine di vendita Data
DocType: Sales Invoice Item,Delivered Qty,Q.tà Consegnata
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,Totale escl. Imposta
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","Se selezionato, tutti i figli di ogni elemento di produzione saranno inclusi nelle Request materiali."
DocType: Assessment Plan,Assessment Plan,Piano di valutazione
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,Il cliente {0} viene creato.
DocType: Stock Settings,Limit Percent,limite percentuale
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Installa il Sistema di denominazione degli istruttori in Istruzione&gt; Impostazioni istruzione
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,Articolo attualmente non presente in nessun magazzino
,Payment Period Based On Invoice Date,Periodo di pagamento basati su Data fattura
DocType: Sample Collection,No. of print,Numero di stampa
@ -3754,12 +3760,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),Debitori ({0})
DocType: Pricing Rule,Margin,Margine
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,Nuovi clienti
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,Utile lordo %
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,Utile lordo %
DocType: Appraisal Goal,Weightage (%),Weightage (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,Cambia profilo POS
DocType: Bank Reconciliation Detail,Clearance Date,Data Liquidazione
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,Rapporto di valutazione
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,Gross Importo acquisto è obbligatoria
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,Gross Importo acquisto è obbligatoria
DocType: Lead,Address Desc,Desc. indirizzo
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,Il Partner è obbligatorio
DocType: Journal Entry,JV-,JV-
@ -3791,7 +3797,6 @@ DocType: Account,Accumulated Depreciation,Fondo di ammortamento
DocType: Supplier Scorecard Scoring Standing,Standing Name,Nome permanente
DocType: Stock Entry,Customer or Supplier Details,Dettagli Cliente o Fornitore
DocType: Employee Loan Application,Required by Date,Richiesto per data
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),Saldo finale (Dr - Cr)
DocType: Lead,Lead Owner,Responsabile Lead
DocType: Bin,Requested Quantity,la quantita &#39;richiesta
DocType: Patient,Marital Status,Stato civile
@ -3805,7 +3810,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,Varianti multiple
DocType: Sales Invoice,Against Income Account,Per Reddito Conto
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% Consegnato
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Articolo {0}: Qtà ordinata {1} non può essere inferiore a Qtà minima per ordine {2} (definita per l'Articolo).
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Articolo {0}: Qtà ordinata {1} non può essere inferiore a Qtà minima per ordine {2} (definita per l'Articolo).
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,Percentuale Distribuzione Mensile
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,Accedi come un altro utente.
DocType: Territory,Territory Targets,Obiettivi Territorio
@ -3905,7 +3910,7 @@ DocType: Program Enrollment,School House,school House
DocType: Serial No,Out of AMC,Fuori di AMC
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,Numero degli ammortamenti prenotata non può essere maggiore di Numero totale degli ammortamenti
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,Aggiungi visita manutenzione
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,Si prega di contattare l'utente che hanno Sales Master Responsabile {0} ruolo
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,Si prega di contattare l'utente che hanno Sales Master Responsabile {0} ruolo
DocType: Company,Default Cash Account,Conto cassa predefinito
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,Azienda ( non cliente o fornitore ) master.
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,Questo si basa sulla presenza di questo Student
@ -4022,7 +4027,7 @@ apps/erpnext/erpnext/education/doctype/student_group_creation_tool/student_group
DocType: Purchase Invoice Item,Serial No,Serial No
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +119,Monthly Repayment Amount cannot be greater than Loan Amount,Rimborso mensile non può essere maggiore di prestito Importo
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +143,Please enter Maintaince Details first,Inserisci Maintaince dettagli prima
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +56,Row #{0}: Expected Delivery Date cannot be before Purchase Order Date,Riga # {0}: Data di consegna prevista non può essere prima dell&#39;ordine di acquisto
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +56,Row #{0}: Expected Delivery Date cannot be before Purchase Order Date,Riga # {0}: la Data di Consegna Prevista non può essere precedente all'Ordine di Acquisto
DocType: Purchase Invoice,Print Language,Lingua di Stampa
DocType: Salary Slip,Total Working Hours,Orario di lavoro totali
DocType: Subscription,Next Schedule Date,Data di pianificazione successiva
@ -4055,7 +4060,6 @@ DocType: Delivery Note Item,From Warehouse,Dal Deposito
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,Nessun dipendente per i criteri indicati
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,Non ci sono elementi con Bill of Materials per la produzione
DocType: Restaurant,Default Customer,Cliente predefinito
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Configurare il sistema di denominazione dei dipendenti in Risorse umane&gt; Impostazioni HR
DocType: Assessment Plan,Supervisor Name,Nome supervisore
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,Non confermare se l&#39;appuntamento è stato creato per lo stesso giorno
DocType: Program Enrollment Course,Program Enrollment Course,Corso di iscrizione al programma
@ -4173,7 +4177,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,Descrizione del sito
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,Variazione netta Patrimonio
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,i più nuovi
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,Si prega di annullare Acquisto Fattura {0} prima
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,Si prega di annullare Acquisto Fattura {0} prima
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","l' indirizzo e-mail deve essere univoco, esiste già per {0}"
DocType: Serial No,AMC Expiry Date,AMC Data Scadenza
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,Ricevuta
@ -4190,7 +4194,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,Nessun Cliente
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,Rendiconto finanziario
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},Importo del prestito non può superare il massimo importo del prestito {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,Licenza
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},Si prega di rimuovere questo Invoice {0} dal C-Form {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},Si prega di rimuovere questo Invoice {0} dal C-Form {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,Si prega di selezionare il riporto se anche voi volete includere equilibrio precedente anno fiscale di parte per questo anno fiscale
DocType: GL Entry,Against Voucher Type,Per tipo Tagliando
DocType: Physician,Phone (R),Telefono (R)
@ -4202,7 +4206,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,B Negativo
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,Lo stato di manutenzione deve essere annullato o completato per inviare
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},Il Conto {0} non appartiene alla società {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,I numeri seriali nella riga {0} non corrispondono alla nota di consegna
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,I numeri seriali nella riga {0} non corrispondono alla nota di consegna
DocType: Student,Guardian Details,Guardiano Dettagli
DocType: C-Form,C-Form,C-Form
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,Segna come Presenze per più Dipendenti
@ -4244,7 +4248,7 @@ DocType: Opening Invoice Creation Tool,Sales,Vendite
DocType: Stock Entry Detail,Basic Amount,Importo di base
DocType: Training Event,Exam,Esame
DocType: Complaint,Complaint,Denuncia
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},Magazzino richiesto per l'Articolo in Giacenza {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},Magazzino richiesto per l'Articolo in Giacenza {0}
DocType: Leave Allocation,Unused leaves,Ferie non godute
DocType: Patient,Alcohol Past Use,Utilizzo passato di alcool
DocType: Fertilizer Content,Fertilizer Content,Contenuto di fertilizzanti
@ -4368,12 +4372,13 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,Formula
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,Serial #
DocType: Lab Test Template,Lab Test Template,Modello di prova del laboratorio
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,Conto vendita
DocType: Purchase Invoice Item,Total Weight,Peso totale
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,Commissione sulle vendite
DocType: Offer Letter Term,Value / Description,Valore / Descrizione
apps/erpnext/erpnext/controllers/accounts_controller.py +629,"Row #{0}: Asset {1} cannot be submitted, it is already {2}","Row # {0}: Asset {1} non può essere presentata, è già {2}"
DocType: Tax Rule,Billing Country,Nazione di fatturazione
DocType: Purchase Order Item,Expected Delivery Date,Data prevista di consegna
DocType: Purchase Order Item,Expected Delivery Date,Data di Consegna Prevista
DocType: Restaurant Order Entry,Restaurant Order Entry,Inserimento ordine del ristorante
apps/erpnext/erpnext/accounts/general_ledger.py +132,Debit and Credit not equal for {0} #{1}. Difference is {2}.,Dare e Avere non uguale per {0} # {1}. La differenza è {2}.
DocType: Asset Maintenance Task,Assign To Name,Assegna al nome
@ -4524,7 +4529,7 @@ Updated via 'Time Log'",Aggiornato da pochi minuti tramite 'Time Log'
DocType: Customer,From Lead,Da Contatto
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,Gli ordini rilasciati per la produzione.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,Selezionare l'anno fiscale ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,POS Profilo tenuto a POS Entry
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,POS Profilo tenuto a POS Entry
DocType: Program Enrollment Tool,Enroll Students,iscrivere gli studenti
DocType: Lab Test,Approved Date,Data approvata
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,Listino di Vendita
@ -4600,7 +4605,7 @@ DocType: Employee,Held On,Tenutasi il
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,Produzione Voce
,Employee Information,Informazioni Dipendente
DocType: Stock Entry Detail,Additional Cost,Costo aggiuntivo
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","Non è possibile filtrare sulla base di Voucher No , se raggruppati per Voucher"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","Non è possibile filtrare sulla base di Voucher No , se raggruppati per Voucher"
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,Crea un Preventivo Fornitore
DocType: Quality Inspection,Incoming,In arrivo
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,Vengono creati modelli di imposta predefiniti per vendite e acquisti.
@ -4617,14 +4622,14 @@ DocType: Batch,Batch ID,Lotto ID
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},Nota : {0}
,Delivery Note Trends,Tendenze Documenti di Trasporto
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,Sintesi di questa settimana
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,Qtà in Stock
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,Qtà in Stock
DocType: Delivery Trip,Calculate Estimated Arrival Times,Calcola i tempi di arrivo stimati
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,Account: {0} può essere aggiornato solo tramite documenti di magazzino
DocType: Student Group Creation Tool,Get Courses,Ottieni Corsi
DocType: GL Entry,Party,Partner
DocType: Healthcare Settings,Patient Name,Nome paziente
DocType: Variant Field,Variant Field,Campo di variante
DocType: Sales Order,Delivery Date,Data Consegna
DocType: Sales Order,Delivery Date,Data di Consegna
DocType: Opportunity,Opportunity Date,Data Opportunità
DocType: Purchase Receipt,Return Against Purchase Receipt,Ricevuta di Ritorno contro Ricevuta di Acquisto
DocType: Water Analysis,Person Responsible,Persona responsabile
@ -4633,7 +4638,7 @@ DocType: Purchase Order,To Bill,Da Fatturare
DocType: Material Request,% Ordered,% Ordinato
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.","Per il corso del corso, il Corso sarà convalidato per ogni Studente dai corsi iscritti in iscrizione al programma."
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,lavoro a cottimo
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,Avg. Buying Rate
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,Avg. Buying Rate
DocType: Task,Actual Time (in Hours),Tempo reale (in ore)
DocType: Employee,History In Company,Storia aziendale
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},Nuovo messaggio da {sender}
@ -4681,7 +4686,7 @@ DocType: Asset Repair,Asset Repair,Riparazione delle risorse
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},Riga {0}: Valuta del BOM # {1} deve essere uguale alla valuta selezionata {2}
DocType: Journal Entry Account,Exchange Rate,Tasso di cambio:
DocType: Patient,Additional information regarding the patient,Ulteriori informazioni sul paziente
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,L'ordine di vendita {0} non è stato presentato
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,L'ordine di vendita {0} non è stato presentato
DocType: Homepage,Tag Line,Tag Linea
DocType: Fee Component,Fee Component,Fee Componente
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,Gestione della flotta
@ -4893,7 +4898,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,La valutazione dettag
DocType: Employee Education,Employee Education,Istruzione Dipendente
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,gruppo di articoli duplicato trovato nella tabella gruppo articoli
DocType: Land Unit,Parent Land Unit,Unità territoriale genitore
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,E &#39;necessario per recuperare Dettagli elemento.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,E &#39;necessario per recuperare Dettagli elemento.
DocType: Fertilizer,Fertilizer Name,Nome del fertilizzante
DocType: Salary Slip,Net Pay,Retribuzione Netta
DocType: Account,Account,Account
@ -4910,7 +4915,7 @@ apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +90,Sick
DocType: Email Digest,Email Digest,Email di Sintesi
DocType: Delivery Note,Billing Address Name,Destinatario
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +22,Department Stores,Grandi magazzini
,Item Delivery Date,Data di consegna dell&#39;articolo
,Item Delivery Date,Data di Consegna dell'Articolo
DocType: Warehouse,PIN,PIN
apps/erpnext/erpnext/stock/doctype/delivery_trip/delivery_trip.py +125,Error '{0}' occured. Arguments {1}.,Errore &quot;{0}&quot;. Argomenti {1}.
DocType: Bin,Reserved Qty for sub contract,Qtà riservata per il subappalto
@ -4972,7 +4977,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),Q.tà reale (in origin
DocType: Item Customer Detail,Ref Code,Codice Rif
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,Il gruppo di clienti è richiesto nel profilo POS
apps/erpnext/erpnext/config/hr.py +12,Employee records.,Informazioni Dipendente.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,Si prega di impostare Successivo Ammortamenti Data
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,Si prega di impostare Successivo Ammortamenti Data
DocType: HR Settings,Payroll Settings,Impostazioni Payroll
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,Partita Fatture non collegati e pagamenti.
DocType: POS Settings,POS Settings,Impostazioni POS
@ -5139,7 +5144,7 @@ DocType: Item,Customer Code,Codice Cliente
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},Promemoria Compleanno per {0}
DocType: Asset Maintenance Task,Last Completion Date,Ultima data di completamento
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,Giorni dall'ultimo ordine
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,Debito Per account deve essere un account di Stato Patrimoniale
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,Debito Per account deve essere un account di Stato Patrimoniale
DocType: Buying Settings,Naming Series,Denominazione Serie
DocType: Leave Block List,Leave Block List Name,Lascia Block List Nome
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,Assicurazione Data di inizio deve essere inferiore a Assicurazione Data Fine
@ -5208,7 +5213,7 @@ DocType: SG Creation Tool Course,Max Strength,Forza Max
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +28,Installing presets,Installare i preset
apps/erpnext/erpnext/stock/doctype/delivery_trip/delivery_trip.js +67,No Delivery Note selected for Customer {},Nessuna nota di consegna selezionata per il cliente {}
apps/erpnext/erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.py +22,BOM replaced,BOM sostituita
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +1041,Select Items based on Delivery Date,Selezionare gli elementi in base alla data di consegna
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +1041,Select Items based on Delivery Date,Selezionare gli elementi in base alla Data di Consegna
DocType: Grant Application,Has any past Grant Record,Ha un record di sovvenzione passato
,Sales Analytics,Analisi dei dati di vendita
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +119,Available {0},Disponibile {0}
@ -5265,6 +5270,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,Ottenere i Pagamenti
DocType: Quotation Item,Against Docname,Per Nome Doc
DocType: SMS Center,All Employee (Active),Tutti Dipendenti (Attivi)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Cliente&gt; Gruppo clienti&gt; Territorio
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,Guarda ora
DocType: BOM,Raw Material Cost,Costo Materie Prime
DocType: Item Reorder,Re-Order Level,Livello Ri-ordino
@ -5363,7 +5369,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,posti a sedere
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,Gruppi di test del laboratorio
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Cliente&gt; Gruppo clienti&gt; Territorio
DocType: Project,Total Expense Claim (via Expense Claims),Total Expense Claim (via rimborsi spese)
DocType: GST Settings,GST Summary,Riepilogo GST
DocType: Assessment Result,Total Score,Punteggio totale
@ -5376,7 +5381,7 @@ DocType: Batch,Source Document Type,Tipo di documento di origine
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,Sono stati creati i seguenti programmi del corso
DocType: Journal Entry,Total Debit,Debito totale
DocType: Manufacturing Settings,Default Finished Goods Warehouse,Deposito beni ultimati
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,Addetto alle vendite
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,Addetto alle vendite
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,Bilancio e Centro di costo
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,Non è consentito il modo di pagamento multiplo predefinito
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,per il
@ -5549,7 +5554,7 @@ DocType: Program,Program Name,Nome programma
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Considera Tasse o Costo per
DocType: Driver,Driving License Category,Categoria di patente di guida
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,La q.tà reale è obbligatoria
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0} ha attualmente una posizione di valutazione del fornitore {1} e gli ordini di acquisto a questo fornitore dovrebbero essere rilasciati con cautela.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0} ha attualmente una posizione di valutazione del fornitore {1} e gli ordini di acquisto a questo fornitore dovrebbero essere rilasciati con cautela.
DocType: Asset Maintenance Team,Asset Maintenance Team,Asset Maintenance Team
DocType: Employee Loan,Loan Type,Tipo di prestito
DocType: Scheduling Tool,Scheduling Tool,Strumento di pianificazione

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,研究室処方
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,価格で並べ替え
,Delay Days,遅延日数
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,サービス費用
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},シリアル番号:{0}は既に販売請求書:{1}で参照されています
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},シリアル番号:{0}は既に販売請求書:{1}で参照されています
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,請求
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,保持在庫エントリを作成する
DocType: Purchase Invoice Item,Item Weight Details,アイテムの重量の詳細
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,親詳細文書名
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}",参照:{0}、商品コード:{1}、顧客:{2}
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,kg
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,欠員
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},明細{0}の行{1}でBOMが指定されていません
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},明細{0}の行{1}でBOMが指定されていません
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0}結果がサブミットされました
DocType: Item Attribute,Increment,増分
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,期間
@ -150,7 +150,7 @@ DocType: Patient,Married,結婚してる
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},{0} は許可されていません
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,からアイテムを取得します
DocType: Price List,Price Not UOM Dependant,UOMに依存しない価格
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},納品書{0}に対して在庫を更新することはできません
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},納品書{0}に対して在庫を更新することはできません
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},製品{0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,リストされたアイテム
DocType: Asset Repair,Error Description,エラーの説明
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,照合
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,食料品
DocType: Quality Inspection Reading,Reading 1,報告要素1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,年金基金
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,次の減価償却日付は購入日の前にすることはできません
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,次の減価償却日付は購入日の前にすることはできません
DocType: Crop,Perennial,多年生
DocType: Consultation,Consultation Date,相談日
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,ERPNextユーザー向けの製品リストおよび検出
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,償却コストセンター
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""",例えば、「小学校」や「大学」
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,在庫レポート
DocType: Warehouse,Warehouse Detail,倉庫の詳細
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},顧客{0}の与信限度額を超えました {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},顧客{0}の与信限度額を超えました {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,期間終了日は、後の項が(アカデミック・イヤー{})リンクされている年度の年度終了日を超えることはできません。日付を訂正して、もう一度お試しください。
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item",資産レコードが項目に対して存在するように、オフにすることはできません「固定資産です」
DocType: Delivery Trip,Departure Time,出発時間
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,学生ログイン
DocType: Quality Inspection,Get Specification Details,仕様詳細を取得
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,サプライヤー順位のテンプレート。
DocType: Lead,Interested,関心あり
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,期首
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,期首
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},{0}から{1}へ
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,税金の設定に失敗しました
DocType: Item,Copy From Item Group,項目グループからコピーする
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,退職日は入社日より後でなければなりません
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,年次休暇
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,行{0}:前払エントリである場合、アカウント{1}に対する「前払」をご確認ください
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},倉庫{0}は会社{1}に属していません
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},倉庫{0}は会社{1}に属していません
DocType: Email Digest,Profit & Loss,利益損失
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,リットル
DocType: Task,Total Costing Amount (via Time Sheet),(タイムシートを介して)総原価計算量
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,レートと金額
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,これは、この会社に対する取引に基づいています。詳細は以下のタイムラインをご覧ください
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,自動的な資材要求の作成時にメールで通知
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,耐性
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,相談
DocType: Journal Entry,Multi Currency,複数通貨
DocType: Opening Invoice Creation Tool,Invoice Type,請求書タイプ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,納品書
@ -529,7 +530,6 @@ DocType: Email Digest,Credit Balance,貸方残高
DocType: Employee,Widowed,死別
DocType: Request for Quotation,Request for Quotation,見積依頼
DocType: Healthcare Settings,Require Lab Test Approval,ラボテスト承認が必要
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,商品コード&gt;商品グループ&gt;ブランド
DocType: Salary Slip Timesheet,Working Hours,労働時間
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,残高の総額
DocType: Naming Series,Change the starting / current sequence number of an existing series.,既存のシリーズについて、開始/現在の連続番号を変更します。
@ -558,7 +558,7 @@ DocType: Subscription,Yearly,毎年
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,「コストセンター」を入力してください
DocType: Drug Prescription,Dosage,投薬量
DocType: Journal Entry Account,Sales Order,受注
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,平均販売レート
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,平均販売レート
DocType: Assessment Plan,Examiner Name,審査官の名前
DocType: Lab Test Template,No Result,検索結果はありません
DocType: Purchase Invoice Item,Quantity and Rate,数量とレート
@ -606,6 +606,7 @@ DocType: Employee,Health Concerns,健康への懸念
DocType: Payroll Entry,Select Payroll Period,給与計算期間を選択
DocType: Purchase Invoice,Unpaid,未払い
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,販売のために予約済み
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,従業員の命名システムを人事管理&gt; HR設定で設定してください
DocType: Packing Slip,From Package No.,参照元梱包番号
DocType: Item Attribute,To Range,範囲対象
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,有価証券および預金
@ -630,11 +631,11 @@ DocType: Pricing Rule,Valid Upto,有効(〜まで)
DocType: Training Event,Workshop,ワークショップ
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,購入注文を警告する
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,あなたの顧客の一部を一覧表示します。彼らは、組織や個人である可能性があります。
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,制作するのに十分なパーツ
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,制作するのに十分なパーツ
DocType: POS Profile User,POS Profile User,POSプロファイルユーザー
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,直接利益
DocType: Patient Appointment,Date TIme,日付時刻
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account",アカウント別にグループ化されている場合、アカウントに基づいてフィルタリングすることはできません
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account",アカウント別にグループ化されている場合、アカウントに基づいてフィルタリングすることはできません
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,管理担当者
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,会社と税金の設定
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,コースを選択してください
@ -644,7 +645,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,差損益
DocType: Purchase Invoice,Supplier GSTIN,サプライヤーGSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,依存するタスク{0}がクローズされていないため、タスクをクローズできません
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,資材要求が発生する倉庫を入力してください
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,資材要求が発生する倉庫を入力してください
DocType: Production Order,Additional Operating Cost,追加の営業費用
DocType: Lab Test Template,Lab Routine,ラボルーチン
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,化粧品
@ -812,7 +813,7 @@ DocType: Employee,Passport Number,パスポート番号
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Guardian2との関係
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,マネージャー
DocType: Payment Entry,Payment From / To,/からへの支払い
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},新たな与信限度は、顧客の現在の残高よりも少ないです。与信限度は、少なくとも{0}である必要があります
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},新たな与信限度は、顧客の現在の残高よりも少ないです。与信限度は、少なくとも{0}である必要があります
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},倉庫{0}にアカウントを設定してください
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,「参照元」と「グループ元」は同じにすることはできません
DocType: Sales Person,Sales Person Targets,営業担当者の目標
@ -823,7 +824,7 @@ DocType: Lab Test Template,Compound,化合物
DocType: Student Batch Name,Batch Name,バッチ名
DocType: Fee Validity,Max number of visit,訪問の最大数
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,タイムシートを作成しました:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},支払方法{0}にデフォルトの現金や銀行口座を設定してください
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},支払方法{0}にデフォルトの現金や銀行口座を設定してください
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,登録します
DocType: GST Settings,GST Settings,GSTの設定
DocType: Selling Settings,Customer Naming By,顧客名設定
@ -947,7 +948,7 @@ DocType: Delivery Note,Customer's Purchase Order No,顧客の発注番号
DocType: Budget,Budget Against,予算に対する
DocType: Employee,Cell Number,携帯電話の番号
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,与えられた基準の従業員はいません。給与明細がまだ作成されていないことを確認します。
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,自動資材要求生成済
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,自動資材要求生成済
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,失われた
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,「対仕訳入力」列に対してこの伝票を入力することはできません
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,製造業のために予約済み
@ -955,7 +956,7 @@ DocType: Soil Texture,Sand,砂
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,エネルギー
DocType: Opportunity,Opportunity From,機会元
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,月次給与計算書。
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,行{0}{1}アイテム{2}に必要なシリアル番号。あなたは{3}を提供しました。
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,行{0}{1}アイテム{2}に必要なシリアル番号。あなたは{3}を提供しました。
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,テーブルを選択してください
DocType: BOM,Website Specifications,ウェブサイトの仕様
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0}は「受信者」のメールアドレスが無効です
@ -1050,7 +1051,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,見積もり依頼
DocType: Vital Signs,Heart Rate / Pulse,心拍数/パルス
DocType: Company,Default Bank Account,デフォルト銀行口座
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first",「当事者」に基づいてフィルタリングするには、最初の「当事者タイプ」を選択してください
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first",「当事者」に基づいてフィルタリングするには、最初の「当事者タイプ」を選択してください
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},アイテムが{0}経由で配送されていないため、「在庫更新」はチェックできません
DocType: Vehicle,Acquisition Date,取得日
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,番号
@ -1074,7 +1075,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),あなたの手紙の頭をアップロードしてください900pxで100pxとしてウェブフレンドリーにしてください
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}:アカウント{2}グループにすることはできません
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,アイテム行{idxの}{DOCTYPE} {DOCNAME}上に存在しない &#39;{文書型}&#39;テーブル
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,タイムシート{0}はすでに完了またはキャンセルされます
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,タイムシート{0}はすでに完了またはキャンセルされます
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,いいえタスクはありません
DocType: Item Variant Settings,Copy Fields to Variant,フィールドをバリアントにコピー
DocType: Asset,Opening Accumulated Depreciation,減価償却累計額を開きます
@ -1186,9 +1187,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,部分組立品資材計画
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,販売パートナーと地域
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,部品表{0}はアクティブでなければなりません
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),終了(オープニング+合計)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),終了(オープニング+合計)
DocType: Journal Entry,Depreciation Entry,減価償却エントリ
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,文書タイプを選択してください
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,アカウント通貨で印刷
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,このメンテナンス訪問をキャンセルする前に資材訪問{0}をキャンセルしなくてはなりません
DocType: Crop Cycle,ISO 8016 standard,ISO 8016規格
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},アイテム {1} に関連付けが無いシリアル番号 {0}
@ -1214,7 +1216,7 @@ DocType: Purchase Receipt,Range,幅
DocType: Supplier,Default Payable Accounts,デフォルト買掛金勘定
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,従業員{0}はアクティブでないか、存在しません
DocType: Fee Structure,Components,コンポーネント
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},アイテムのアセットカテゴリを入力してください{0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},アイテムのアセットカテゴリを入力してください{0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,アイテムバリエーション{0}を更新しました
DocType: Quality Inspection Reading,Reading 6,報告要素6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1266,6 +1268,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,(会社名)
DocType: SMS Center,Total Message(s),全メッセージ
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,配送のためのアイテムを選択
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,セットアップ&gt;設定&gt;ネーミングシリーズで{0}のネーミングシリーズを設定してください
DocType: Purchase Invoice,Additional Discount Percentage,追加割引パーセンテージ
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,ヘルプ動画リストを表示
DocType: Agriculture Analysis Criteria,Soil Texture,土壌テクスチャ
@ -1293,7 +1296,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,BOMのウェブサイトのアイテム
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,レターヘッドとロゴをアップロードします(後で編集可能です)
DocType: Timesheet Detail,Bill,ビル
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,次の減価償却日は過去の日付として入力され、
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,次の減価償却日は過去の日付として入力され、
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,ホワイト
DocType: SMS Center,All Lead (Open),全リード(オープン)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),行{0}{2} {3})エントリの時間を掲示で{1}倉庫内の{4}の数量は利用できません
@ -1311,7 +1314,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,次回連絡日
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,数量を開く
DocType: Healthcare Settings,Appointment Reminder,アポイントメントリマインダ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,変更金額のためにアカウントを入力してください
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,変更金額のためにアカウントを入力してください
DocType: Program Enrollment Tool Student,Student Batch Name,学生バッチ名
DocType: Consultation,Doctor,医師
DocType: Holiday List,Holiday List Name,休日リストの名前
@ -1327,6 +1330,7 @@ DocType: Patient,Patient Relation,患者関係
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,休暇割当ツール
DocType: Item,Hub Category to Publish,公開するハブカテゴリ
DocType: Leave Block List,Leave Block List Dates,休暇リスト日付
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,セットアップ&gt;ナンバリングシリーズで出席者用のナンバリングシリーズをセットアップしてください
DocType: Sales Invoice,Billing Address GSTIN,請求先住所GSTIN
DocType: Assessment Plan,Evaluate,評価する
DocType: Workstation,Net Hour Rate,時給総計
@ -1360,7 +1364,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,領収書アイテム
DocType: Purchase Receipt,PREC-RET-,PREC-RET-
DocType: POS Profile,Sales Invoice Payment,売上請求書の支払い
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,受注の予約倉庫/完成品倉庫
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,販売額
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,販売額
DocType: Repayment Schedule,Interest Amount,利息額
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,あなたはこのレコードの経費承認者です。「ステータス」を更新し保存してください。
DocType: Serial No,Creation Document No,作成ドキュメントNo
@ -1451,7 +1455,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,期首残高
,GST Sales Register,GSTセールスレジスタ
DocType: Sales Invoice Advance,Sales Invoice Advance,前払金
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,要求するものがありません
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,要求するものがありません
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,あなたのドメインを選択してください
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},別の予算レコードは、 &#39;{0}&#39;は既にに対して存在します{1} &#39;{2}&#39;年度の{3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,フィールドは作成時にのみコピーされます。
@ -1461,11 +1465,11 @@ DocType: Cheque Print Template,Payer Settings,支払人の設定
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""",これはバリエーションのアイテムコードに追加されます。あなたの略称が「SM」であり、アイテムコードが「T-SHIRT」である場合は、バリエーションのアイテムコードは、「T-SHIRT-SM」になります
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,給与伝票を保存すると給与が表示されます。
DocType: Purchase Invoice,Is Return,返品
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,あぶない
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,あぶない
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,リターン/デビットノート
DocType: Price List Country,Price List Country,価格表内の国
DocType: Item,UOMs,数量単位
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},アイテム {1} の有効なシリアル番号 {0}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},アイテム {1} の有効なシリアル番号 {0}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,アイテムコードはシリアル番号に付け替えることができません
DocType: Purchase Invoice Item,UOM Conversion Factor,数量単位の変換係数
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,バッチ番号を取得するために、商品コードを入力してください
@ -1569,7 +1573,7 @@ DocType: Journal Entry,Get Outstanding Invoices,未払いの請求を取得
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,受注{0}は有効ではありません
DocType: Supplier Scorecard,Warn for new Request for Quotations,新しい見積もり要求を警告する
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,購買発注は、あなたの購入を計画し、フォローアップに役立ちます
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged",企業はマージできません
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged",企業はマージできません
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,ラボテストの処方箋
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",素材要求の総発行/転送量{0}が{1} \項目のための要求数量{2}を超えることはできません{3}
@ -1607,7 +1611,6 @@ DocType: Vehicle,Fuel UOM,燃料UOM
DocType: Warehouse,Warehouse Contact Info,倉庫連絡先情報
DocType: Payment Entry,Write Off Difference Amount,差額をオフ書きます
DocType: Volunteer,Volunteer Name,ボランティア名
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,インストラクターの教育におけるネーミングシステムの設定&gt;教育の設定
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent",{0}:したがって、電子メールで送信されないことがわかっていない従業員の電子メール、
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},国{0}に配送規則が適用されない
DocType: Item,Foreign Trade Details,外国貿易詳細
@ -1619,7 +1622,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,グループロール番号
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry",{0}には、別の借方エントリに対する貸方勘定のみリンクすることができます
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,すべてのタスクの重みの合計は1に応じて、すべてのプロジェクトのタスクの重みを調整してくださいする必要があります
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,納品書{0}は提出されていません
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,納品書{0}は提出されていません
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,アイテム{0}は下請けアイテムでなければなりません
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,資本設備
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.",価格設定ルールは、「適用」フィールドに基づき、アイテム、アイテムグループ、ブランドとすることができます。
@ -1644,7 +1647,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,子供の倉庫は、この倉庫のために存在します。あなたはこの倉庫を削除することはできません。
DocType: Item,Website Item Groups,ウェブサイトのアイテムグループ
DocType: Purchase Invoice,Total (Company Currency),計(会社通貨)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,シリアル番号{0}は複数回入力されています
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,シリアル番号{0}は複数回入力されています
DocType: Journal Entry,Journal Entry,仕訳
DocType: Expense Claim Advance,Unclaimed amount,未請求金額
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,進行中の{0}アイテム
@ -1740,7 +1743,7 @@ DocType: Email Digest,For Company,会社用
apps/erpnext/erpnext/config/support.py +17,Communication log.,通信ログ。
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.",見積依頼は、複数のチェックポータルの設定のために、ポータルからのアクセスに無効になっています。
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,サプライヤスコアカードスコアリング変数
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,購入金額
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,購入金額
DocType: Sales Invoice,Shipping Address Name,配送先住所
DocType: Material Request,Terms and Conditions Content,規約の内容
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,コーススケジュールを作成中にエラーが発生しました
@ -2005,7 +2008,7 @@ DocType: Expense Claim,Total Amount Reimbursed,総払戻額
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,これは、この車両に対するログに基づいています。詳細については、以下のタイムラインを参照してください。
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},対サプライヤー請求書{0} 日付{1}
DocType: Customer,Default Price List,デフォルト価格表
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,資産運動レコード{0}を作成
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,資産運動レコード{0}を作成
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,あなたは年度{0}を削除することはできません。年度{0}はグローバル設定でデフォルトとして設定されています
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,同じ名前の顧客が既に存在している
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,これにより、給与伝票が提出され、見越ジャーナルエントリが作成されます。続行しますか?
@ -2019,6 +2022,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,価格設定
DocType: Quotation,Term Details,用語解説
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,この学生グループのため{0}の学生よりも多くを登録することはできません。
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),合計(税なし)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,リードカウント
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} は0より大きくなければなりません
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,在庫有ります
@ -2037,7 +2041,6 @@ DocType: Lab Test,Technician Name,技術者の名前
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,請求書のキャンセルにお支払いのリンクを解除
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},入力された現在の走行距離計の読みは、初期の車両走行距離よりも大きくなければなりません{0}
DocType: Restaurant Reservation,No Show,全く見せない
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,セットアップ&gt;設定&gt;ネーミングシリーズで{0}のネーミングシリーズを設定してください
DocType: Shipping Rule Country,Shipping Rule Country,国の出荷ルール
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,ままにして、出席
DocType: Maintenance Visit,Partially Completed,一部完了
@ -2129,7 +2132,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,学生グループインストラクター
DocType: Grant Application,Assessment Mark (Out of 10),アセスメントマーク10のうち
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2モバイルはありません
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,メイン
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,メイン
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,バリエーション
DocType: Naming Series,Set prefix for numbering series on your transactions,取引に連番の接頭辞を設定
DocType: Employee Attendance Tool,Employees HTML,従業員HTML
@ -2177,7 +2180,7 @@ DocType: Crop,Crop Spacing,切り抜き間隔
DocType: Course,Course Abbreviation,コースの略
DocType: Student Leave Application,Student Leave Application,学生休業申出
DocType: Item,Will also apply for variants,バリエーションについても適用されます
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}",{0}として既に存在する資産をキャンセルすることはできません
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}",{0}として既に存在する資産をキャンセルすることはできません
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},上半分の日に従業員{0} {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},総労働時間は最大労働時間よりも大きくてはいけません{0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,オン
@ -2362,9 +2365,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),(タイムシートを介して)実際の終了日
DocType: Soil Texture,Soil Type,土壌タイプ
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},量{0} {1} {2} {3}に対して、
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,新しいメッセージ
,Quotation Trends,見積傾向
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},アイテム{0}のアイテムマスターにはアイテムグループが記載されていません
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,借方計上は売掛金勘定でなければなりません
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,借方計上は売掛金勘定でなければなりません
DocType: Shipping Rule,Shipping Amount,出荷量
DocType: Supplier Scorecard Period,Period Score,期間スコア
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,顧客を追加する
@ -2375,7 +2379,7 @@ DocType: Purchase Order,Delivered,納品済
,Vehicle Expenses,車両費
DocType: Serial No,Invoice Details,請求書の詳細
DocType: Grant Application,Show on Website,ウェブサイトに表示
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},耐用年数後の期待値は以上である必要があります{0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},耐用年数後の期待値は以上である必要があります{0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,始める
DocType: Hub Category,Hub Category,ハブカテゴリ
DocType: Purchase Invoice,SEZ,SEZ
@ -2406,7 +2410,7 @@ DocType: Patient,Patient Details,患者の詳細
DocType: Patient,B Positive,Bポジティブ
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.",行#{0}項目は固定資産であるとして数量は、1でなければなりません。複数の数量のための個別の行を使用してください。
DocType: Leave Block List Allow,Leave Block List Allow,許可する休暇リスト
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,略称は、空白またはスペースにすることはできません
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,略称は、空白またはスペースにすることはできません
DocType: Patient Medical Record,Patient Medical Record,患者の医療記録
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,グループから非グループ
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,スポーツ
@ -2456,6 +2460,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,受信RFQをいいえ引用符に設定できません
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,控除合計
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,口座通貨で印刷する口座を選択してください
,Production Analytics,生産分析
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,これは、この患者に対する取引に基づいています。詳細は以下のタイムラインを参照してください
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,費用更新
@ -2510,7 +2515,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,明
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,会社を選択...
DocType: Leave Control Panel,Leave blank if considered for all departments,全部門が対象の場合は空白のままにします
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).",雇用タイプ(正社員、契約社員、インターンなど)
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0}はアイテム{1}に必須です
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0}はアイテム{1}に必須です
DocType: Payroll Entry,Fortnightly,2週間ごとの
DocType: Currency Exchange,From Currency,通貨から
DocType: Vital Signs,Weight (In Kilogram),重量(キログラム)
@ -2586,7 +2591,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),基本額(会社通貨
DocType: Student,Guardians,ガーディアン
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,価格表が設定されていない場合の価格は表示されません
DocType: Stock Entry,Total Incoming Value,収入価値合計
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,デビットへが必要とされます
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,デビットへが必要とされます
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team",タイムシートは、あなたのチームによって行わのactivitesのための時間、コストおよび課金を追跡するのに役立ち
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,仕入価格表
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,サプライヤスコアカード変数のテンプレート。
@ -2687,7 +2692,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,参考用
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},医者{0}は{1}で利用できません
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,バッチ番号を選択
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},無効な{0}{1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},無効な{0}{1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Fee Validity,Reference Inv,参照Inv
@ -2724,8 +2729,8 @@ DocType: Fees,Send Payment Request,支払いリクエストを送る
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.",「運用」には「運用コスト」「固有の運用番号」を指定してください。
DocType: Water Analysis,Origin,原点
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,この文書では、アイテム{4}の{0} {1}によって限界を超えています。あなたが作っている同じに対して別の{3} {2}
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,保存した後、繰り返し設定をしてください
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,変化量のアカウントを選択
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,保存した後、繰り返し設定をしてください
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,変化量のアカウントを選択
DocType: Purchase Invoice,Price List Currency,価格表の通貨
DocType: Naming Series,User must always select,ユーザーは常に選択する必要があります
DocType: Stock Settings,Allow Negative Stock,マイナス在庫を許可
@ -2782,7 +2787,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,メンテナン
DocType: Supplier Scorecard,Warn for new Purchase Orders,新規購買発注の警告
DocType: Quality Inspection Reading,Reading 9,報告要素9
DocType: Supplier,Is Frozen,凍結
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,グループノード倉庫が取引のために選択することが許可されていません
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,グループノード倉庫が取引のために選択することが許可されていません
DocType: Buying Settings,Buying Settings,購入設定
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,完成品アイテムの部品表番号
DocType: Upload Attendance,Attendance To Date,出勤日
@ -2796,6 +2801,7 @@ DocType: Offer Letter,Accepted,承認済
DocType: Grant Application,Organization,組織
DocType: BOM Update Tool,BOM Update Tool,BOM更新ツール
DocType: SG Creation Tool Course,Student Group Name,学生グループ名
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,分解されたビューを表示する
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,手数料の作成
apps/erpnext/erpnext/setup/doctype/company/company.js +91,Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone.,本当にこの会社のすべての取引を削除するか確認してください。マスタデータは残ります。このアクションは、元に戻すことはできません。
DocType: Room,Room Number,部屋番号
@ -2806,7 +2812,7 @@ DocType: Journal Entry Account,Payroll Entry,給与計算エントリ
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,税テンプレートを作る
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,ユーザーフォーラム
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,原材料は空白にできません。
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.",請求書は、ドロップシッピングの項目を含む、株式を更新できませんでした。
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.",請求書は、ドロップシッピングの項目を含む、株式を更新できませんでした。
DocType: Lab Test Sample,Lab Test Sample,ラボテストサンプル
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,クイック仕訳エントリー
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,アイテムに対して部品表が記載されている場合は、レートを変更することができません
@ -2877,7 +2883,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,米ドル
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,請求書を作成
DocType: Selling Settings,Auto close Opportunity after 15 days,15日後にオートクローズ機会
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,スコアカードが{1}のため、購買発注は{0}には許可されません。
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,スコアカードが{1}のため、購買発注は{0}には許可されません。
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,終了年
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,見積もり/リード%
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,契約終了日は、入社日よりも大きくなければなりません
@ -2996,7 +3002,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90以上
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,行#{0}:仕訳は、{1}アカウント{2}を持っているか、すでに別のバウチャーに対して一致しません
DocType: Supplier Scorecard Criteria,Criteria Weight,基準重量
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,サプライヤ&gt;サプライヤタイプ
DocType: Buying Settings,Default Buying Price List,デフォルト購入価格表
DocType: Payroll Entry,Salary Slip Based on Timesheet,タイムシートに基づいて給与スリップ
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,購入率
@ -3084,7 +3089,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,業種によってリードを追跡
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,レターヘッドに行く
DocType: Item Supplier,Item Supplier,アイテムサプライヤー
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,バッチ番号を取得するためにアイテムコードを入力をしてください
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,バッチ番号を取得するためにアイテムコードを入力をしてください
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},{0} quotation_to {1} の値を選択してください
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,全ての住所。
DocType: Company,Stock Settings,在庫設定
@ -3272,6 +3277,7 @@ DocType: Employee Loan,Loan Details,ローン詳細
DocType: Company,Default Inventory Account,デフォルトの在庫アカウント
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,行{0}:完了数量はゼロより大きくなければなりません。
DocType: Antibiotic,Antibiotic Name,抗生物質名
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,商品コード&gt;商品グループ&gt;ブランド
DocType: Purchase Invoice,Apply Additional Discount On,追加割引に適用
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,タイプを選択...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,作物が成長しているすべての土地単位へのリンク
@ -3465,6 +3471,7 @@ DocType: Guardian Student,Guardian Student,ガーディアン学生
DocType: Supplier,Credit Limit,与信限度
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,平均販売価格リストレート
DocType: Production Plan Sales Order,Salse Order Date,受注日
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,サプライヤ&gt;サプライヤタイプ
DocType: Salary Component,Salary Component,給与コンポーネント
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,支払エントリ{0}は未リンクされています
DocType: GL Entry,Voucher No,伝票番号
@ -3473,7 +3480,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,最も人気の
DocType: Leave Allocation,Leave Allocation,休暇割当
DocType: Payment Request,Recipient Message And Payment Details,受信者のメッセージと支払いの詳細
DocType: Training Event,Trainer Email,トレーナーメール
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,資材要求{0}は作成済
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,資材要求{0}は作成済
DocType: Restaurant Reservation,No of People,人々の数
DocType: Production Planning Tool,Include sub-contracted raw materials,下請け原料を含めます
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,規約・契約用テンプレート
@ -3537,7 +3544,7 @@ DocType: Landed Cost Item,Receipt Document,領収書のドキュメント
DocType: Production Planning Tool,Create Material Requests,資材要求を作成
DocType: Employee Education,School/University,学校/大学
DocType: Payment Request,Reference Details,リファレンス詳細
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,残存価額は購入総額未満でなければなりません
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,残存価額は購入総額未満でなければなりません
DocType: Sales Invoice Item,Available Qty at Warehouse,倉庫の利用可能数量
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,請求金額
DocType: Asset,Double Declining Balance,ダブル定率
@ -3549,7 +3556,7 @@ DocType: Attendance,On Leave,休暇中
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,アップデートを入手
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}:アカウントは、{2}会社に所属していない{3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,各属性から少なくとも1つの値を選択します。
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,資材要求{0}はキャンセルまたは停止されています
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,資材要求{0}はキャンセルまたは停止されています
apps/erpnext/erpnext/config/hr.py +310,Leave Management,休暇管理
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,勘定によるグループ
DocType: Sales Order,Fully Delivered,全て納品済
@ -3560,14 +3567,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},支出額は、ローン額を超えることはできません{0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,プログラムに行く
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},行{0}#割り当てられた金額{1}は請求されていない金額{2}より大きくすることはできません
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,セットアップ&gt;ナンバリングシリーズで出席者用のナンバリングシリーズをセットアップしてください
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},アイテム{0}には発注番号が必要です
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,製造指図が作成されていません
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',「終了日」は「開始日」の後にしてください。
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},学生としてのステータスを変更することはできません{0}学生のアプリケーションとリンクされている{1}
DocType: Asset,Fully Depreciated,完全に減価償却
,Stock Projected Qty,予測在庫数
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},顧客{0}はプロジェクト{1}に属していません
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},顧客{0}はプロジェクト{1}に属していません
DocType: Employee Attendance Tool,Marked Attendance HTML,著しい出席HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers",名言は、あなたの顧客に送られてきた入札提案されています
DocType: Sales Order,Customer's Purchase Order,顧客の購入注文
@ -3651,7 +3657,7 @@ DocType: Salary Slip,Hour Rate,時給
DocType: Stock Settings,Item Naming By,アイテム命名
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},別の期間の決算仕訳 {0} が {1} の後に作成されています
DocType: Production Order,Material Transferred for Manufacturing,製造用移設資材
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,アカウント{0}が存在しません
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,アカウント{0}が存在しません
DocType: Project,Project Type,プロジェクトタイプ
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,このタスクの子タスクが存在します。このタスクは削除できません。
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,ターゲット数量や目標量のどちらかが必須です。
@ -3753,11 +3759,11 @@ DocType: C-Form,I,私
DocType: Company,Asset Depreciation Cost Center,資産減価償却コストセンター
DocType: Sales Order Item,Sales Order Date,受注日
DocType: Sales Invoice Item,Delivered Qty,納品済数量
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,合計Excl。税金
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.",チェックした場合、各生産アイテムのすべての子供たちは、素材の要求に含まれます。
DocType: Assessment Plan,Assessment Plan,評価計画
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,顧客{0}が作成されました。
DocType: Stock Settings,Limit Percent,リミットパーセント
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,インストラクターの教育におけるネーミングシステムの設定&gt;教育の設定
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,現在、どの倉庫でも在庫がありません
,Payment Period Based On Invoice Date,請求書の日付に基づく支払期間
DocType: Sample Collection,No. of print,印刷枚数
@ -3773,12 +3779,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),債務者({0}
DocType: Pricing Rule,Margin,マージン
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,新規顧客
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,粗利益%
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,粗利益%
DocType: Appraisal Goal,Weightage (%),重み付け(%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,POSプロファイルの変更
DocType: Bank Reconciliation Detail,Clearance Date,決済日
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,アセスメントレポート
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,購入総額は必須です
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,購入総額は必須です
DocType: Lead,Address Desc,住所種別
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,党は必須です
DocType: Journal Entry,JV-,JV-
@ -3810,7 +3816,6 @@ DocType: Account,Accumulated Depreciation,減価償却累計額
DocType: Supplier Scorecard Scoring Standing,Standing Name,立っている名前
DocType: Stock Entry,Customer or Supplier Details,顧客またはサプライヤー詳細
DocType: Employee Loan Application,Required by Date,日によって必要とされます
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),クローズバランスDr-Cr
DocType: Lead,Lead Owner,リード所有者
DocType: Bin,Requested Quantity,要求された数量
DocType: Patient,Marital Status,配偶者の有無
@ -3824,7 +3829,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,複数のバリアント
DocType: Sales Invoice,Against Income Account,対損益勘定
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}%配送済
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,アイテム{0}:発注数量{1}は最小注文数量{2}(アイテム内で定義)より小さくすることはできません
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,アイテム{0}:発注数量{1}は最小注文数量{2}(アイテム内で定義)より小さくすることはできません
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,月次配分割合
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,別のユーザーとしてログインしてください。
DocType: Territory,Territory Targets,ターゲット地域
@ -3923,7 +3928,7 @@ DocType: Program Enrollment,School House,スクールハウス
DocType: Serial No,Out of AMC,年間保守契約外
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,予約された減価償却の数は、減価償却費の合計数を超えることはできません
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,メンテナンス訪問を作成
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,販売マスターマネージャー{0}の役割を持っているユーザーに連絡してください
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,販売マスターマネージャー{0}の役割を持っているユーザーに連絡してください
DocType: Company,Default Cash Account,デフォルトの現金勘定
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,会社(顧客・サプライヤーではない)のマスター
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,これは、この生徒の出席に基づいています
@ -4073,7 +4078,6 @@ DocType: Delivery Note Item,From Warehouse,倉庫から
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,上記基準の従業員はいません
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,製造する部品表BOMを持つアイテムいいえ
DocType: Restaurant,Default Customer,デフォルト顧客
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,従業員の命名システムを人事管理&gt; HR設定で設定してください
DocType: Assessment Plan,Supervisor Name,上司の名前
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,予定が同じ日に作成されているかどうかを確認しない
DocType: Program Enrollment Course,Program Enrollment Course,プログラム入学コース
@ -4191,7 +4195,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,ウェブサイトの説明
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,資本の純変動
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,最新
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,最初の購入請求書{0}をキャンセルしてください
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,最初の購入請求書{0}をキャンセルしてください
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}",電子メールアドレスは一意である必要があり、すでに{0}のために存在します
DocType: Serial No,AMC Expiry Date,年間保守契約の有効期限日
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,領収書
@ -4208,7 +4212,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,まだカス
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,キャッシュフロー計算書
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},融資額は、{0}の最大融資額を超えることはできません。
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,ライセンス
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},C-フォーム{1}から請求書{0}を削除してください
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},C-フォーム{1}から請求書{0}を削除してください
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,過去の会計年度の残高を今年度に含めて残したい場合は「繰り越す」を選択してください
DocType: GL Entry,Against Voucher Type,対伝票タイプ
DocType: Physician,Phone (R),電話R
@ -4220,7 +4224,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,Bネガティブ
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,メンテナンスステータスをキャンセルするか、送信完了する必要があります
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},アカウント{0} は会社 {1} に所属していません
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,行{0}のシリアル番号が配達メモと一致しません
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,行{0}のシリアル番号が配達メモと一致しません
DocType: Student,Guardian Details,ガーディアン詳細
DocType: C-Form,C-Form,C-フォーム
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,複数の従業員のためのマーク出席
@ -4262,7 +4266,7 @@ DocType: Opening Invoice Creation Tool,Sales,販売
DocType: Stock Entry Detail,Basic Amount,基本額
DocType: Training Event,Exam,試験
DocType: Complaint,Complaint,苦情
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},在庫アイテム{0}には倉庫が必要です
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},在庫アイテム{0}には倉庫が必要です
DocType: Leave Allocation,Unused leaves,未使用の休暇
DocType: Patient,Alcohol Past Use,アルコールの過去使用
DocType: Fertilizer Content,Fertilizer Content,肥料の内容
@ -4386,6 +4390,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,シリアル番号
DocType: Lab Test Template,Lab Test Template,ラボテストテンプレート
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,セールスアカウント
DocType: Purchase Invoice Item,Total Weight,総重量
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,販売手数料
DocType: Offer Letter Term,Value / Description,値/説明
@ -4542,7 +4547,7 @@ Updated via 'Time Log'",「時間ログ」からアップデートされた分
DocType: Customer,From Lead,リードから
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,製造の指示
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,年度選択...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,POSエントリを作成するためにはPOSプロフィールが必要です
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,POSエントリを作成するためにはPOSプロフィールが必要です
DocType: Program Enrollment Tool,Enroll Students,学生を登録
DocType: Lab Test,Approved Date,承認日
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,標準販売
@ -4619,7 +4624,7 @@ DocType: Employee,Held On,開催
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,生産アイテム
,Employee Information,従業員の情報
DocType: Stock Entry Detail,Additional Cost,追加費用
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher",伝票でグループ化されている場合、伝票番号でフィルタリングすることはできません。
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher",伝票でグループ化されている場合、伝票番号でフィルタリングすることはできません。
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,サプライヤ見積を作成
DocType: Quality Inspection,Incoming,収入
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,販売および購買のデフォルト税テンプレートが登録されます。
@ -4636,7 +4641,7 @@ DocType: Batch,Batch ID,バッチID
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},注:{0}
,Delivery Note Trends,納品書の動向
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,今週の概要
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,在庫数量で
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,在庫数量で
DocType: Delivery Trip,Calculate Estimated Arrival Times,推定到着時間の計算
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,アカウント:{0}のみ株式取引を介して更新することができます
DocType: Student Group Creation Tool,Get Courses,コースを取得
@ -4652,7 +4657,7 @@ DocType: Purchase Order,To Bill,請求先
DocType: Material Request,% Ordered,%注文済
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.",コースベースの学生グループの場合、コースはプログラム登録のコースからすべての生徒のために検証されます。
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,出来高制
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,平均購入レート
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,平均購入レート
DocType: Task,Actual Time (in Hours),実際の時間(時)
DocType: Employee,History In Company,会社での履歴
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},{送信者}からの新しいメッセージ
@ -4700,7 +4705,7 @@ DocType: Asset Repair,Asset Repair,資産修理
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},行{0}BOMのの通貨は、{1}選択した通貨と同じでなければなりません{2}
DocType: Journal Entry Account,Exchange Rate,為替レート
DocType: Patient,Additional information regarding the patient,患者に関する追加情報
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,受注{0}は提出されていません
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,受注{0}は提出されていません
DocType: Homepage,Tag Line,タグライン
DocType: Fee Component,Fee Component,手数料コンポーネント
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,フリート管理
@ -4912,7 +4917,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,評価結果の詳細
DocType: Employee Education,Employee Education,従業員教育
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,項目グループテーブルで見つかった重複するアイテム群
DocType: Land Unit,Parent Land Unit,親土地単位
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,これは、アイテムの詳細を取得するために必要とされます。
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,これは、アイテムの詳細を取得するために必要とされます。
DocType: Fertilizer,Fertilizer Name,肥料名
DocType: Salary Slip,Net Pay,給与総計
DocType: Account,Account,アカウント
@ -4991,7 +4996,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),実際の数量(ソ
DocType: Item Customer Detail,Ref Code,参照コード
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,POSプロファイルで得意先グループが必要
apps/erpnext/erpnext/config/hr.py +12,Employee records.,従業員レコード
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,次の減価償却日を設定してください
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,次の減価償却日を設定してください
DocType: HR Settings,Payroll Settings,給与計算の設定
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,リンクされていない請求書と支払を照合
DocType: POS Settings,POS Settings,POS設定
@ -5158,7 +5163,7 @@ DocType: Item,Customer Code,顧客コード
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},{0}のための誕生日リマインダー
DocType: Asset Maintenance Task,Last Completion Date,最終完了日
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,最新注文からの日数
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,借方アカウントは貸借対照表アカウントである必要があります
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,借方アカウントは貸借対照表アカウントである必要があります
DocType: Buying Settings,Naming Series,シリーズ名を付ける
DocType: Leave Block List,Leave Block List Name,休暇リスト名
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,保険開始日は、保険終了日未満でなければなりません
@ -5286,6 +5291,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,支払エントリを取得します。
DocType: Quotation Item,Against Docname,文書名に対して
DocType: SMS Center,All Employee (Active),全ての従業員(アクティブ)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,顧客&gt;顧客グループ&gt;テリトリー
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,表示
DocType: BOM,Raw Material Cost,原材料費
DocType: Item Reorder,Re-Order Level,再注文レベル
@ -5384,7 +5390,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,座席定員
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,ラボテストグループ
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,顧客&gt;顧客グループ&gt;テリトリー
DocType: Project,Total Expense Claim (via Expense Claims),総経費請求(経費請求経由)
DocType: GST Settings,GST Summary,GSTサマリー
DocType: Assessment Result,Total Score,合計スコア
@ -5397,7 +5402,7 @@ DocType: Batch,Source Document Type,ソースドキュメントタイプ
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,その後、コースのスケジュールが作成されました
DocType: Journal Entry,Total Debit,借方合計
DocType: Manufacturing Settings,Default Finished Goods Warehouse,デフォルト完成品倉庫
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,営業担当
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,営業担当
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,予算とコストセンター
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,複数のデフォルトの支払い方法は許可されていません
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,のために
@ -5570,7 +5575,7 @@ DocType: Program,Program Name,プログラム名
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,税金・料金を考慮
DocType: Driver,Driving License Category,運転免許証カテゴリ
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,実際の数量は必須です
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0}には現在、{1}サプライヤスコアカードがあり、このサプライヤへの購入注文は慎重に発行する必要があります。
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0}には現在、{1}サプライヤスコアカードがあり、このサプライヤへの購入注文は慎重に発行する必要があります。
DocType: Asset Maintenance Team,Asset Maintenance Team,資産管理チーム
DocType: Employee Loan,Loan Type,ローンの種類
DocType: Scheduling Tool,Scheduling Tool,スケジューリングツール

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,វេជ្ជបញ្ជាមន
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,តម្រៀបតាមតម្លៃ
,Delay Days,ពន្យារពេល
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,ការចំណាយសេវា
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},លេខស៊េរី: {0} ត្រូវបានយោងរួចហើយនៅក្នុងវិក័យប័ត្រលក់: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},លេខស៊េរី: {0} ត្រូវបានយោងរួចហើយនៅក្នុងវិក័យប័ត្រលក់: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,វិក័យប័ត្រ
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,ធ្វើឱ្យធាតុរក្សាទុក
DocType: Purchase Invoice Item,Item Weight Details,ព័ត៌មានលម្អិតទម្ងន់
@ -149,7 +149,7 @@ DocType: Patient,Married,រៀបការជាមួយ
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},មិនត្រូវបានអនុញ្ញាតសម្រាប់ {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,ទទួលបានធាតុពី
DocType: Price List,Price Not UOM Dependant,តម្លៃមិនមែន UOM អ្នកអាស្រ័យ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},ភាគហ៊ុនដែលមិនអាចធ្វើបច្ចុប្បន្នភាពការប្រឆាំងនឹងការដឹកជញ្ជូនចំណាំ {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},ភាគហ៊ុនដែលមិនអាចធ្វើបច្ចុប្បន្នភាពការប្រឆាំងនឹងការដឹកជញ្ជូនចំណាំ {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},ផលិតផល {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,គ្មានធាតុដែលបានរាយ
DocType: Asset Repair,Error Description,កំហុសការពិពណ៌នា
@ -157,7 +157,7 @@ DocType: Payment Reconciliation,Reconcile,សម្របសម្រួល
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,គ្រឿងទេស
DocType: Quality Inspection Reading,Reading 1,ការអានទី 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,មូលនិធិសោធននិវត្តន៍
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,រំលស់បន្ទាប់កាលបរិច្ឆេទមិនអាចមុនពេលទិញកាលបរិច្ឆេទ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,រំលស់បន្ទាប់កាលបរិច្ឆេទមិនអាចមុនពេលទិញកាលបរិច្ឆេទ
DocType: Crop,Perennial,មានអាយុច្រើនឆ្នាំ
DocType: Consultation,Consultation Date,កាលបរិច្ឆេទពិគ្រោះ
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,ការចុះបញ្ជីនិងការរកឃើញផលិតផលសម្រាប់អ្នកប្រើ ERPNext
@ -172,7 +172,7 @@ DocType: POS Profile,Write Off Cost Center,បិទការសរសេរម
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""",ឧទាហរណ៍ &quot;សាលាបឋមសិក្សា&quot; ឬ &quot;សាកលវិទ្យាល័យ&quot;
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,របាយការណ៍ភាគហ៊ុន
DocType: Warehouse,Warehouse Detail,ពត៌មានលំអិតឃ្លាំង
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},ដែនកំណត់ឥណទានត្រូវបានឆ្លងកាត់សម្រាប់អតិថិជន {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},ដែនកំណត់ឥណទានត្រូវបានឆ្លងកាត់សម្រាប់អតិថិជន {0} {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,កាលបរិច្ឆេទបញ្ចប់រយៈពេលមិនអាចមាននៅពេលក្រោយជាងឆ្នាំបញ្ចប់កាលបរិច្ឆេទនៃឆ្នាំសិក្សាដែលរយៈពេលនេះត្រូវបានតភ្ជាប់ (អប់រំឆ្នាំ {}) ។ សូមកែកាលបរិច្ឆេទនិងព្យាយាមម្ដងទៀត។
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item",«តើអចលន &quot;មិនអាចត្រូវបានធីកមានទ្រព្យសម្បត្តិដែលជាកំណត់ត្រាប្រឆាំងនឹងធាតុ
DocType: Delivery Trip,Departure Time,មោងចាកចេញ
@ -192,7 +192,7 @@ DocType: Student Log,Student Log,កំណត់ហេតុរបស់សិ
DocType: Quality Inspection,Get Specification Details,ទទួលបានព័ត៌មានលម្អិតជាក់លាក់
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,គំរូនៃចំណាត់ថ្នាក់ក្រុមហ៊ុនផ្គត់ផ្គង់។
DocType: Lead,Interested,មានការចាប់អារម្មណ៍
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,ពិធីបើក
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,ពិធីបើក
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},ពី {0} ទៅ {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,បានបរាជ័យក្នុងការដំឡើងពន្ធ
DocType: Item,Copy From Item Group,ការចម្លងពីធាតុគ្រុប
@ -363,7 +363,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,បន្ថយកាលបរិច្ឆេទត្រូវតែធំជាងកាលបរិច្ឆេទនៃការចូលរួម
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,ស្លឹកមួយឆ្នាំ
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,ជួរដេក {0}: សូមពិនិត្យមើលតើជាមុនប្រឆាំងគណនី {1} ប្រសិនបើនេះជាធាតុជាមុន។
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},ឃ្លាំង {0} មិនមែនជាកម្មសិទ្ធិរបស់ក្រុមហ៊ុន {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},ឃ្លាំង {0} មិនមែនជាកម្មសិទ្ធិរបស់ក្រុមហ៊ុន {1}
DocType: Email Digest,Profit & Loss,ប្រាក់ចំណេញនិងការបាត់បង់
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,Litre
DocType: Task,Total Costing Amount (via Time Sheet),សរុបការចំណាយចំនួនទឹកប្រាក់ (តាមរយៈសន្លឹកម៉ោង)
@ -455,6 +455,7 @@ DocType: BOM Item,Rate & Amount,អត្រា &amp; បរិមាណ
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,នេះគឺផ្អែកទៅលើប្រតិបត្តិការប្រឆាំងនឹងក្រុមហ៊ុននេះ។ សូមមើលតារាងពេលវេលាខាងក្រោមសម្រាប់ព័ត៌មានលំអិត
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,ជូនដំណឹងដោយអ៊ីមែលនៅលើការបង្កើតសម្ភារៈស្នើសុំដោយស្វ័យប្រវត្តិ
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,មានភាពធន់ទ្រាំ
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Consultationt
DocType: Journal Entry,Multi Currency,រូបិយប័ណ្ណពហុ
DocType: Opening Invoice Creation Tool,Invoice Type,ប្រភេទវិក័យប័ត្រ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,ដឹកជញ្ជូនចំណាំ
@ -527,7 +528,6 @@ DocType: Email Digest,Credit Balance,សមតុល្យឥណទាន
DocType: Employee,Widowed,មេម៉ាយ
DocType: Request for Quotation,Request for Quotation,សំណើរសម្រាប់សម្រង់
DocType: Healthcare Settings,Require Lab Test Approval,តម្រូវឱ្យមានការធ្វើតេស្តសាកល្បង
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,លេខកូដធាតុ&gt; ក្រុមធាតុ&gt; ម៉ាក
DocType: Salary Slip Timesheet,Working Hours,ម៉ោងធ្វើការ
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,ចំនួនឆ្នើមសរុប
DocType: Naming Series,Change the starting / current sequence number of an existing series.,ផ្លាស់ប្តូរការចាប់ផ្តើមលេខលំដាប់ / នាពេលបច្ចុប្បន្ននៃស៊េរីដែលមានស្រាប់។
@ -556,7 +556,7 @@ DocType: Subscription,Yearly,រាល់ឆ្នាំ
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,សូមបញ្ចូលមជ្ឈមណ្ឌលការចំណាយ
DocType: Drug Prescription,Dosage,កិតើ
DocType: Journal Entry Account,Sales Order,សណ្តាប់ធ្នាប់ការលក់
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,ជាមធ្យម។ អត្រាការលក់
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,ជាមធ្យម។ អត្រាការលក់
DocType: Assessment Plan,Examiner Name,ពិនិត្យឈ្មោះ
DocType: Lab Test Template,No Result,គ្មានលទ្ធផល
DocType: Purchase Invoice Item,Quantity and Rate,បរិមាណនិងអត្រាការប្រាក់
@ -604,6 +604,7 @@ DocType: Employee,Health Concerns,ការព្រួយបារម្ភស
DocType: Payroll Entry,Select Payroll Period,ជ្រើសរយៈពេលបើកប្រាក់បៀវត្ស
DocType: Purchase Invoice,Unpaid,គ្មានប្រាក់ខែ
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,បានបម្រុងទុកសម្រាប់លក់
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,សូមរៀបចំប្រព័ន្ធដាក់ឈ្មោះនិយោជិកនៅក្នុងធនធានមនុស្ស&gt; ការកំណត់ធនធានមនុស្ស
DocType: Packing Slip,From Package No.,ពីលេខកញ្ចប់
DocType: Item Attribute,To Range,ដើម្បីជួរ
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,មូលបត្រនិងប្រាក់បញ្ញើ
@ -628,11 +629,11 @@ DocType: Pricing Rule,Valid Upto,រីករាយជាមួយនឹងម
DocType: Training Event,Workshop,សិក្ខាសាលា
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,ព្រមានការបញ្ជាទិញ
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,រាយមួយចំនួននៃអតិថិជនរបស់អ្នក។ ពួកគេអាចត្រូវបានអង្គការឬបុគ្គល។
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,ផ្នែកគ្រប់គ្រាន់ដើម្បីកសាង
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,ផ្នែកគ្រប់គ្រាន់ដើម្បីកសាង
DocType: POS Profile User,POS Profile User,អ្នកប្រើប្រាស់បណ្តាញ POS
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,ប្រាក់ចំណូលដោយផ្ទាល់
DocType: Patient Appointment,Date TIme,ពេលណាត់ជួប
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","មិនអាចត្រងដោយផ្អែកលើគណនី, ប្រសិនបើការដាក់ជាក្រុមតាមគណនី"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","មិនអាចត្រងដោយផ្អែកលើគណនី, ប្រសិនបើការដាក់ជាក្រុមតាមគណនី"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,មន្រ្តីរដ្ឋបាល
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,ការបង្កើតក្រុមហ៊ុននិងពន្ធ
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,សូមជ្រើសវគ្គសិក្សា
@ -642,7 +643,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,គណនីមានភាពខុសគ្នា
DocType: Purchase Invoice,Supplier GSTIN,GSTIN ក្រុមហ៊ុនផ្គត់ផ្គង់
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,មិនអាចភារកិច្ចជិតស្និទ្ធដូចជាការពឹងផ្អែករបស់ខ្លួនមានភារកិច្ច {0} គឺមិនត្រូវបានបិទ។
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,សូមបញ្ចូលឃ្លាំងដែលសម្ភារៈស្នើសុំនឹងត្រូវបានលើកឡើង
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,សូមបញ្ចូលឃ្លាំងដែលសម្ភារៈស្នើសុំនឹងត្រូវបានលើកឡើង
DocType: Production Order,Additional Operating Cost,ចំណាយប្រតិបត្តិការបន្ថែម
DocType: Lab Test Template,Lab Routine,មន្ទីរពិសោធន៍ជាទម្លាប់
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,គ្រឿងសំអាង
@ -810,7 +811,7 @@ DocType: Employee,Passport Number,លេខលិខិតឆ្លងដែន
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,ទំនាក់ទំនងជាមួយ Guardian2
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,កម្មវិធីគ្រប់គ្រង
DocType: Payment Entry,Payment From / To,ការទូទាត់ពី / ទៅ
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},កំណត់ឥណទានថ្មីនេះគឺមានចំនួនតិចជាងប្រាក់ដែលលេចធ្លោនាពេលបច្ចុប្បន្នសម្រាប់អតិថិជន។ ចំនួនកំណត់ឥណទានមានដើម្បីឱ្យមានយ៉ាងហោចណាស់ {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},កំណត់ឥណទានថ្មីនេះគឺមានចំនួនតិចជាងប្រាក់ដែលលេចធ្លោនាពេលបច្ចុប្បន្នសម្រាប់អតិថិជន។ ចំនួនកំណត់ឥណទានមានដើម្បីឱ្យមានយ៉ាងហោចណាស់ {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},សូមកំណត់គណនីនៅក្នុងឃ្លាំង {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,"'ដោយផ្អែកលើ ""និង"" ក្រុមដោយ' មិនអាចដូចគ្នា"
DocType: Sales Person,Sales Person Targets,ការលក់មនុស្សគោលដៅ
@ -821,7 +822,7 @@ DocType: Lab Test Template,Compound,បរិវេណ
DocType: Student Batch Name,Batch Name,ឈ្មោះបាច់
DocType: Fee Validity,Max number of visit,ចំនួនអតិបរមានៃដំណើរទស្សនកិច្ច
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,Timesheet បង្កើត:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},សូមកំណត់លំនាំដើមឬគណនីសាច់ប្រាក់របស់ធនាគារក្នុងរបៀបនៃការទូទាត់ {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},សូមកំណត់លំនាំដើមឬគណនីសាច់ប្រាក់របស់ធនាគារក្នុងរបៀបនៃការទូទាត់ {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,ចុះឈ្មោះ
DocType: GST Settings,GST Settings,ការកំណត់ជីអេសធី
DocType: Selling Settings,Customer Naming By,ឈ្មោះអតិថិជនដោយ
@ -945,7 +946,7 @@ DocType: Delivery Note,Customer's Purchase Order No,ការទិញរបស
DocType: Budget,Budget Against,ថវិកាប្រឆាំងនឹង
DocType: Employee,Cell Number,លេខទូរស័ព្ទ
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,មិនមាននិយោជិតណាសម្រាប់លក្ខណៈវិនិច្ឆ័យដែលបានផ្តល់ទេ។ សូមពិនិត្យមើលថាប្រាក់ខែប្រាក់ខែមិនទាន់ត្រូវបានបង្កើតទេ។
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,សម្ភារៈដោយស្វ័យប្រវត្តិសំណើបង្កើត
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,សម្ភារៈដោយស្វ័យប្រវត្តិសំណើបង្កើត
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,ការបាត់បង់
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,អ្នកមិនអាចបញ្ចូលទឹកប្រាក់ក្នុងពេលបច្ចុប្បន្ននៅក្នុងការប្រឆាំងនឹងការធាតុទិនានុប្បវត្តិ &quot;ជួរឈរ
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,បានបម្រុងទុកសម្រាប់ការផលិត
@ -953,7 +954,7 @@ DocType: Soil Texture,Sand,ខ្សាច់
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,ថាមពល
DocType: Opportunity,Opportunity From,ឱកាសការងារពី
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,សេចក្តីថ្លែងការប្រាក់បៀវត្សរ៍ប្រចាំខែ។
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,ជួរដេក {0}: {1} លេខរៀងដែលទាមទារសម្រាប់ធាតុ {2} ។ អ្នកបានផ្តល់ {3} ។
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,ជួរដេក {0}: {1} លេខរៀងដែលទាមទារសម្រាប់ធាតុ {2} ។ អ្នកបានផ្តល់ {3} ។
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,សូមជ្រើសរើសតារាង
DocType: BOM,Website Specifications,ជាក់លាក់វេបសាយ
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} គឺជាអាសយដ្ឋានអ៊ីមែលមិនត្រឹមត្រូវនៅក្នុង &#39;អ្នកទទួល&#39;
@ -1022,7 +1023,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,សំណូមពរដែលបានស្នើ
DocType: Vital Signs,Heart Rate / Pulse,អត្រាចង្វាក់បេះដូង / បេះដូង
DocType: Company,Default Bank Account,គណនីធនាគារលំនាំដើម
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first",ដើម្បីត្រងដោយផ្អែកទៅលើគណបក្សជ្រើសគណបក្សវាយជាលើកដំបូង
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first",ដើម្បីត្រងដោយផ្អែកទៅលើគណបក្សជ្រើសគណបក្សវាយជាលើកដំបូង
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},"""Update ស្តុក 'មិនអាចជ្រើសរើសបាន ដោយសារ មុខទំនិញមិនត្រូវបានដឹកជញ្ជូនតាមរយៈ {0}"
DocType: Vehicle,Acquisition Date,ការទិញយកកាលបរិច្ឆេទ
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,nos
@ -1046,7 +1047,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),ផ្ទុកឡើងក្បាលសំបុត្ររបស់អ្នក (រក្សាទុកវារួមមានលក្ខណៈងាយស្រួលតាមបណ្ដាញ 900px ដោយ 100px)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: គណនី {2} មិនអាចជាក្រុមមួយ
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,ធាតុជួរដេក {idx}: {} {DOCNAME DOCTYPE} មិនមាននៅក្នុងខាងលើ &#39;{DOCTYPE}&#39; តុ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,Timesheet {0} ត្រូវបានបញ្ចប់រួចទៅហើយឬលុបចោល
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,Timesheet {0} ត្រូវបានបញ្ចប់រួចទៅហើយឬលុបចោល
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,គ្មានភារកិច្ច
DocType: Item Variant Settings,Copy Fields to Variant,ចម្លងវាលទៅវ៉ារ្យង់
DocType: Asset,Opening Accumulated Depreciation,រំលស់បង្គរបើក
@ -1158,9 +1159,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,សម្ភារៈផែនការសម្រាប់ការអនុសភា
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,ដៃគូលក់និងដែនដី
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,Bom {0} ត្រូវតែសកម្ម
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),ការបិទ (បើក + សរុប)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),ការបិទ (បើក + សរុប)
DocType: Journal Entry,Depreciation Entry,ចូលរំលស់
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,សូមជ្រើសប្រភេទឯកសារនេះជាលើកដំបូង
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,បោះពុម្ពជារូបិយប័ណ្ណគណនី
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,បោះបង់ការមើលសម្ភារៈ {0} មុនពេលលុបចោលដំណើរទស្សនកិច្ចនេះជួសជុល
DocType: Crop Cycle,ISO 8016 standard,ស្តង់ដារ ISO 8016
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},សៀរៀលគ្មាន {0} មិនមែនជារបស់ធាតុ {1}
@ -1186,7 +1188,7 @@ DocType: Purchase Receipt,Range,ជួរ
DocType: Supplier,Default Payable Accounts,គណនីទូទាត់លំនាំដើម
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,បុគ្គលិក {0} គឺមិនសកម្មឬមិនមានទេ
DocType: Fee Structure,Components,សមាសភាគ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},សូមបញ្ចូលប្រភេទទ្រព្យសម្បត្តិនៅក្នុងធាតុ {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},សូមបញ្ចូលប្រភេទទ្រព្យសម្បត្តិនៅក្នុងធាតុ {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,ធាតុវ៉ារ្យ៉ង់ {0} ធ្វើឱ្យទាន់សម័យ
DocType: Quality Inspection Reading,Reading 6,ការអាន 6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1238,6 +1240,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,ឈ្មោះក្រុមហ៊ុន
DocType: SMS Center,Total Message(s),សារសរុប (s បាន)
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,ជ្រើសធាតុសម្រាប់ការផ្ទេរ
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,សូមកំណត់ស៊ុមឈ្មោះសម្រាប់ {0} តាម Setup&gt; Settings&gt; Naming Series
DocType: Purchase Invoice,Additional Discount Percentage,ការបញ្ចុះតម្លៃបន្ថែមទៀតភាគរយ
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,មើលបញ្ជីនៃការជួយវីដេអូទាំងអស់
DocType: Agriculture Analysis Criteria,Soil Texture,វាយនភាពដី
@ -1265,7 +1268,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,ធាតុគេហទំព័រ Bom
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,ផ្ទុកឡើងក្បាលលិខិតនិងស្លាកសញ្ញារបស់អ្នក។ (អ្នកអាចកែសម្រួលពួកវានៅពេលក្រោយ) ។
DocType: Timesheet Detail,Bill,វិក័យប័ត្រ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,រំលស់ត្រូវបានបញ្ចូលកាលបរិច្ឆេទបន្ទាប់កាលបរិច្ឆេទកន្លងមកដែលជា
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,រំលស់ត្រូវបានបញ្ចូលកាលបរិច្ឆេទបន្ទាប់កាលបរិច្ឆេទកន្លងមកដែលជា
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,សេត
DocType: SMS Center,All Lead (Open),អ្នកដឹកនាំការទាំងអស់ (ការបើកចំហ)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),ជួរដេក {0}: Qty មិនមានសម្រាប់ {4} នៅក្នុងឃ្លាំង {1} នៅក្នុងប្រកាសពេលនៃធាតុ ({2} {3})
@ -1281,7 +1284,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,ទំនាក់ទំនងបន្ទាប់កាលបរិច្ឆេទ
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,បើក Qty
DocType: Healthcare Settings,Appointment Reminder,ការរំលឹកការណាត់
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,សូមបញ្ចូលគណនីសម្រាប់ការផ្លាស់ប្តូរចំនួនទឹកប្រាក់
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,សូមបញ្ចូលគណនីសម្រាប់ការផ្លាស់ប្តូរចំនួនទឹកប្រាក់
DocType: Program Enrollment Tool Student,Student Batch Name,ឈ្មោះបាច់សិស្ស
DocType: Consultation,Doctor,វេជ្ជបណ្ឌិត
DocType: Holiday List,Holiday List Name,បញ្ជីថ្ងៃឈប់សម្រាកឈ្មោះ
@ -1297,6 +1300,7 @@ DocType: Patient,Patient Relation,ទំនាក់ទំនងរវាងអ
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,ទុកឱ្យឧបករណ៍បម្រុងទុក
DocType: Item,Hub Category to Publish,ប្រភេទមជ្ឈមណ្ឌលសម្រាប់បោះពុម្ព
DocType: Leave Block List,Leave Block List Dates,ទុកឱ្យប្លុកថ្ងៃបញ្ជី
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,សូមរៀបចំស៊េរីលេខរៀងសម្រាប់ការចូលរួមតាមរយៈ Setup&gt; Serial Number
DocType: Sales Invoice,Billing Address GSTIN,អាសយដ្ឋានវិក័យប័ត្រ GSTIN
DocType: Assessment Plan,Evaluate,វាយតម្លៃ
DocType: Workstation,Net Hour Rate,អត្រាហួរសុទ្ធ
@ -1330,7 +1334,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,ធាតុបង្កាន
DocType: Purchase Receipt,PREC-RET-,PREC-RET-
DocType: POS Profile,Sales Invoice Payment,ទូទាត់វិក័យប័ត្រលក់
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,ឃ្លាំងត្រូវបានបម្រុងទុកនៅក្នុងការលក់លំដាប់ / ឃ្លាំងទំនិញបានបញ្ចប់
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,ចំនួនលក់
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,ចំនួនលក់
DocType: Repayment Schedule,Interest Amount,ចំនួនការប្រាក់
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,អ្នកគឺជាអ្នកដែលមានការយល់ព្រមចំណាយសម្រាប់កំណត់ត្រានេះ។ សូមធ្វើឱ្យទាន់សម័យនេះ &#39;ស្ថានភាព&#39; និងរក្សាទុក
DocType: Serial No,Creation Document No,ការបង្កើតឯកសារគ្មាន
@ -1421,7 +1425,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,បើកសមតុល្យគណនី
,GST Sales Register,ជីអេសធីលក់ចុះឈ្មោះ
DocType: Sales Invoice Advance,Sales Invoice Advance,ការលក់វិក័យប័ត្រជាមុន
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,គ្មានអ្វីដែលត្រូវស្នើសុំ
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,គ្មានអ្វីដែលត្រូវស្នើសុំ
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,ជ្រើសដែនរបស់អ្នក
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},កំណត់ត្រាថវិកាមួយផ្សេងទៀត &#39;{0}&#39; រួចហើយប្រឆាំងនឹង {1} &#39;{2} &quot;សម្រាប់ឆ្នាំសារពើពន្ធ {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,វាលនឹងត្រូវបានចំលងតែនៅពេលនៃការបង្កើតប៉ុណ្ណោះ។
@ -1431,11 +1435,11 @@ DocType: Cheque Print Template,Payer Settings,ការកំណត់អ្ន
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","នេះនឹងត្រូវបានបន្ថែមទៅក្នុងក្រមធាតុនៃវ៉ារ្យ៉ង់នោះ។ ឧទាហរណ៍ប្រសិនបើអក្សរកាត់របស់អ្នកគឺ &quot;ផលិតកម្ម SM&quot; និងលេខកូដធាតុគឺ &quot;អាវយឺត&quot;, លេខកូដធាតុនៃវ៉ារ្យ៉ង់នេះនឹងត្រូវបាន &quot;អាវយឺត-ផលិតកម្ម SM&quot;"
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,ប្រាក់ចំណេញសុទ្ធ (និយាយម្យ៉ាង) នឹងមើលឃើញនៅពេលដែលអ្នករក្សាទុកប័ណ្ណប្រាក់បៀវត្ស។
DocType: Purchase Invoice,Is Return,តើការវិលត្រឡប់
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,ប្រយ័ត្ន
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,ប្រយ័ត្ន
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,ការវិលត្រឡប់ / ឥណពន្ធចំណាំ
DocType: Price List Country,Price List Country,បញ្ជីតម្លៃប្រទេស
DocType: Item,UOMs,UOMs
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} បាន NOS សម្គាល់ត្រឹមត្រូវសម្រាប់ធាតុ {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} បាន NOS សម្គាល់ត្រឹមត្រូវសម្រាប់ធាតុ {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,ក្រមធាតុមិនអាចត្រូវបានផ្លាស់ប្តូរសម្រាប់លេខស៊េរី
DocType: Purchase Invoice Item,UOM Conversion Factor,UOM កត្តាប្រែចិត្តជឿ
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,សូមបញ្ចូលលេខកូដធាតុដើម្បីទទួលបានលេខបាច់
@ -1539,7 +1543,7 @@ DocType: Journal Entry,Get Outstanding Invoices,ទទួលបានវិក
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,លំដាប់ការលក់ {0} មិនត្រឹមត្រូវ
DocType: Supplier Scorecard,Warn for new Request for Quotations,ព្រមានសម្រាប់សំណើថ្មីសម្រាប់សម្រង់
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,ការបញ្ជាទិញជួយអ្នកមានគម្រោងនិងតាមដាននៅលើការទិញរបស់អ្នក
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","សូមអភ័យទោស, ក្រុមហ៊ុនមិនអាចត្រូវបានបញ្ចូលគ្នា"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","សូមអភ័យទោស, ក្រុមហ៊ុនមិនអាចត្រូវបានបញ្ចូលគ្នា"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,វេជ្ជបញ្ជាសាកល្បង
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",បរិមាណបញ្ហា / សេវាផ្ទេរប្រាក់សរុប {0} នៅក្នុងសំណើសម្ភារៈ {1} \ មិនអាចច្រើនជាងបរិមាណដែលបានស្នើរសុំ {2} សម្រាប់ធាតុ {3}
@ -1577,7 +1581,6 @@ DocType: Vehicle,Fuel UOM,ប្រេងឥន្ធនៈ UOM
DocType: Warehouse,Warehouse Contact Info,ឃ្លាំងពត៌មានទំនាក់ទំនង
DocType: Payment Entry,Write Off Difference Amount,សរសេរបិទចំនួនទឹកប្រាក់ផ្សេងគ្នា
DocType: Volunteer,Volunteer Name,ឈ្មោះស្ម័គ្រចិត្ត
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,សូមបង្កើតប្រព័ន្ធដាក់ឈ្មោះគ្រូបង្រៀននៅក្នុងការអប់រំ&gt; ការកំណត់អប់រំ
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0}: រកមិនឃើញអ៊ីម៉ែលបុគ្គលិក, ហេតុនេះមិនបានចាត់អ៊ីមែល"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},ច្បាប់ដឹកជញ្ជូនមិនអាចអនុវត្តបានសម្រាប់ប្រទេស {0}
DocType: Item,Foreign Trade Details,សេចក្ដីលម្អិតពាណិជ្ជកម្មបរទេស
@ -1589,7 +1592,7 @@ apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.
DocType: Student Group Student,Group Roll Number,លេខវិលគ្រុប
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry",{0} មានតែគណនីឥណទានអាចត្រូវបានតភ្ជាប់ប្រឆាំងនឹងធាតុឥណពន្ធផ្សេងទៀត
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,សរុបនៃភារកិច្ចទាំងអស់គួរតែមានទម្ងន់ 1. សូមលៃតម្រូវត្រូវមានភារកិច្ចគម្រោងទម្ងន់ទាំងអស់ទៅតាម
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,ការដឹកជញ្ជូនចំណាំ {0} គឺមិនត្រូវបានដាក់ស្នើ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,ការដឹកជញ្ជូនចំណាំ {0} គឺមិនត្រូវបានដាក់ស្នើ
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,ធាតុ {0} ត្រូវតែជាធាតុអនុចុះកិច្ចសន្យា
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,ឧបករណ៍រាជធានី
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.",វិធានកំណត់តម្លៃដំបូងត្រូវបានជ្រើសដោយផ្អែកលើ &#39;អនុវត្តនៅលើ&#39; វាលដែលអាចជាធាតុធាតុក្រុមឬម៉ាក។
@ -1614,7 +1617,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,ឃ្លាំងកុមារមានសម្រាប់ឃ្លាំងនេះ។ អ្នកមិនអាចលុបឃ្លាំងនេះ។
DocType: Item,Website Item Groups,ក្រុមធាតុវេបសាយ
DocType: Purchase Invoice,Total (Company Currency),សរុប (ក្រុមហ៊ុនរូបិយវត្ថុ)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,លេខសម្គាល់ {0} បានចូលច្រើនជាងមួយដង
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,លេខសម្គាល់ {0} បានចូលច្រើនជាងមួយដង
DocType: Journal Entry,Journal Entry,ធាតុទិនានុប្បវត្តិ
DocType: Expense Claim Advance,Unclaimed amount,ចំនួនទឹកប្រាក់មិនបានទាមទារ
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} ធាតុនៅក្នុងការរីកចំរើន
@ -1710,7 +1713,7 @@ DocType: Email Digest,For Company,សម្រាប់ក្រុមហ៊ុ
apps/erpnext/erpnext/config/support.py +17,Communication log.,កំណត់ហេតុនៃការទំនាក់ទំនង។
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.",សំណើរសម្រាប់សម្រង់ត្រូវបានបិទដើម្បីចូលដំណើរការបានពីវិបផតថលសម្រាប់ការកំណត់វិបផតថលពិនិត្យបន្ថែមទៀត។
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,ប័ណ្ណពិន្ទុរបស់អ្នកផ្គត់ផ្គង់អង្កេតអថេរ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,ចំនួនទឹកប្រាក់នៃការទិញ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,ចំនួនទឹកប្រាក់នៃការទិញ
DocType: Sales Invoice,Shipping Address Name,ការដឹកជញ្ជូនឈ្មោះអាសយដ្ឋាន
DocType: Material Request,Terms and Conditions Content,លក្ខខណ្ឌមាតិកា
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,មានកំហុសក្នុងការបង្កើតកាលវិភាគវគ្គសិក្សា
@ -1973,7 +1976,7 @@ DocType: Expense Claim,Total Amount Reimbursed,ចំនួនទឹកប្រ
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,នេះផ្អែកលើកំណត់ហេតុប្រឆាំងនឹងរថយន្តនេះ។ សូមមើលខាងក្រោមសម្រាប់សេចក្ដីលម្អិតកំណត់ពេលវេលា
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},ប្រឆាំងនឹងការផ្គត់ផ្គង់វិក័យប័ត្រ {0} {1} ចុះកាលបរិច្ឆេទ
DocType: Customer,Default Price List,តារាងតម្លៃលំនាំដើម
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,កំណត់ត្រាចលនាទ្រព្យសកម្ម {0} បង្កើតឡើង
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,កំណត់ត្រាចលនាទ្រព្យសកម្ម {0} បង្កើតឡើង
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,អ្នកមិនអាចលុបឆ្នាំសារពើពន្ធ {0} ។ ឆ្នាំសារពើពន្ធ {0} ត្រូវបានកំណត់ជាលំនាំដើមនៅក្នុងការកំណត់សកល
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,អតិថិជនដែលមានឈ្មោះដូចគ្នាមានរួចហើយ
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,នេះនឹងបង្ហាញប្រាក់បៀវត្សរ៍និងបង្កើតប្រាក់ចំណូលចូលក្នុង Journal Entry ។ តើអ្នកចង់បន្តទេ?
@ -1987,6 +1990,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,ការកំណត់តម្លៃ
DocType: Quotation,Term Details,ពត៌មានលំអិតរយៈពេល
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,មិនអាចចុះឈ្មោះចូលរៀនច្រើនជាង {0} សិស្សសម្រាប់ក្រុមនិស្សិតនេះ។
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),សរុប (ដោយគ្មានពន្ធ)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,អ្នកដឹកនាំការរាប់
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} ត្រូវតែធំជាង 0
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +30,Stock Available,មានភាគហ៊ុន
@ -2005,7 +2009,6 @@ DocType: Lab Test,Technician Name,ឈ្មោះអ្នកបច្ចេក
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,ដោះតំណទូទាត់វិក័យប័ត្រនៅលើការលុបចោល
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},បច្ចុប្បន្នប្រដាប់វាស់ចម្ងាយបានចូលអានគួរតែត្រូវបានរថយន្តធំជាងដំបូង {0} ប្រដាប់វាស់ចម្ងាយ
DocType: Restaurant Reservation,No Show,គ្មានការបង្ហាញ
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,សូមកំណត់ស៊ុមឈ្មោះសម្រាប់ {0} តាម Setup&gt; Settings&gt; Naming Series
DocType: Shipping Rule Country,Shipping Rule Country,វិធានការដឹកជញ្ជូនក្នុងប្រទេស
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,ទុកឱ្យនិងការចូលរួម
DocType: Maintenance Visit,Partially Completed,បានបញ្ចប់ដោយផ្នែក
@ -2096,7 +2099,7 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch
DocType: Student Group Instructor,Student Group Instructor,ក្រុមនិស្សិតគ្រូបង្រៀន
DocType: Grant Application,Assessment Mark (Out of 10),ការវាយតម្លៃសម្គាល់ (ក្នុងចំណោម 10)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 ទូរស័ព្ទដៃគ្មាន
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,ដើមចម្បង
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,ដើមចម្បង
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,វ៉ារ្យ៉ង់
DocType: Naming Series,Set prefix for numbering series on your transactions,កំណត់បុព្វបទសម្រាប់លេខស៊េរីលើប្រតិបតិ្តការរបស់អ្នក
DocType: Employee Attendance Tool,Employees HTML,និយោជិករបស់ HTML
@ -2144,7 +2147,7 @@ DocType: Crop,Crop Spacing,ច្រឹបកាត់
DocType: Course,Course Abbreviation,អក្សរកាត់ការពិតណាស់
DocType: Student Leave Application,Student Leave Application,កម្មវិធីទុកឱ្យសិស្ស
DocType: Item,Will also apply for variants,ក៏នឹងអនុវត្តសម្រាប់វ៉ារ្យ៉ង់
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","ទ្រព្យសម្បត្តិដែលមិនអាចត្រូវបានលុបចោល, ដូចដែលវាមានរួចទៅ {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","ទ្រព្យសម្បត្តិដែលមិនអាចត្រូវបានលុបចោល, ដូចដែលវាមានរួចទៅ {0}"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},បុគ្គលិក {0} នៅថ្ងៃពាក់កណ្តាលនៅលើ {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},ម៉ោងធ្វើការសរុបមិនគួរត្រូវបានធំជាងម៉ោងធ្វើការអតិបរមា {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,នៅថ្ងៃទី
@ -2328,9 +2331,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),បញ្ចប់ពិតប្រាកដកាលបរិច្ឆេទ (តាមរយៈសន្លឹកម៉ោង)
DocType: Soil Texture,Soil Type,ប្រភេទដី
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},ចំនួនទឹកប្រាក់ {0} {1} ប្រឆាំងនឹង {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,សារថ្មី
,Quotation Trends,សម្រង់និន្នាការ
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},ធាតុគ្រុបមិនបានរៀបរាប់នៅក្នុងមេធាតុសម្រាប់ធាតុ {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,ឥណពន្ធវីសាទៅគណនីត្រូវតែជាគណនីដែលទទួល
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,ឥណពន្ធវីសាទៅគណនីត្រូវតែជាគណនីដែលទទួល
DocType: Shipping Rule,Shipping Amount,ចំនួនទឹកប្រាក់ការដឹកជញ្ជូន
DocType: Supplier Scorecard Period,Period Score,កំឡុងពេលកំណត់
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,បន្ថែមអតិថិជន
@ -2341,7 +2345,7 @@ DocType: Purchase Order,Delivered,បានបញ្ជូន
,Vehicle Expenses,ចំណាយយានយន្ត
DocType: Serial No,Invoice Details,សេចក្ដីលម្អិតវិក័យប័ត្រ
DocType: Grant Application,Show on Website,បង្ហាញនៅលើគេហទំព័រ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},តម្លៃដែលរំពឹងទុកបន្ទាប់ពីជីវិតដែលមានប្រយោជន៍ត្រូវតែធំជាងឬស្មើទៅនឹង {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},តម្លៃដែលរំពឹងទុកបន្ទាប់ពីជីវិតដែលមានប្រយោជន៍ត្រូវតែធំជាងឬស្មើទៅនឹង {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,ចាប់ផ្ដើម
DocType: Hub Category,Hub Category,ប្រភេទ Hub
DocType: Purchase Invoice,SEZ,តំបន់សេដ្ឋកិច្ចពិសេស
@ -2372,7 +2376,7 @@ DocType: Patient,Patient Details,ពត៌មានអ្នកជំងឺ
DocType: Patient,B Positive,B វិជ្ជមាន
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","ជួរដេក # {0}: Qty ត្រូវតែ 1, ជាធាតុជាទ្រព្យសកម្មថេរ។ សូមប្រើជួរដាច់ដោយឡែកសម្រាប់ qty ច្រើន។"
DocType: Leave Block List Allow,Leave Block List Allow,បញ្ជីប្លុកអនុញ្ញាតឱ្យចាកចេញពី
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,Abbr មិនអាចមាននៅទទេឬទំហំ
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,Abbr មិនអាចមាននៅទទេឬទំហំ
DocType: Patient Medical Record,Patient Medical Record,កំណត់ត្រាវេជ្ជសាស្រ្តរបស់អ្នកជម្ងឺ
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,ជាក្រុមការមិនគ្រុប
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,កីឡា
@ -2422,6 +2426,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,មិនអាចកំណត់ RFQ ដែលបានទទួលដើម្បីគ្មានសម្រង់
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,ការកាត់សរុប
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,ជ្រើសគណនីដើម្បីបោះពុម្ពជារូបិយប័ណ្ណគណនី
,Production Analytics,វិភាគផលិតកម្ម
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,នេះគឺផ្អែកលើប្រតិបត្តិការប្រឆាំងនឹងអ្នកជម្ងឺនេះ។ សូមមើលតារាងពេលវេលាខាងក្រោមសម្រាប់ព័ត៌មានលំអិត
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,ការចំណាយបន្ទាន់សម័យ
@ -2476,7 +2481,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,ធ
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,ជ្រើសក្រុមហ៊ុន ...
DocType: Leave Control Panel,Leave blank if considered for all departments,ប្រសិនបើអ្នកទុកវាឱ្យទទេទាំងអស់ពិចារណាសម្រាប់នាយកដ្ឋាន
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).",ប្រភេទការងារ (អចិន្ត្រយ៍កិច្ចសន្យាហាត់ជាដើម) ។
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} គឺជាការចាំបាច់សម្រាប់ធាតុ {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} គឺជាការចាំបាច់សម្រាប់ធាតុ {1}
DocType: Payroll Entry,Fortnightly,ពីរសប្តាហ៍
DocType: Currency Exchange,From Currency,ចាប់ពីរូបិយប័ណ្ណ
DocType: Vital Signs,Weight (In Kilogram),ទំងន់ (ក្នុងគីឡូក្រាម)
@ -2552,7 +2557,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),ចំនួនទឹក
DocType: Student,Guardians,អាណាព្យាបាល
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,តម្លៃនេះនឹងមិនត្រូវបានបង្ហាញទេប្រសិនបើបញ្ជីតម្លៃគឺមិនត្រូវបានកំណត់
DocType: Stock Entry,Total Incoming Value,តម្លៃចូលសរុប
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,ឥណពន្ធវីសាដើម្បីត្រូវបានទាមទារ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,ឥណពន្ធវីសាដើម្បីត្រូវបានទាមទារ
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team",Timesheets ជួយរក្សាដាននៃពេលវេលាការចំណាយនិងវិក័យប័ត្រសំរាប់ការសកម្មភាពដែលបានធ្វើដោយក្រុមរបស់អ្នក
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,បញ្ជីតម្លៃទិញ
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,គំរូនៃអថេរពិន្ទុនៃក្រុមហ៊ុនផ្គត់ផ្គង់។
@ -2653,7 +2658,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,ឯកសារយោងប៉ុណ្ណោះ។
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},គ្រូពេទ្យ {0} មិនមាននៅលើ {1}
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,ជ្រើសបាច់គ្មាន
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},មិនត្រឹមត្រូវ {0} {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},មិនត្រឹមត្រូវ {0} {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Fee Validity,Reference Inv,សេចក្តីយោងឯកសារ Inv
@ -2690,8 +2695,8 @@ DocType: Fees,Send Payment Request,ផ្ញើសំណើទូទាត់
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","បញ្ជាក់ប្រតិបត្តិការ, ការចំណាយប្រតិបត្ដិការនិងផ្ដល់ឱ្យនូវប្រតិបត្ដិការតែមួយគត់នោះទេដើម្បីឱ្យប្រតិបត្តិការរបស់អ្នក។"
DocType: Water Analysis,Origin,ប្រភពដើម
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,ឯកសារនេះលើសកំណត់ដោយ {0} {1} សម្រាប់ធាតុ {4} ។ តើអ្នកបង្កើត {3} ផ្សេងទៀតប្រឆាំងនឹង {2} ដូចគ្នាដែរឬទេ?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,សូមកំណត់កើតឡើងបន្ទាប់ពីរក្សាទុក
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,គណនីចំនួនទឹកប្រាក់ជ្រើសការផ្លាស់ប្តូរ
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,សូមកំណត់កើតឡើងបន្ទាប់ពីរក្សាទុក
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,គណនីចំនួនទឹកប្រាក់ជ្រើសការផ្លាស់ប្តូរ
DocType: Purchase Invoice,Price List Currency,បញ្ជីតម្លៃរូបិយប័ណ្ណ
DocType: Naming Series,User must always select,អ្នកប្រើដែលត្រូវតែជ្រើសតែងតែ
DocType: Stock Settings,Allow Negative Stock,អនុញ្ញាតឱ្យមានស្តុកអវិជ្ជមាន
@ -2747,7 +2752,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,ពត៌មា
DocType: Supplier Scorecard,Warn for new Purchase Orders,ព្រមានសម្រាប់ការបញ្ជាទិញថ្មី
DocType: Quality Inspection Reading,Reading 9,ការអាន 9
DocType: Supplier,Is Frozen,ត្រូវបានជាប់គាំង
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,ឃ្លាំងថ្នាំងជាក្រុមមិនត្រូវបានអនុញ្ញាតដើម្បីជ្រើសសម្រាប់ប្រតិបត្តិការ
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,ឃ្លាំងថ្នាំងជាក្រុមមិនត្រូវបានអនុញ្ញាតដើម្បីជ្រើសសម្រាប់ប្រតិបត្តិការ
DocType: Buying Settings,Buying Settings,ការកំណត់ការទិញ
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,លេខ Bom សម្រាប់ធាតុល្អបានបញ្ចប់
DocType: Upload Attendance,Attendance To Date,ចូលរួមកាលបរិច្ឆេទ
@ -2761,6 +2766,7 @@ DocType: Offer Letter,Accepted,បានទទួលយក
DocType: Grant Application,Organization,អង្គការ
DocType: BOM Update Tool,BOM Update Tool,ឧបករណ៍ធ្វើបច្ចុប្បន្នភាពមាត្រដ្ឋាន
DocType: SG Creation Tool Course,Student Group Name,ឈ្មោះក្រុមសិស្ស
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,បង្ហាញទិដ្ឋភាពដែលបានផ្ទុះ
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,បង្កើតកម្រៃ
apps/erpnext/erpnext/setup/doctype/company/company.js +91,Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone.,សូមប្រាកដថាអ្នកពិតជាចង់លុបប្រតិបតិ្តការទាំងអស់សម្រាប់ក្រុមហ៊ុននេះ។ ទិន្នន័យមេរបស់អ្នកនឹងនៅតែជាវាគឺជា។ សកម្មភាពនេះមិនអាចមិនធ្វើវិញ។
DocType: Room,Room Number,លេខបន្ទប់
@ -2771,7 +2777,7 @@ DocType: Journal Entry Account,Payroll Entry,ការចូលប្រាក
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,បង្កើតគំរូពន្ធ
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,វេទិកាអ្នកប្រើ
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,វត្ថុធាតុដើមដែលមិនអាចត្រូវបានទទេ។
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","មិនអាចធ្វើឱ្យទាន់សម័យហ៊ុន, វិក័យប័ត្រមានធាតុដឹកជញ្ជូនទម្លាក់។"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","មិនអាចធ្វើឱ្យទាន់សម័យហ៊ុន, វិក័យប័ត្រមានធាតុដឹកជញ្ជូនទម្លាក់។"
DocType: Lab Test Sample,Lab Test Sample,គំរូតេស្តមន្ទីរពិសោធន៍
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,ធាតុទិនានុប្បវត្តិរហ័ស
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,អ្នកមិនអាចផ្លាស់ប្តូរអត្រាការបានប្រសិនបើ Bom បានរៀបរាប់ agianst ធាតុណាមួយ
@ -2842,7 +2848,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,ដុល្លារអាមេរិក
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,ធ្វើឱ្យមានការវិក័យប័ត្រ
DocType: Selling Settings,Auto close Opportunity after 15 days,ដោយស្វ័យប្រវត្តិបន្ទាប់ពីឱកាសយ៉ាងជិតស្និទ្ធ 15 ថ្ងៃ
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,ការបញ្ជាទិញមិនត្រូវបានអនុញ្ញាតសម្រាប់ {0} ដោយសារតែពិន្ទុពិន្ទុនៃ {1} ។
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,ការបញ្ជាទិញមិនត្រូវបានអនុញ្ញាតសម្រាប់ {0} ដោយសារតែពិន្ទុពិន្ទុនៃ {1} ។
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,ឆ្នាំបញ្ចប់
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,quot / នាំមុខ%
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,កិច្ចសន្យាដែលកាលបរិច្ឆេទបញ្ចប់ត្រូវតែធំជាងកាលបរិច្ឆេទនៃការចូលរួម
@ -2934,7 +2940,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90 ខាងលើ
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,ជួរដេក # {0}: Journal Entry {1} មិនមានគណនី {2} ឬកាតមានទឹកប្រាក់រួចហើយបានផ្គូផ្គងប្រឆាំងនឹងផ្សេងទៀត
DocType: Supplier Scorecard Criteria,Criteria Weight,លក្ខណៈវិនិច្ឆ័យទំងន់
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,អ្នកផ្គត់ផ្គង់&gt; ប្រភេទអ្នកផ្គត់ផ្គង់
DocType: Buying Settings,Default Buying Price List,តារាងតម្លៃទិញលំនាំដើម &amp; ‧;
DocType: Payroll Entry,Salary Slip Based on Timesheet,ប័ណ្ណប្រាក់ខែដោយផ្អែកលើ Timesheet
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,អត្រាការទិញ
@ -3022,7 +3027,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,បទនាំតាមប្រភេទឧស្សាហកម្ម។
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,ទៅកាន់ក្បាលអក្សរ
DocType: Item Supplier,Item Supplier,ផ្គត់ផ្គង់ធាតុ
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,សូមបញ្ចូលលេខកូដធាតុដើម្បីទទួលបាច់នោះទេ
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,សូមបញ្ចូលលេខកូដធាតុដើម្បីទទួលបាច់នោះទេ
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},សូមជ្រើសតម្លៃសម្រាប់ {0} quotation_to {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,អាសយដ្ឋានទាំងអស់។
DocType: Company,Stock Settings,ការកំណត់តម្លៃភាគហ៊ុន
@ -3199,6 +3204,7 @@ DocType: Employee Loan,Loan Details,សេចក្ដីលម្អិតប
DocType: Company,Default Inventory Account,គណនីសារពើភ័ណ្ឌលំនាំដើម
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,ជួរដេក {0}: Qty បានបញ្ចប់ត្រូវតែធំជាងសូន្យ។
DocType: Antibiotic,Antibiotic Name,ឈ្មោះថ្នាំអង់ទីប៊ីយោទិច
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,លេខកូដធាតុ&gt; ក្រុមធាតុ&gt; ម៉ាក
DocType: Purchase Invoice,Apply Additional Discount On,អនុវត្តបន្ថែមការបញ្ចុះតម្លៃនៅលើ
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,ជ្រើសរើសប្រភេទ ...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,តំណភ្ជាប់ទៅនឹងដីទាំងអស់ដែលដំណាំកំពុងកើនឡើង
@ -3392,6 +3398,7 @@ DocType: Guardian Student,Guardian Student,អាណាព្យាបាលស
DocType: Supplier,Credit Limit,ដែនកំណត់ឥណទាន
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,មធ្យម អត្រាលក់បញ្ជីតំលៃ
DocType: Production Plan Sales Order,Salse Order Date,កាលបរិច្ឆេទ Salse លំដាប់
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,អ្នកផ្គត់ផ្គង់&gt; ប្រភេទអ្នកផ្គត់ផ្គង់
DocType: Salary Component,Salary Component,សមាសភាគប្រាក់ខែ
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,ធាតុការទូទាត់ {0} គឺជាតំណភ្ជាប់របស់អង្គការសហប្រជាជាតិ
DocType: GL Entry,Voucher No,កាតមានទឹកប្រាក់គ្មាន
@ -3400,7 +3407,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,ពេញនិ
DocType: Leave Allocation,Leave Allocation,ទុកឱ្យការបម្រុងទុក
DocType: Payment Request,Recipient Message And Payment Details,សារអ្នកទទួលនិងលម្អិតការបង់ប្រាក់
DocType: Training Event,Trainer Email,គ្រូបង្គោលអ៊ីម៉ែល
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,សំណើសម្ភារៈ {0} បង្កើតឡើង
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,សំណើសម្ភារៈ {0} បង្កើតឡើង
DocType: Restaurant Reservation,No of People,ចំនួនប្រជាជន
DocType: Production Planning Tool,Include sub-contracted raw materials,រួមបញ្ចូលវត្ថុធាតុដើមចុះកិច្ចសន្យាជាមួយ
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,ទំព័រគំរូនៃពាក្យឬកិច្ចសន្យា។
@ -3465,7 +3472,7 @@ DocType: Landed Cost Item,Receipt Document,ឯកសារបង្កាន់
DocType: Production Planning Tool,Create Material Requests,បង្កើតសម្ភារៈសំណើ
DocType: Employee Education,School/University,សាលា / សាកលវិទ្យាល័យ University
DocType: Payment Request,Reference Details,សេចក្តីយោងលំអិត
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,តម្លៃបានគេរំពឹងថាបន្ទាប់ពីជីវិតដែលមានប្រយោជន៍ត្រូវតែមានតិចជាងចំនួនទឹកប្រាក់ទិញសរុប
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,តម្លៃបានគេរំពឹងថាបន្ទាប់ពីជីវិតដែលមានប្រយោជន៍ត្រូវតែមានតិចជាងចំនួនទឹកប្រាក់ទិញសរុប
DocType: Sales Invoice Item,Available Qty at Warehouse,ដែលអាចប្រើបាន Qty នៅឃ្លាំង
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,ចំនួនទឹកប្រាក់ដែលបានផ្សព្វផ្សាយ
DocType: Asset,Double Declining Balance,ការធ្លាក់ចុះទ្វេដងតុល្យភាព
@ -3477,7 +3484,7 @@ DocType: Attendance,On Leave,ឈប់សម្រាក
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,ទទួលបានការធ្វើឱ្យទាន់សម័យ
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: គណនី {2} មិនមែនជាកម្មសិទ្ធិរបស់ក្រុមហ៊ុន {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,ជ្រើសរើសតម្លៃយ៉ាងហោចណាស់មួយពីគុណលក្ខណៈនីមួយៗ។
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,សម្ភារៈសំណើ {0} ត្រូវបានលុបចោលឬបញ្ឈប់
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,សម្ភារៈសំណើ {0} ត្រូវបានលុបចោលឬបញ្ឈប់
apps/erpnext/erpnext/config/hr.py +310,Leave Management,ទុកឱ្យការគ្រប់គ្រង
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,ក្រុមតាមគណនី
DocType: Sales Order,Fully Delivered,ផ្តល់ឱ្យបានពេញលេញ
@ -3488,14 +3495,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},ចំនួនទឹកប្រាក់ដែលបានចំណាយមិនអាចមានប្រាក់កម្ចីចំនួនធំជាង {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,ចូលទៅកាន់កម្មវិធី
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},ជួរដេក {0} # ចំនួនទឹកប្រាក់ដែលបានបម្រុងទុក {1} មិនអាចធំជាងចំនួនទឹកប្រាក់ដែលមិនបានទទួល {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,សូមរៀបចំស៊េរីលេខរៀងសម្រាប់ការចូលរួមតាមរយៈ Setup&gt; Serial Number
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},ទិញចំនួនលំដាប់ដែលបានទាមទារសម្រាប់ធាតុ {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,លំដាប់ផលិតកម្មមិនត្រូវបានបង្កើត
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"""ពីកាលបរិច្ឆេទ"" ត្រូវតែនៅបន្ទាប់ ""ដល់កាលបរិច្ឆេទ"""
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},មិនអាចផ្លាស់ប្តូរស្ថានភាពជានិស្សិត {0} ត្រូវបានផ្សារភ្ជាប់ជាមួយនឹងកម្មវិធីនិស្សិត {1}
DocType: Asset,Fully Depreciated,ធ្លាក់ថ្លៃយ៉ាងពេញលេញ
,Stock Projected Qty,គម្រោង Qty ផ្សារភាគហ៊ុន
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},អតិថិជន {0} មិនមែនជារបស់គម្រោង {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},អតិថិជន {0} មិនមែនជារបស់គម្រោង {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,វត្តមានដែលបានសម្គាល់ជា HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers",ដកស្រង់សំណើដេញថ្លៃដែលអ្នកបានផ្ញើទៅឱ្យអតិថិជនរបស់អ្នក
DocType: Sales Order,Customer's Purchase Order,ទិញលំដាប់របស់អតិថិជន
@ -3579,7 +3585,7 @@ DocType: Salary Slip,Hour Rate,ហួរអត្រា
DocType: Stock Settings,Item Naming By,ធាតុដាក់ឈ្មោះតាម
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},មួយទៀតការចូលបិទរយៈពេល {0} ត្រូវបានធ្វើឡើងបន្ទាប់ពី {1}
DocType: Production Order,Material Transferred for Manufacturing,សម្ភារៈផ្ទេរសម្រាប់កម្មន្តសាល
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,គណនី {0} មិនមាន
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,គណនី {0} មិនមាន
DocType: Project,Project Type,ប្រភេទគម្រោង
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,កិច្ចការកុមារមានសម្រាប់ភារកិច្ចនេះ។ អ្នកមិនអាចលុបភារកិច្ចនេះបានទេ។
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,ទាំង qty គោលដៅឬគោលដៅចំនួនទឹកប្រាក់គឺជាចាំបាច់។
@ -3683,11 +3689,11 @@ DocType: C-Form,I,ខ្ញុំ
DocType: Company,Asset Depreciation Cost Center,មជ្ឈមណ្ឌលតម្លៃរំលស់ទ្រព្យសម្បត្តិ
DocType: Sales Order Item,Sales Order Date,លំដាប់ការលក់កាលបរិច្ឆេទ
DocType: Sales Invoice Item,Delivered Qty,ប្រគល់ Qty
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,ចំនួនសរុបមិនរាប់បញ្ចូល ពន្ធ
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.",ប្រសិនបើបានធីកកូនទាំងអស់នៃធាតុផលិតគ្នានឹងត្រូវបញ្ចូលក្នុងសំណើសម្ភារៈ។
DocType: Assessment Plan,Assessment Plan,ផែនការការវាយតំលៃ
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,អតិថិជន {0} ត្រូវបានបង្កើត។
DocType: Stock Settings,Limit Percent,ដែនកំណត់ភាគរយ
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,សូមបង្កើតប្រព័ន្ធដាក់ឈ្មោះគ្រូបង្រៀននៅក្នុងការអប់រំ&gt; ការកំណត់អប់រំ
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,បច្ចុប្បន្នពុំមានស្តុកនៅក្នុងឃ្លាំងណាមួយឡើយ
,Payment Period Based On Invoice Date,អំឡុងពេលបង់ប្រាក់ដែលមានមូលដ្ឋានលើវិក័យប័ត្រកាលបរិច្ឆេទ
DocType: Sample Collection,No. of print,ចំនួននៃការបោះពុម្ព
@ -3703,12 +3709,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),កូនបំណុល ({0})
DocType: Pricing Rule,Margin,រឹម
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,អតិថិជនថ្មី
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,ប្រាក់ចំណេញ% សរុបបាន
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,ប្រាក់ចំណេញ% សរុបបាន
DocType: Appraisal Goal,Weightage (%),Weightage (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,ប្តូរប្រវត្តិរូប POS
DocType: Bank Reconciliation Detail,Clearance Date,កាលបរិច្ឆេទបោសសំអាត
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,របាយការណ៍វាយតម្ល្រ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,ចំនួនទឹកប្រាក់ការទិញសរុបគឺជាការចាំបាច់
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,ចំនួនទឹកប្រាក់ការទិញសរុបគឺជាការចាំបាច់
DocType: Lead,Address Desc,អាសយដ្ឋាន DESC
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,គណបក្សជាការចាំបាច់
DocType: Journal Entry,JV-,JV-
@ -3740,7 +3746,6 @@ DocType: Account,Accumulated Depreciation,រំលស់បង្គរ
DocType: Supplier Scorecard Scoring Standing,Standing Name,ឈ្មោះអចិន្ត្រៃយ៍
DocType: Stock Entry,Customer or Supplier Details,សេចក្ដីលម្អិតអតិថិជនឬផ្គត់ផ្គង់
DocType: Employee Loan Application,Required by Date,ទាមទារដោយកាលបរិច្ឆេទ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),តុល្យភាពបិទ (Dr - Cr)
DocType: Lead,Lead Owner,ការនាំមុខម្ចាស់
DocType: Bin,Requested Quantity,បរិមាណបានស្នើ
DocType: Patient,Marital Status,ស្ថានភាពគ្រួសារ
@ -3754,7 +3759,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,វ៉ារ្យ៉ង់ច្រើន
DocType: Sales Invoice,Against Income Account,ប្រឆាំងនឹងគណនីចំណូល
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% ផ្តល់
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,ធាតុ {0}: qty លំដាប់ {1} មិនអាចតិចជាង qty គោលបំណងអប្បរមា {2} (បានកំណត់ក្នុងធាតុ) ។
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,ធាតុ {0}: qty លំដាប់ {1} មិនអាចតិចជាង qty គោលបំណងអប្បរមា {2} (បានកំណត់ក្នុងធាតុ) ។
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,ភាគរយចែកចាយប្រចាំខែ
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,សូមចូលជាអ្នកប្រើផ្សេង។
DocType: Territory,Territory Targets,ទឹកដីគោលដៅ
@ -3855,7 +3860,7 @@ DocType: Program Enrollment,School House,សាលាផ្ទះ
DocType: Serial No,Out of AMC,ចេញពីមជ្ឈមណ្ឌល AMC
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,ចំនួននៃការធ្លាក់ចុះបានកក់មិនអាចច្រើនជាងចំនួនសរុបនៃការធ្លាក់ថ្លៃ
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,ធ្វើឱ្យការថែទាំទស្សនកិច្ច
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,សូមទាក់ទងទៅអ្នកប្រើដែលមានការលក់កម្មវិធីគ្រប់គ្រងអនុបណ្ឌិតតួនាទី {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,សូមទាក់ទងទៅអ្នកប្រើដែលមានការលក់កម្មវិធីគ្រប់គ្រងអនុបណ្ឌិតតួនាទី {0}
DocType: Company,Default Cash Account,គណនីសាច់ប្រាក់លំនាំដើម
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,ក្រុមហ៊ុន (មិនមានអតិថិជនឬផ្គត់) មេ។
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,នេះត្រូវបានផ្អែកលើការចូលរួមរបស់សិស្សនេះ
@ -4007,7 +4012,6 @@ DocType: Delivery Note Item,From Warehouse,ចាប់ពីឃ្លាំង
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,គ្មាននិយោជិកដែលមានលក្ខណៈវិនិច្ឆ័យដូចបានរៀបរាប់
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,គ្មានធាតុជាមួយលោក Bill នៃសម្ភារៈដើម្បីផលិត
DocType: Restaurant,Default Customer,អតិថិជនលំនាំដើម
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,សូមរៀបចំប្រព័ន្ធដាក់ឈ្មោះនិយោជិកនៅក្នុងធនធានមនុស្ស&gt; ការកំណត់ធនធានមនុស្ស
DocType: Assessment Plan,Supervisor Name,ឈ្មោះអ្នកគ្រប់គ្រង
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,កុំបញ្ជាក់ថាតើការណាត់ជួបត្រូវបានបង្កើតសម្រាប់ថ្ងៃតែមួយទេ
DocType: Program Enrollment Course,Program Enrollment Course,កម្មវិធីវគ្គបណ្តុះបណ្តាលចុះឈ្មោះ
@ -4130,7 +4134,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,វេបសាយការពិពណ៌នាសង្ខេប
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,ការផ្លាស់ប្តូរសុទ្ធនៅសមភាព
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,ថ្មីបំផុត
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,សូមបោះបង់ការទិញវិក័យប័ត្រ {0} ដំបូង
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,សូមបោះបង់ការទិញវិក័យប័ត្រ {0} ដំបូង
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","អាសយដ្ឋានអ៊ីមែលត្រូវតែមានតែមួយគត់, រួចហើយសម្រាប់ {0}"
DocType: Serial No,AMC Expiry Date,កាលបរិច្ឆេទ AMC ផុតកំណត់
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,វិក័យប័ត្រ
@ -4147,7 +4151,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,គ្មា
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,សេចក្តីថ្លែងការណ៍លំហូរសាច់ប្រាក់
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},ចំនួនទឹកប្រាក់កម្ចីមិនអាចលើសពីចំនួនទឹកប្រាក់កម្ចីអតិបរមានៃ {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,អាជ្ញាប័ណ្ណ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},សូមយកវិក័យប័ត្រនេះ {0} ពី C-សំណុំបែបបទ {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},សូមយកវិក័យប័ត្រនេះ {0} ពី C-សំណុំបែបបទ {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,សូមជ្រើសយកការទៅមុខផងដែរប្រសិនបើអ្នកចង់រួមបញ្ចូលតុល្យភាពឆ្នាំមុនសារពើពន្ធរបស់ទុកនឹងឆ្នាំសារពើពន្ធនេះ
DocType: GL Entry,Against Voucher Type,ប្រឆាំងនឹងប្រភេទប័ណ្ណ
DocType: Physician,Phone (R),ទូរស័ព្ទ (R)
@ -4159,7 +4163,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,ខអវិជ្ជមាន
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,ស្ថានភាពថែទាំត្រូវបានលុបចោលឬត្រូវបានបញ្ចប់ដើម្បីដាក់ស្នើ
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},គណនី {0} មិនជាកម្មសិទ្ធិរបស់ក្រុមហ៊ុន {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,លេខសៀរៀលនៅក្នុងជួរដេក {0} មិនផ្គូផ្គងនឹងការដឹកជញ្ជូនចំណាំ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,លេខសៀរៀលនៅក្នុងជួរដេក {0} មិនផ្គូផ្គងនឹងការដឹកជញ្ជូនចំណាំ
DocType: Student,Guardian Details,កាសែត Guardian លំអិត
DocType: C-Form,C-Form,C-សំណុំបែបបទ
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,លោក Mark វត្តមានសម្រាប់បុគ្គលិកច្រើន
@ -4201,7 +4205,7 @@ DocType: Opening Invoice Creation Tool,Sales,ការលក់
DocType: Stock Entry Detail,Basic Amount,ចំនួនទឹកប្រាក់ជាមូលដ្ឋាន
DocType: Training Event,Exam,ការប្រឡង
DocType: Complaint,Complaint,បណ្តឹង
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},ឃ្លាំងដែលបានទាមទារសម្រាប់ធាតុភាគហ៊ុន {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},ឃ្លាំងដែលបានទាមទារសម្រាប់ធាតុភាគហ៊ុន {0}
DocType: Leave Allocation,Unused leaves,ស្លឹកមិនប្រើ
DocType: Patient,Alcohol Past Use,អាល់កុលប្រើអតីតកាល
DocType: Fertilizer Content,Fertilizer Content,មាតិកាជី
@ -4330,6 +4334,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,រូបមន្ត
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,# សៀរៀល
DocType: Lab Test Template,Lab Test Template,គំរូតេស្តមន្ទីរពិសោធន៍
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,គណនីលក់
DocType: Purchase Invoice Item,Total Weight,ទំងន់សរុប
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,គណៈកម្មការលើការលក់
DocType: Offer Letter Term,Value / Description,គុណតម្លៃ / ការពិពណ៌នាសង្ខេប
@ -4487,7 +4492,7 @@ Updated via 'Time Log'",បានបន្ទាន់សម័យតាមរ
DocType: Customer,From Lead,បានមកពីអ្នកដឹកនាំ
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,ការបញ្ជាទិញដែលបានចេញផ្សាយសម្រាប់ការផលិត។
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,ជ្រើសឆ្នាំសារពើពន្ធ ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,ម៉ាស៊ីនឆូតកាតពត៌មានផ្ទាល់ខ្លួនត្រូវបានទាមទារដើម្បីធ្វើឱ្យធាតុរបស់ម៉ាស៊ីនឆូតកាត
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,ម៉ាស៊ីនឆូតកាតពត៌មានផ្ទាល់ខ្លួនត្រូវបានទាមទារដើម្បីធ្វើឱ្យធាតុរបស់ម៉ាស៊ីនឆូតកាត
DocType: Program Enrollment Tool,Enroll Students,ចុះឈ្មោះសិស្ស
DocType: Lab Test,Approved Date,កាលបរិច្ឆេទអនុម័ត
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,ស្តង់ដាលក់
@ -4564,7 +4569,7 @@ DocType: Employee,Held On,ប្រារព្ធឡើងនៅថ្ងៃទ
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,ផលិតកម្មធាតុ
,Employee Information,ព័ត៌មានបុគ្គលិក
DocType: Stock Entry Detail,Additional Cost,ការចំណាយបន្ថែមទៀត
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher",មិនអាចត្រងដោយផ្អែកលើប័ណ្ណគ្មានប្រសិនបើដាក់ជាក្រុមតាមប័ណ្ណ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher",មិនអាចត្រងដោយផ្អែកលើប័ណ្ណគ្មានប្រសិនបើដាក់ជាក្រុមតាមប័ណ្ណ
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,ធ្វើឱ្យសម្រង់ផ្គត់ផ្គង់
DocType: Quality Inspection,Incoming,មកដល់
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,គំរូពន្ធលំនាំដើមសម្រាប់ការលក់និងការទិញត្រូវបានបង្កើត។
@ -4581,7 +4586,7 @@ DocType: Batch,Batch ID,លេខសម្គាល់បាច់
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},ចំណាំ: {0}
,Delivery Note Trends,និន្នាការដឹកជញ្ជូនចំណាំ
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,សប្តាហ៍នេះមានសេចក្តីសង្ខេប
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,នៅក្នុងផ្សារ Qty
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,នៅក្នុងផ្សារ Qty
DocType: Delivery Trip,Calculate Estimated Arrival Times,គណនាពេលវេលាមកដល់ប៉ាន់ស្មាន
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,គណនី: {0} អាច Update បានតាមរយៈប្រត្តិបត្តិការស្តុកតែប៉ុណ្ណោះ។
DocType: Student Group Creation Tool,Get Courses,ទទួលបានវគ្គសិក្សា
@ -4597,7 +4602,7 @@ DocType: Purchase Order,To Bill,លោក Bill
DocType: Material Request,% Ordered,% លំដាប់
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.",សម្រាប់សិស្សនិស្សិតដែលមានមូលដ្ឋានលើវគ្គសិក្សាជាក្រុមហើយវគ្គនេះនឹងមានសុពលភាពសម្រាប់គ្រប់សិស្សចុះឈ្មោះចូលរៀនវគ្គសិក្សានេះបានមកពីកម្មវិធីចុះឈ្មោះចូលរៀននៅ។
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,ម៉ៅការ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,ជាមធ្យម។ អត្រាទិញ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,ជាមធ្យម។ អត្រាទិញ
DocType: Task,Actual Time (in Hours),ពេលវេលាពិតប្រាកដ (នៅក្នុងម៉ោងធ្វើការ)
DocType: Employee,History In Company,ប្រវត្តិសាស្រ្តនៅក្នុងក្រុមហ៊ុន
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},សារថ្មីពី {អ្នកផ្ញើ}
@ -4645,7 +4650,7 @@ DocType: Asset Repair,Asset Repair,ជួសជុលទ្រព្យសម្
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},ជួរដេក {0}: រូបិយប័ណ្ណរបស់ Bom បាន # {1} គួរតែស្មើនឹងរូបិយប័ណ្ណដែលបានជ្រើស {2}
DocType: Journal Entry Account,Exchange Rate,អត្រាប្តូរប្រាក់
DocType: Patient,Additional information regarding the patient,ព័ត៌មានបន្ថែមទាក់ទងនឹងអ្នកជំងឺ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,ការលក់លំដាប់ {0} គឺមិនត្រូវបានដាក់ស្នើ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,ការលក់លំដាប់ {0} គឺមិនត្រូវបានដាក់ស្នើ
DocType: Homepage,Tag Line,បន្ទាត់ស្លាក
DocType: Fee Component,Fee Component,សមាសភាគថ្លៃសេវា
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,គ្រប់គ្រងកងនាវា
@ -4860,7 +4865,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,ការវាយត
DocType: Employee Education,Employee Education,បុគ្គលិកអប់រំ
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,ធាតុស្ទួនក្រុមបានរកឃើញក្នុងតារាងក្រុមធាតុ
DocType: Land Unit,Parent Land Unit,អង្គភាពដីធ្លីមាតាឬបិតា
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,វាត្រូវបានគេត្រូវការដើម្បីទៅយកលំអិតធាតុ។
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,វាត្រូវបានគេត្រូវការដើម្បីទៅយកលំអិតធាតុ។
DocType: Fertilizer,Fertilizer Name,ឈ្មោះជី
DocType: Salary Slip,Net Pay,ប្រាក់ចំណេញសុទ្ធ
DocType: Account,Account,គណនី
@ -4939,7 +4944,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),ជាក់ស្ត
DocType: Item Customer Detail,Ref Code,យោងលេខកូដ
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,ក្រុមអតិថិជនត្រូវបានទាមទារនៅក្នុងពត៌មាន POS
apps/erpnext/erpnext/config/hr.py +12,Employee records.,កំណត់ត្រាបុគ្គលិក។
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,សូមកំណត់កាលបរិច្ឆេទបន្ទាប់រំលស់
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,សូមកំណត់កាលបរិច្ឆេទបន្ទាប់រំលស់
DocType: HR Settings,Payroll Settings,ការកំណត់បើកប្រាក់បៀវត្ស
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,ផ្គូផ្គងនឹងវិកិយប័ត្រដែលមិនមានភ្ជាប់និងការទូទាត់។
DocType: POS Settings,POS Settings,ការកំណត់ POS
@ -5107,7 +5112,7 @@ DocType: Item,Customer Code,លេខកូដអតិថិជន
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},កម្មវិធីរំលឹកខួបកំណើតសម្រាប់ {0}
DocType: Asset Maintenance Task,Last Completion Date,កាលបរិច្ឆេទបញ្ចប់ចុងក្រោយ
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,ថ្ងៃចាប់ពីលំដាប់ចុងក្រោយ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,ឥណពន្ធវីសាទៅគណនីត្រូវតែមានតារាងតុល្យការគណនី
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,ឥណពន្ធវីសាទៅគណនីត្រូវតែមានតារាងតុល្យការគណនី
DocType: Buying Settings,Naming Series,ដាក់ឈ្មោះកម្រងឯកសារ
DocType: Leave Block List,Leave Block List Name,ទុកឱ្យឈ្មោះបញ្ជីប្លុក
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,កាលបរិច្ឆេទការធានារ៉ាប់រងការចាប់ផ្តើមគួរតែតិចជាងកាលបរិច្ឆេទធានារ៉ាប់រងបញ្ចប់
@ -5237,6 +5242,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,ទទួលបានធាតុបញ្ចូលការទូទាត់
DocType: Quotation Item,Against Docname,ប្រឆាំងនឹងការ Docname
DocType: SMS Center,All Employee (Active),ទាំងអស់និយោជិត (សកម្ម)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,អតិថិជន&gt; ក្រុមអតិថិជន&gt; ដែនដី
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,មើលឥឡូវ
DocType: BOM,Raw Material Cost,តម្លៃនៃវត្ថុធាតុដើម
DocType: Item Reorder,Re-Order Level,ដីកាសម្រេចកម្រិតឡើងវិញ
@ -5337,7 +5343,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,ការកសាងសមត្ថភាពកន្លែងអង្គុយ
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,ក្រុមសាកល្បង
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,អតិថិជន&gt; ក្រុមអតិថិជន&gt; ដែនដី
DocType: Project,Total Expense Claim (via Expense Claims),ពាក្យបណ្តឹងលើការចំណាយសរុប (តាមរយៈការប្តឹងទាមទារសំណងលើការចំណាយ)
DocType: GST Settings,GST Summary,សង្ខេបជីអេសធី
DocType: Assessment Result,Total Score,ពិន្ទុសរុប
@ -5351,7 +5356,7 @@ DocType: Batch,Source Document Type,ប្រភេទឯកសារប្រ
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,កាលវិភាគវគ្គសិក្សាត្រូវបានបង្កើត
DocType: Journal Entry,Total Debit,ឥណពន្ធសរុប
DocType: Manufacturing Settings,Default Finished Goods Warehouse,ឃ្លាំងទំនិញលំនាំដើមបានបញ្ចប់
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,ការលក់បុគ្គល
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,ការលក់បុគ្គល
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,មជ្ឈមណ្ឌលថវិកានិងការចំណាយ
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,របៀបបង់ប្រាក់លំនាំដើមច្រើនមិនត្រូវបានអនុញ្ញាតទេ
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,សម្រាប់
@ -5527,7 +5532,7 @@ DocType: Program,Program Name,ឈ្មោះកម្មវិធី
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,សូមពិចារណាឬបន្ទុកសម្រាប់ពន្ធលើ
DocType: Driver,Driving License Category,អាជ្ញាប័ណ្ណបើកបរប្រភេទ
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,ជាក់ស្តែ Qty ចាំបាច់
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0} បច្ចុប្បន្នមានជំហរ {1} លេខសម្គាល់អ្នកផ្គត់ផ្គង់ហើយការបញ្ជាទិញចំពោះអ្នកផ្គត់ផ្គង់នេះគួរតែត្រូវបានចេញដោយប្រុងប្រយ័ត្ន។
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0} បច្ចុប្បន្នមានជំហរ {1} លេខសម្គាល់អ្នកផ្គត់ផ្គង់ហើយការបញ្ជាទិញចំពោះអ្នកផ្គត់ផ្គង់នេះគួរតែត្រូវបានចេញដោយប្រុងប្រយ័ត្ន។
DocType: Asset Maintenance Team,Asset Maintenance Team,ក្រុមថែទាំទ្រព្យសម្បត្តិ
DocType: Employee Loan,Loan Type,ប្រភេទសេវាឥណទាន
DocType: Scheduling Tool,Scheduling Tool,ឧបករណ៍កាលវិភាគ

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,ಲ್ಯಾಬ್ ಪ್ರಿಸ್
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,ಬೆಲೆ ಪ್ರಕಾರ ವಿಂಗಡಿಸಿ
,Delay Days,ವಿಳಂಬ ದಿನಗಳು
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,ಸೇವೆ ಖರ್ಚು
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},ಕ್ರಮ ಸಂಖ್ಯೆ: {0} ಈಗಾಗಲೇ ಮಾರಾಟದ ಸರಕುಪಟ್ಟಿ ಉಲ್ಲೇಖವಿದೆ: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},ಕ್ರಮ ಸಂಖ್ಯೆ: {0} ಈಗಾಗಲೇ ಮಾರಾಟದ ಸರಕುಪಟ್ಟಿ ಉಲ್ಲೇಖವಿದೆ: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,ಸರಕುಪಟ್ಟಿ
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,ಧಾರಣ ಸ್ಟಾಕ್ ಎಂಟ್ರಿ ಮಾಡಿ
DocType: Purchase Invoice Item,Item Weight Details,ಐಟಂ ತೂಕ ವಿವರಗಳು
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,Docname ಪೋಷಕ ವಿವ
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","ರೆಫರೆನ್ಸ್: {0}, ಐಟಂ ಕೋಡ್: {1} ಮತ್ತು ಗ್ರಾಹಕ: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,ಕೆಜಿ
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,ಕೆಲಸ ತೆರೆಯುತ್ತಿದೆ .
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},ಐಟಂ {0} ಅಡ್ಡಸಾಲು {1} ನಲ್ಲಿ subcontracting ಮಾಡಲು BOM ಅನ್ನು ನಿರ್ದಿಷ್ಟಪಡಿಸಲಾಗಿಲ್ಲ
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},ಐಟಂ {0} ಅಡ್ಡಸಾಲು {1} ನಲ್ಲಿ subcontracting ಮಾಡಲು BOM ಅನ್ನು ನಿರ್ದಿಷ್ಟಪಡಿಸಲಾಗಿಲ್ಲ
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} ಫಲಿತಾಂಶವನ್ನು ಸಲ್ಲಿಸಲಾಗಿದೆ
DocType: Item Attribute,Increment,ಹೆಚ್ಚಳವನ್ನು
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,ಟೈಮ್ಸ್ಪ್ಯಾನ್
@ -150,7 +150,7 @@ DocType: Patient,Married,ವಿವಾಹಿತರು
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},ಜಾಹೀರಾತು ಅನುಮತಿಯಿಲ್ಲ {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,ಐಟಂಗಳನ್ನು ಪಡೆಯಿರಿ
DocType: Price List,Price Not UOM Dependant,ಬೆಲೆ UOM ಅವಲಂಬಿತವಲ್ಲ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},ಸ್ಟಾಕ್ ಡೆಲಿವರಿ ಗಮನಿಸಿ ವಿರುದ್ಧ ನವೀಕರಿಸಲಾಗುವುದಿಲ್ಲ {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},ಸ್ಟಾಕ್ ಡೆಲಿವರಿ ಗಮನಿಸಿ ವಿರುದ್ಧ ನವೀಕರಿಸಲಾಗುವುದಿಲ್ಲ {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},ಉತ್ಪನ್ನ {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,ಯಾವುದೇ ಐಟಂಗಳನ್ನು ಪಟ್ಟಿ
DocType: Asset Repair,Error Description,ದೋಷ ವಿವರಣೆ
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,ರಾಜಿ ಮಾಡಿಸು
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,ದಿನಸಿ
DocType: Quality Inspection Reading,Reading 1,1 ಓದುವಿಕೆ
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,ಪಿಂಚಣಿ ನಿಧಿಗಳು
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,ಮುಂದಿನ ಸವಕಳಿ ದಿನಾಂಕ ಖರೀದಿ ದಿನಾಂಕ ಮೊದಲು ಸಾಧ್ಯವಿಲ್ಲ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,ಮುಂದಿನ ಸವಕಳಿ ದಿನಾಂಕ ಖರೀದಿ ದಿನಾಂಕ ಮೊದಲು ಸಾಧ್ಯವಿಲ್ಲ
DocType: Crop,Perennial,ದೀರ್ಘಕಾಲಿಕ
DocType: Consultation,Consultation Date,ಸಮಾಲೋಚನೆ ದಿನಾಂಕ
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,ERPNext ಬಳಕೆದಾರರಿಗೆ ಉತ್ಪನ್ನ ಪಟ್ಟಿ ಮತ್ತು ಶೋಧನೆ
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,ವೆಚ್ಚ ಸೆಂಟರ್
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""",ಉದಾಹರಣೆಗೆ &quot;ಪ್ರಾಥಮಿಕ ಶಾಲೆ&quot; ಅಥವಾ &quot;ವಿಶ್ವವಿದ್ಯಾಲಯ&quot;
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,ಸ್ಟಾಕ್ ವರದಿಗಳು
DocType: Warehouse,Warehouse Detail,ವೇರ್ಹೌಸ್ ವಿವರ
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},ಕ್ರೆಡಿಟ್ ಮಿತಿಯನ್ನು ಗ್ರಾಹಕ ದಾಟಿದೆ ಮಾಡಲಾಗಿದೆ {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},ಕ್ರೆಡಿಟ್ ಮಿತಿಯನ್ನು ಗ್ರಾಹಕ ದಾಟಿದೆ ಮಾಡಲಾಗಿದೆ {0} {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,ಟರ್ಮ್ ಎಂಡ್ ದಿನಾಂಕ ನಂತರ ಶೈಕ್ಷಣಿಕ ವರ್ಷದ ವರ್ಷಾಂತ್ಯದ ದಿನಾಂಕ ಪದವನ್ನು ಸಂಪರ್ಕಿತ ಉದ್ದವಾಗಿರುವಂತಿಲ್ಲ (ಅಕಾಡೆಮಿಕ್ ಇಯರ್ {}). ದಯವಿಟ್ಟು ದಿನಾಂಕಗಳನ್ನು ಸರಿಪಡಿಸಲು ಹಾಗೂ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ.
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","&quot;ಸ್ಥಿರ ಆಸ್ತಿ&quot; ಆಸ್ತಿ ದಾಖಲೆ ಐಟಂ ವಿರುದ್ಧ ಅಸ್ತಿತ್ವದಲ್ಲಿರುವಂತೆ, ಪರಿಶೀಲಿಸದೆ ಸಾಧ್ಯವಿಲ್ಲ"
DocType: Delivery Trip,Departure Time,ನಿರ್ಗಮನ ಸಮಯ
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,ವಿದ್ಯಾರ್ಥಿ ಲಾಗ್
DocType: Quality Inspection,Get Specification Details,ವಿಶಿಷ್ಟ ವಿವರಗಳನ್ನು ಪಡೆಯಲು
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,ಪೂರೈಕೆದಾರ ಮಾನ್ಯತೆಗಳ ಟೆಂಪ್ಲೇಟ್ಗಳು.
DocType: Lead,Interested,ಆಸಕ್ತಿ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,ಆರಂಭಿಕ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,ಆರಂಭಿಕ
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},ಗೆ {0} ಗೆ {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,ತೆರಿಗೆಗಳನ್ನು ಹೊಂದಿಸಲು ವಿಫಲವಾಗಿದೆ
DocType: Item,Copy From Item Group,ಐಟಂ ಗುಂಪಿನಿಂದ ನಕಲಿಸಿ
@ -365,7 +365,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,ದಿನಾಂಕ ನಿವಾರಿಸುವ ಸೇರುವ ದಿನಾಂಕ ಹೆಚ್ಚಿನ ಇರಬೇಕು
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,ವರ್ಷಕ್ಕೆ ಎಲೆಗಳು
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,ಸಾಲು {0}: ಪರಿಶೀಲಿಸಿ ಖಾತೆ ವಿರುದ್ಧ 'ಅಡ್ವಾನ್ಸ್ ಈಸ್' {1} ಈ ಮುಂಗಡ ಪ್ರವೇಶ ವೇಳೆ.
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},ವೇರ್ಹೌಸ್ {0} ಸೇರುವುದಿಲ್ಲ ಕಂಪನಿ {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},ವೇರ್ಹೌಸ್ {0} ಸೇರುವುದಿಲ್ಲ ಕಂಪನಿ {1}
DocType: Email Digest,Profit & Loss,ಲಾಭ ನಷ್ಟ
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,ಲೀಟರ್
DocType: Task,Total Costing Amount (via Time Sheet),ಒಟ್ಟು ಕಾಸ್ಟಿಂಗ್ ಪ್ರಮಾಣ (ಟೈಮ್ ಶೀಟ್ ಮೂಲಕ)
@ -457,6 +457,7 @@ DocType: BOM Item,Rate & Amount,ದರ ಮತ್ತು ಮೊತ್ತ
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,ಇದು ಈ ಕಂಪೆನಿಯ ವಿರುದ್ಧ ವಹಿವಾಟುಗಳನ್ನು ಆಧರಿಸಿದೆ. ವಿವರಗಳಿಗಾಗಿ ಕೆಳಗೆ ಟೈಮ್ಲೈನ್ ನೋಡಿ
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,ಸ್ವಯಂಚಾಲಿತ ವಸ್ತು ವಿನಂತಿಯನ್ನು ಸೃಷ್ಟಿ ಮೇಲೆ ಈಮೇಲ್ ಸೂಚಿಸಿ
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,ನಿರೋಧಕ
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,ಸಮಾಲೋಚನೆ
DocType: Journal Entry,Multi Currency,ಮಲ್ಟಿ ಕರೆನ್ಸಿ
DocType: Opening Invoice Creation Tool,Invoice Type,ಸರಕುಪಟ್ಟಿ ಪ್ರಕಾರ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,ಡೆಲಿವರಿ ಗಮನಿಸಿ
@ -532,7 +533,6 @@ DocType: Email Digest,Credit Balance,ಸಾಲ ಬಾಕಿ
DocType: Employee,Widowed,ಒಂಟಿಯಾದ
DocType: Request for Quotation,Request for Quotation,ಉದ್ಧರಣ ವಿನಂತಿ
DocType: Healthcare Settings,Require Lab Test Approval,ಲ್ಯಾಬ್ ಟೆಸ್ಟ್ ಅನುಮೋದನೆ ಅಗತ್ಯವಿದೆ
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,ಐಟಂ ಕೋಡ್&gt; ಐಟಂ ಗ್ರೂಪ್&gt; ಬ್ರ್ಯಾಂಡ್
DocType: Salary Slip Timesheet,Working Hours,ದುಡಿಮೆಯು
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,ಒಟ್ಟು ಅತ್ಯುತ್ತಮ
DocType: Naming Series,Change the starting / current sequence number of an existing series.,ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಸರಣಿಯ ಆರಂಭಿಕ / ಪ್ರಸ್ತುತ ಅನುಕ್ರಮ ಸಂಖ್ಯೆ ಬದಲಾಯಿಸಿ.
@ -561,7 +561,7 @@ DocType: Subscription,Yearly,ವಾರ್ಷಿಕ
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,ಒಂದು ವೆಚ್ಚದ ಕೇಂದ್ರವಾಗಿ ನಮೂದಿಸಿ
DocType: Drug Prescription,Dosage,ಡೋಸೇಜ್
DocType: Journal Entry Account,Sales Order,ಮಾರಾಟದ ಆರ್ಡರ್
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,ಆವರೇಜ್. ಮಾರಾಟ ದರ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,ಆವರೇಜ್. ಮಾರಾಟ ದರ
DocType: Assessment Plan,Examiner Name,ಎಕ್ಸಾಮಿನರ್ ಹೆಸರು
DocType: Lab Test Template,No Result,ಫಲಿತಾಂಶವಿಲ್ಲ
DocType: Purchase Invoice Item,Quantity and Rate,ಪ್ರಮಾಣ ಮತ್ತು ದರ
@ -611,6 +611,7 @@ DocType: Employee,Health Concerns,ಆರೋಗ್ಯ ಕಾಳಜಿ
DocType: Payroll Entry,Select Payroll Period,ವೇತನದಾರರ ಅವಧಿಯ ಆಯ್ಕೆ
DocType: Purchase Invoice,Unpaid,ವೇತನರಹಿತ
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,ಮಾರಾಟ ಕಾಯ್ದಿರಿಸಲಾಗಿದೆ
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,ಮಾನವ ಸಂಪನ್ಮೂಲ&gt; ಮಾನವ ಸಂಪನ್ಮೂಲ ಸೆಟ್ಟಿಂಗ್ಗಳಲ್ಲಿ ಉದ್ಯೋಗಿ ಹೆಸರಿಸುವ ವ್ಯವಸ್ಥೆಯನ್ನು ಸಿದ್ಧಗೊಳಿಸಿ
DocType: Packing Slip,From Package No.,ಪ್ಯಾಕೇಜ್ ನಂಬ್ರ
DocType: Item Attribute,To Range,ಶ್ರೇಣಿಗೆ
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,ಸೆಕ್ಯುರಿಟೀಸ್ ಮತ್ತು ನಿಕ್ಷೇಪಗಳು
@ -635,11 +636,11 @@ DocType: Pricing Rule,Valid Upto,ಮಾನ್ಯ ವರೆಗೆ
DocType: Training Event,Workshop,ಕಾರ್ಯಾಗಾರ
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,ಖರೀದಿ ಆದೇಶಗಳನ್ನು ಎಚ್ಚರಿಸಿ
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,ನಿಮ್ಮ ಗ್ರಾಹಕರ ಕೆಲವು ಪಟ್ಟಿ. ಅವರು ಸಂಸ್ಥೆಗಳು ಅಥವಾ ವ್ಯಕ್ತಿಗಳು ಆಗಿರಬಹುದು .
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,ಸಾಕಷ್ಟು ಭಾಗಗಳನ್ನು ನಿರ್ಮಿಸಲು
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,ಸಾಕಷ್ಟು ಭಾಗಗಳನ್ನು ನಿರ್ಮಿಸಲು
DocType: POS Profile User,POS Profile User,ಪಿಓಎಸ್ ಪ್ರೊಫೈಲ್ ಬಳಕೆದಾರ
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,ನೇರ ಆದಾಯ
DocType: Patient Appointment,Date TIme,ದಿನಾಂಕ ಸಮಯ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","ಖಾತೆ ವರ್ಗೀಕರಿಸಲಾದ ವೇಳೆ , ಖಾತೆ ಆಧರಿಸಿ ಫಿಲ್ಟರ್ ಸಾಧ್ಯವಿಲ್ಲ"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","ಖಾತೆ ವರ್ಗೀಕರಿಸಲಾದ ವೇಳೆ , ಖಾತೆ ಆಧರಿಸಿ ಫಿಲ್ಟರ್ ಸಾಧ್ಯವಿಲ್ಲ"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,ಆಡಳಿತಾಧಿಕಾರಿ
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,ಕಂಪೆನಿ ಮತ್ತು ತೆರಿಗೆಗಳನ್ನು ಹೊಂದಿಸಲಾಗುತ್ತಿದೆ
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,ದಯವಿಟ್ಟು ಕೋರ್ಸ್ ಆಯ್ಕೆ
@ -650,7 +651,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,ವ್ಯತ್ಯಾಸ ಖಾತೆ
DocType: Purchase Invoice,Supplier GSTIN,ಸರಬರಾಜುದಾರ GSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,ಇದನ್ನು ಅವಲಂಬಿಸಿರುವ ಕೆಲಸವನ್ನು {0} ಮುಚ್ಚಿಲ್ಲ ಹತ್ತಿರಕ್ಕೆ ಕೆಲಸವನ್ನು ಸಾಧ್ಯವಿಲ್ಲ.
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,ವೇರ್ಹೌಸ್ ವಸ್ತು ವಿನಂತಿಯನ್ನು ಏರಿಸಲಾಗುತ್ತದೆ ಇದಕ್ಕಾಗಿ ನಮೂದಿಸಿ
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,ವೇರ್ಹೌಸ್ ವಸ್ತು ವಿನಂತಿಯನ್ನು ಏರಿಸಲಾಗುತ್ತದೆ ಇದಕ್ಕಾಗಿ ನಮೂದಿಸಿ
DocType: Production Order,Additional Operating Cost,ಹೆಚ್ಚುವರಿ ವೆಚ್ಚವನ್ನು
DocType: Lab Test Template,Lab Routine,ಲ್ಯಾಬ್ ನಿಯತಕ್ರಮ
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,ಕಾಸ್ಮೆಟಿಕ್ಸ್
@ -821,7 +822,7 @@ DocType: Employee,Passport Number,ಪಾಸ್ಪೋರ್ಟ್ ಸಂಖ
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Guardian2 ಸಂಬಂಧ
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,ವ್ಯವಸ್ಥಾಪಕ
DocType: Payment Entry,Payment From / To,ಪಾವತಿ / ಹೋಗು
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},ಹೊಸ ಕ್ರೆಡಿಟ್ ಮಿತಿಯನ್ನು ಗ್ರಾಹಕ ಪ್ರಸ್ತುತ ಬಾಕಿ ಮೊತ್ತದ ಕಡಿಮೆ. ಕ್ರೆಡಿಟ್ ಮಿತಿಯನ್ನು ಕನಿಷ್ಠ ಎಂದು ಹೊಂದಿದೆ {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},ಹೊಸ ಕ್ರೆಡಿಟ್ ಮಿತಿಯನ್ನು ಗ್ರಾಹಕ ಪ್ರಸ್ತುತ ಬಾಕಿ ಮೊತ್ತದ ಕಡಿಮೆ. ಕ್ರೆಡಿಟ್ ಮಿತಿಯನ್ನು ಕನಿಷ್ಠ ಎಂದು ಹೊಂದಿದೆ {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},ವೇರ್ಹೌಸ್ನಲ್ಲಿ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಿ {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,'ಆಧರಿಸಿ ' ಮತ್ತು ' ಗುಂಪಿನ ' ಇರಲಾಗುವುದಿಲ್ಲ
DocType: Sales Person,Sales Person Targets,ಮಾರಾಟಗಾರನ ಗುರಿ
@ -832,7 +833,7 @@ DocType: Lab Test Template,Compound,ಸಂಯುಕ್ತ
DocType: Student Batch Name,Batch Name,ಬ್ಯಾಚ್ ಹೆಸರು
DocType: Fee Validity,Max number of visit,ಗರಿಷ್ಠ ಸಂಖ್ಯೆಯ ಭೇಟಿ
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,Timesheet ದಾಖಲಿಸಿದವರು:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},ಪಾವತಿಯ ಮಾದರಿಯು ಡೀಫಾಲ್ಟ್ ನಗದು ಅಥವಾ ಬ್ಯಾಂಕ್ ಖಾತೆ ಸೆಟ್ ದಯವಿಟ್ಟು {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},ಪಾವತಿಯ ಮಾದರಿಯು ಡೀಫಾಲ್ಟ್ ನಗದು ಅಥವಾ ಬ್ಯಾಂಕ್ ಖಾತೆ ಸೆಟ್ ದಯವಿಟ್ಟು {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,ದಾಖಲಾಗಿ
DocType: GST Settings,GST Settings,ಜಿಎಸ್ಟಿ ಸೆಟ್ಟಿಂಗ್ಗಳು
DocType: Selling Settings,Customer Naming By,ಗ್ರಾಹಕ ಹೆಸರಿಸುವ ಮೂಲಕ
@ -959,7 +960,7 @@ DocType: Delivery Note,Customer's Purchase Order No,ಗ್ರಾಹಕರ ಪರ
DocType: Budget,Budget Against,ಬಜೆಟ್ ವಿರುದ್ಧ
DocType: Employee,Cell Number,ಸೆಲ್ ಸಂಖ್ಯೆ
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,ನೀಡಿರುವ ಮಾನದಂಡಕ್ಕೆ ಉದ್ಯೋಗಿ ಇಲ್ಲ. ಸಂಬಳದ ಸ್ಲಿಪ್ಸ್ ಅನ್ನು ಈಗಾಗಲೇ ರಚಿಸಲಾಗಿಲ್ಲ ಎಂದು ಪರಿಶೀಲಿಸಿ.
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,ಆಟೋ ಮೆಟೀರಿಯಲ್ ವಿನಂತಿಗಳು ರಚಿಸಲಾಗಿದೆ
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,ಆಟೋ ಮೆಟೀರಿಯಲ್ ವಿನಂತಿಗಳು ರಚಿಸಲಾಗಿದೆ
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,ಲಾಸ್ಟ್
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,ನೀವು ಕಾಲಮ್ 'ಜರ್ನಲ್ ಎಂಟ್ರಿ ವಿರುದ್ಧ' ನಲ್ಲಿ ಪ್ರಸ್ತುತ ಚೀಟಿ ಪ್ರವೇಶಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,ಉತ್ಪಾದನಾ ಕಾಯ್ದಿರಿಸಲಾಗಿದೆ
@ -967,7 +968,7 @@ DocType: Soil Texture,Sand,ಮರಳು
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,ಶಕ್ತಿ
DocType: Opportunity,Opportunity From,ಅವಕಾಶದಿಂದ
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,ಮಾಸಿಕ ವೇತನವನ್ನು ಹೇಳಿಕೆ .
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,ಸಾಲು {0}: {1} ಐಟಂಗೆ ಸೀರಿಯಲ್ ಸಂಖ್ಯೆಗಳು ಅಗತ್ಯವಿದೆ {2}. ನೀವು {3} ಒದಗಿಸಿದ್ದೀರಿ.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,ಸಾಲು {0}: {1} ಐಟಂಗೆ ಸೀರಿಯಲ್ ಸಂಖ್ಯೆಗಳು ಅಗತ್ಯವಿದೆ {2}. ನೀವು {3} ಒದಗಿಸಿದ್ದೀರಿ.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,ದಯವಿಟ್ಟು ಟೇಬಲ್ ಅನ್ನು ಆಯ್ಕೆ ಮಾಡಿ
DocType: BOM,Website Specifications,ವೆಬ್ಸೈಟ್ ವಿಶೇಷಣಗಳು
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} &#39;ಸ್ವೀಕರಿಸುವವರಲ್ಲಿ&#39; ಅಮಾನ್ಯ ಇಮೇಲ್ ವಿಳಾಸವಾಗಿದೆ
@ -1055,7 +1056,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,ಉಲ್ಲೇಖ ವಿನಂತಿಸಲಾಗಿದೆ
DocType: Vital Signs,Heart Rate / Pulse,ಹಾರ್ಟ್ ರೇಟ್ / ಪಲ್ಸ್
DocType: Company,Default Bank Account,ಡೀಫಾಲ್ಟ್ ಬ್ಯಾಂಕ್ ಖಾತೆ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first",ಪಕ್ಷದ ಆಧಾರದ ಮೇಲೆ ಫಿಲ್ಟರ್ ಆರಿಸಿ ಪಕ್ಷದ ಮೊದಲ ನೀಡಿರಿ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first",ಪಕ್ಷದ ಆಧಾರದ ಮೇಲೆ ಫಿಲ್ಟರ್ ಆರಿಸಿ ಪಕ್ಷದ ಮೊದಲ ನೀಡಿರಿ
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},ಐಟಂಗಳನ್ನು ಮೂಲಕ ವಿತರಿಸಲಾಯಿತು ಏಕೆಂದರೆ &#39;ಅಪ್ಡೇಟ್ ಸ್ಟಾಕ್&#39; ಪರಿಶೀಲಿಸಲಾಗುವುದಿಲ್ಲ {0}
DocType: Vehicle,Acquisition Date,ಸ್ವಾಧೀನ ದಿನಾಂಕ
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,ಸೂಲ
@ -1080,7 +1081,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),ನಿಮ್ಮ ಅಕ್ಷರದ ತಲೆ ಅಪ್ಲೋಡ್ ಮಾಡಿ (100px ಮೂಲಕ ವೆಬ್ ಸ್ನೇಹವಾಗಿ 900px ಆಗಿ ಇಡಿ)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: ಖಾತೆ {2} ಒಂದು ಗುಂಪು ಸಾಧ್ಯವಿಲ್ಲ
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,ಐಟಂ ರೋ {IDX}: {DOCTYPE} {DOCNAME} ಮೇಲೆ ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ &#39;{DOCTYPE}&#39; ಟೇಬಲ್
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,Timesheet {0} ಈಗಾಗಲೇ ಪೂರ್ಣಗೊಂಡ ಅಥವಾ ರದ್ದು
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,Timesheet {0} ಈಗಾಗಲೇ ಪೂರ್ಣಗೊಂಡ ಅಥವಾ ರದ್ದು
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,ಯಾವುದೇ ಕಾರ್ಯಗಳು
DocType: Item Variant Settings,Copy Fields to Variant,ವಿಭಿನ್ನ ಕ್ಷೇತ್ರಗಳಿಗೆ ಕ್ಷೇತ್ರಗಳನ್ನು ನಕಲಿಸಿ
DocType: Asset,Opening Accumulated Depreciation,ಕ್ರೋಢಿಕೃತ ಸವಕಳಿ ತೆರೆಯುವ
@ -1192,9 +1193,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,ಉಪ ಜೋಡಣೆಗಳಿಗೆ ಯೋಜನೆ ವಸ್ತು
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,ಮಾರಾಟದ ಪಾರ್ಟ್ನರ್ಸ್ ಮತ್ತು ಸಂಸ್ಥಾನದ
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,ಬಿಒಎಮ್ {0} ಸಕ್ರಿಯ ಇರಬೇಕು
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),ಮುಚ್ಚುವುದು (ಒಟ್ಟು + ತೆರೆಯುವಿಕೆ)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),ಮುಚ್ಚುವುದು (ಒಟ್ಟು + ತೆರೆಯುವಿಕೆ)
DocType: Journal Entry,Depreciation Entry,ಸವಕಳಿ ಎಂಟ್ರಿ
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,ಮೊದಲ ದಾಖಲೆ ಪ್ರಕಾರ ಆಯ್ಕೆ ಮಾಡಿ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,ಖಾತೆ ಕರೆನ್ಸಿಗೆ ಮುದ್ರಿಸು
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,ಈ ನಿರ್ವಹಣೆ ಭೇಟಿ ರದ್ದು ಮೊದಲು ವಸ್ತು ಭೇಟಿ {0} ರದ್ದು
DocType: Crop Cycle,ISO 8016 standard,ಐಎಸ್ಒ 8016 ಪ್ರಮಾಣಿತ
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},ಯಾವುದೇ ಸೀರಿಯಲ್ {0} ಐಟಂ ಸೇರುವುದಿಲ್ಲ {1}
@ -1220,7 +1222,7 @@ DocType: Purchase Receipt,Range,ಶ್ರೇಣಿ
DocType: Supplier,Default Payable Accounts,ಡೀಫಾಲ್ಟ್ ಪಾವತಿಸಲಾಗುವುದು ಖಾತೆಗಳು
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,ನೌಕರರ {0} ಸಕ್ರಿಯವಾಗಿಲ್ಲ ಅಥವಾ ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ
DocType: Fee Structure,Components,ಘಟಕಗಳು
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},ಐಟಂ ರಲ್ಲಿ ಆಸ್ತಿ ವರ್ಗ ನಮೂದಿಸಿ {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},ಐಟಂ ರಲ್ಲಿ ಆಸ್ತಿ ವರ್ಗ ನಮೂದಿಸಿ {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,ಐಟಂ ಮಾರ್ಪಾಟುಗಳು {0} ಅಪ್ಡೇಟ್ಗೊಳಿಸಲಾಗಿದೆ
DocType: Quality Inspection Reading,Reading 6,6 ಓದುವಿಕೆ
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1272,6 +1274,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,ಕಂಪನಿ ಹೆಸರು
DocType: SMS Center,Total Message(s),ಒಟ್ಟು ಸಂದೇಶ (ಗಳು)
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,ವರ್ಗಾವಣೆ ಆಯ್ಕೆ ಐಟಂ
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,ದಯವಿಟ್ಟು ಸೆಟಪ್&gt; ಸೆಟ್ಟಿಂಗ್ಗಳು&gt; ಹೆಸರಿಸುವ ಸರಣಿ ಮೂಲಕ {0} ಹೆಸರಿಸುವ ಸರಣಿಗಳನ್ನು ಹೊಂದಿಸಿ
DocType: Purchase Invoice,Additional Discount Percentage,ಹೆಚ್ಚುವರಿ ರಿಯಾಯಿತಿ ಶೇಕಡಾವಾರು
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,ಎಲ್ಲಾ ಸಹಾಯ ವೀಡಿಯೊಗಳನ್ನು ಪಟ್ಟಿಯನ್ನು ವೀಕ್ಷಿಸಿ
DocType: Agriculture Analysis Criteria,Soil Texture,ಮಣ್ಣಿನ ವಿನ್ಯಾಸ
@ -1300,7 +1303,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,ಬಿಒಎಮ್ ವೆಬ್ಸೈಟ್ ಐಟಂ
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,ನಿಮ್ಮ ಪತ್ರ ತಲೆ ಮತ್ತು ಲೋಗೋ ಅಪ್ಲೋಡ್. (ನೀವು ಅವುಗಳನ್ನು ನಂತರ ಸಂಪಾದಿಸಬಹುದು).
DocType: Timesheet Detail,Bill,ಬಿಲ್
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,ಮುಂದಿನ ಸವಕಳಿ ದಿನಾಂಕ ಕಳೆದ ದಿನಾಂಕ ದಾಖಲಿಸಿದರೆ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,ಮುಂದಿನ ಸವಕಳಿ ದಿನಾಂಕ ಕಳೆದ ದಿನಾಂಕ ದಾಖಲಿಸಿದರೆ
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,ಬಿಳಿ
DocType: SMS Center,All Lead (Open),ಎಲ್ಲಾ ಪ್ರಮುಖ ( ಓಪನ್ )
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),ರೋ {0}: ಫಾರ್ ಪ್ರಮಾಣ ಲಭ್ಯವಿಲ್ಲ {4} ಉಗ್ರಾಣದಲ್ಲಿ {1} ಪ್ರವೇಶ ಸಮಯದಲ್ಲಿ ಪೋಸ್ಟ್ ನಲ್ಲಿ ({2} {3})
@ -1317,7 +1320,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,ಮುಂದೆ ಸಂಪರ್ಕಿಸಿ ದಿನಾಂಕ
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,ಆರಂಭಿಕ ಪ್ರಮಾಣ
DocType: Healthcare Settings,Appointment Reminder,ನೇಮಕಾತಿ ಜ್ಞಾಪನೆ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,ದಯವಿಟ್ಟು ಪ್ರಮಾಣ ಚೇಂಜ್ ಖಾತೆಯನ್ನು ನಮೂದಿಸಿ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,ದಯವಿಟ್ಟು ಪ್ರಮಾಣ ಚೇಂಜ್ ಖಾತೆಯನ್ನು ನಮೂದಿಸಿ
DocType: Program Enrollment Tool Student,Student Batch Name,ವಿದ್ಯಾರ್ಥಿ ಬ್ಯಾಚ್ ಹೆಸರು
DocType: Consultation,Doctor,ಡಾಕ್ಟರ್
DocType: Holiday List,Holiday List Name,ಹಾಲಿಡೇ ಪಟ್ಟಿ ಹೆಸರು
@ -1333,6 +1336,7 @@ DocType: Patient,Patient Relation,ರೋಗಿಯ ಸಂಬಂಧ
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,ಅಲೋಕೇಶನ್ ಉಪಕರಣ ಬಿಡಿ
DocType: Item,Hub Category to Publish,ಹಬ್ ವರ್ಗ ಪ್ರಕಟಣೆ
DocType: Leave Block List,Leave Block List Dates,ಖಂಡ ದಿನಾಂಕ ಬಿಡಿ
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,ಸೆಟಪ್&gt; ಸಂಖ್ಯಾ ಸರಣಿಗಳ ಮೂಲಕ ಹಾಜರಾತಿಗಾಗಿ ಸೆಟಪ್ ಸಂಖ್ಯೆಯ ಸರಣಿ
DocType: Sales Invoice,Billing Address GSTIN,ಬಿಲ್ಲಿಂಗ್ ವಿಳಾಸ GSTIN
DocType: Assessment Plan,Evaluate,ಮೌಲ್ಯಮಾಪನ ಮಾಡಿ
DocType: Workstation,Net Hour Rate,ನೆಟ್ ಅವರ್ ದರ
@ -1367,7 +1371,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,ಖರೀದಿ ರಸೀ
DocType: Purchase Receipt,PREC-RET-,PREC-RET-
DocType: POS Profile,Sales Invoice Payment,ಮಾರಾಟದ ಸರಕುಪಟ್ಟಿ ಪಾವತಿ
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,ಮಾರಾಟದ ಆರ್ಡರ್ / ಗೂಡ್ಸ್ ಮುಕ್ತಾಯಗೊಂಡ ವೇರ್ಹೌಸ್ ರಿಸರ್ವ್ಡ್ ಗೋದಾಮಿನ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,ಮಾರಾಟ ಪ್ರಮಾಣ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,ಮಾರಾಟ ಪ್ರಮಾಣ
DocType: Repayment Schedule,Interest Amount,ಬಡ್ಡಿ ಪ್ರಮಾಣ
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,ನೀವು ಈ ದಾಖಲೆ ಖರ್ಚು ಅನುಮೋದಕ ಇವೆ . ' ಸ್ಥಿತಿಯನ್ನು ' ಅಪ್ಡೇಟ್ ಮತ್ತು ಉಳಿಸಿ ದಯವಿಟ್ಟು
DocType: Serial No,Creation Document No,ಸೃಷ್ಟಿ ಡಾಕ್ಯುಮೆಂಟ್ ಸಂಖ್ಯೆ
@ -1460,7 +1464,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,ತೆರೆಯುವ ಲೆಕ್ಕಪರಿಶೋಧಕ ಬ್ಯಾಲೆನ್ಸ್
,GST Sales Register,ಜಿಎಸ್ಟಿ ಮಾರಾಟದ ನೋಂದಣಿ
DocType: Sales Invoice Advance,Sales Invoice Advance,ಮಾರಾಟದ ಸರಕುಪಟ್ಟಿ ಅಡ್ವಾನ್ಸ್
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,ಮನವಿ ನಥಿಂಗ್
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,ಮನವಿ ನಥಿಂಗ್
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,ನಿಮ್ಮ ಡೊಮೇನ್ಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿ
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},ಮತ್ತೊಂದು ಬಜೆಟ್ ದಾಖಲೆ &#39;{0}&#39; ಈಗಾಗಲೇ ವಿರುದ್ಧ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ {1} &#39;{2}&#39; ಹಣಕಾಸು ವರ್ಷಕ್ಕೆ {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,ಸೃಷ್ಟಿ ಸಮಯದಲ್ಲಿ ಮಾತ್ರ ಜಾಗವನ್ನು ನಕಲಿಸಲಾಗುತ್ತದೆ.
@ -1470,11 +1474,11 @@ DocType: Cheque Print Template,Payer Settings,ಪಾವತಿಸುವ ಸೆಟ
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","ಈ ವ್ಯತ್ಯಯದ ಐಟಂ ಕೋಡ್ ಬಿತ್ತರಿಸಲಾಗುವುದು. ನಿಮ್ಮ ಸಂಕ್ಷೇಪಣ ""ಎಸ್ಎಮ್"", ಮತ್ತು ಉದಾಹರಣೆಗೆ, ಐಟಂ ಕೋಡ್ ""ಟಿ ಶರ್ಟ್"", ""ಟಿ-ಶರ್ಟ್ ಎಸ್.ಎಂ."" ಇರುತ್ತದೆ ವ್ಯತ್ಯಯದ ಐಟಂ ಸಂಕೇತ"
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,ನೀವು ಸಂಬಳ ಸ್ಲಿಪ್ ಉಳಿಸಲು ಒಮ್ಮೆ ( ಮಾತಿನಲ್ಲಿ) ನಿವ್ವಳ ವೇತನ ಗೋಚರಿಸುತ್ತದೆ.
DocType: Purchase Invoice,Is Return,ಮರಳುವುದು
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,ಎಚ್ಚರಿಕೆ
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,ಎಚ್ಚರಿಕೆ
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,ರಿಟರ್ನ್ / ಡೆಬಿಟ್ ಗಮನಿಸಿ
DocType: Price List Country,Price List Country,ದರ ಪಟ್ಟಿ ಕಂಟ್ರಿ
DocType: Item,UOMs,UOMs
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},ಐಟಂ {0} ಮಾನ್ಯ ಸರಣಿ ಸೂಲ {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},ಐಟಂ {0} ಮಾನ್ಯ ಸರಣಿ ಸೂಲ {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,ಐಟಂ ಕೋಡ್ ನೆಯ ಬದಲಾಗಿದೆ ಸಾಧ್ಯವಿಲ್ಲ .
DocType: Purchase Invoice Item,UOM Conversion Factor,UOM ಪರಿವರ್ತಿಸುವುದರ
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,ದಯವಿಟ್ಟು ಬ್ಯಾಚ್ ಸಂಖ್ಯೆ ಪಡೆಯಲು ಐಟಂ ಕೋಡ್ ನಮೂದಿಸಿ
@ -1580,7 +1584,7 @@ DocType: Journal Entry,Get Outstanding Invoices,ಮಹೋನ್ನತ ಇ
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,ಮಾರಾಟದ ಆರ್ಡರ್ {0} ಮಾನ್ಯವಾಗಿಲ್ಲ
DocType: Supplier Scorecard,Warn for new Request for Quotations,ಉಲ್ಲೇಖಗಳಿಗಾಗಿ ಹೊಸ ವಿನಂತಿಗಾಗಿ ಎಚ್ಚರಿಕೆ ನೀಡಿ
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,ಖರೀದಿ ಆದೇಶ ನೀವು ಯೋಜನೆ ಸಹಾಯ ಮತ್ತು ನಿಮ್ಮ ಖರೀದಿ ಮೇಲೆ ಅನುಸರಿಸಿ
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","ಕ್ಷಮಿಸಿ, ಕಂಪನಿಗಳು ವಿಲೀನಗೊಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","ಕ್ಷಮಿಸಿ, ಕಂಪನಿಗಳು ವಿಲೀನಗೊಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,ಲ್ಯಾಬ್ ಟೆಸ್ಟ್ ಪ್ರಿಸ್ಕ್ರಿಪ್ಷನ್ಗಳು
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",ಒಟ್ಟು ಸಂಚಿಕೆ / ವರ್ಗಾವಣೆ ಪ್ರಮಾಣ {0} ಮೆಟೀರಿಯಲ್ ವಿನಂತಿ ರಲ್ಲಿ {1} \ ವಿನಂತಿಸಿದ ಪ್ರಮಾಣ {2} ಐಟಂ ಹೆಚ್ಚು ಸಾಧ್ಯವಿಲ್ಲ {3}
@ -1618,7 +1622,6 @@ DocType: Vehicle,Fuel UOM,ಇಂಧನ ಮೈಸೂರು ವಿಶ್ವವ
DocType: Warehouse,Warehouse Contact Info,ವೇರ್ಹೌಸ್ ಸಂಪರ್ಕ ಮಾಹಿತಿ
DocType: Payment Entry,Write Off Difference Amount,ವ್ಯತ್ಯಾಸ ಪ್ರಮಾಣ ಆಫ್ ಬರೆಯಿರಿ
DocType: Volunteer,Volunteer Name,ಸ್ವಯಂಸೇವಕ ಹೆಸರು
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,ದಯವಿಟ್ಟು ಶೈಕ್ಷಣಿಕ&gt; ಶಿಕ್ಷಣ ಸೆಟ್ಟಿಂಗ್ಗಳಲ್ಲಿ ತರಬೇತುದಾರ ಹೆಸರಿಸುವ ವ್ಯವಸ್ಥೆಯನ್ನು ಸಿದ್ಧಗೊಳಿಸಿ
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0}: ನೌಕರರ ಇಮೇಲ್ ಕಂಡುಬಂದಿಲ್ಲ, ಆದ್ದರಿಂದ ಕಳುಹಿಸಲಾಗಿಲ್ಲ ಇಮೇಲ್"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},ಶಿಪ್ಪಿಂಗ್ ನಿಯಮವು ದೇಶಕ್ಕೆ ಅನ್ವಯಿಸುವುದಿಲ್ಲ {0}
DocType: Item,Foreign Trade Details,ವಿದೇಶಿ ವ್ಯಾಪಾರ ವಿವರಗಳು
@ -1631,7 +1634,7 @@ DocType: Student Group Student,Group Roll Number,ಗುಂಪು ರೋಲ
DocType: Student Group Student,Group Roll Number,ಗುಂಪು ರೋಲ್ ಸಂಖ್ಯೆ
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry","{0}, ಮಾತ್ರ ಕ್ರೆಡಿಟ್ ಖಾತೆಗಳನ್ನು ಮತ್ತೊಂದು ಡೆಬಿಟ್ ಪ್ರವೇಶ ವಿರುದ್ಧ ಲಿಂಕ್ ಮಾಡಬಹುದು ಫಾರ್"
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,ಎಲ್ಲಾ ಕೆಲಸವನ್ನು ತೂಕ ಒಟ್ಟು ಇರಬೇಕು 1. ಪ್ರಕಾರವಾಗಿ ಎಲ್ಲ ಪ್ರಾಜೆಕ್ಟ್ ಕಾರ್ಯಗಳ ತೂಕ ಹೊಂದಿಸಿಕೊಳ್ಳಿ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,ಡೆಲಿವರಿ ಗಮನಿಸಿ {0} ಸಲ್ಲಿಸದಿದ್ದರೆ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,ಡೆಲಿವರಿ ಗಮನಿಸಿ {0} ಸಲ್ಲಿಸದಿದ್ದರೆ
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,ಐಟಂ {0} ಒಂದು ಉಪ ಒಪ್ಪಂದ ಐಟಂ ಇರಬೇಕು
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,ಸಲಕರಣಾ
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","ಬೆಲೆ ರೂಲ್ ಮೊದಲ ಐಟಂ, ಐಟಂ ಗುಂಪು ಅಥವಾ ಬ್ರಾಂಡ್ ಆಗಿರಬಹುದು, ಕ್ಷೇತ್ರದಲ್ಲಿ 'ರಂದು ಅನ್ವಯಿಸು' ಆಧಾರದ ಮೇಲೆ ಆಯ್ಕೆ."
@ -1656,7 +1659,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,ಮಕ್ಕಳ ಗೋದಾಮಿನ ಈ ಗೋದಾಮಿನ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ. ಈ ಗೋದಾಮಿನ ಅಳಿಸಲಾಗುವುದಿಲ್ಲ.
DocType: Item,Website Item Groups,ವೆಬ್ಸೈಟ್ ಐಟಂ ಗುಂಪುಗಳು
DocType: Purchase Invoice,Total (Company Currency),ಒಟ್ಟು (ಕಂಪನಿ ಕರೆನ್ಸಿ)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,ಕ್ರಮಸಂಖ್ಯೆ {0} ಒಮ್ಮೆ ಹೆಚ್ಚು ಪ್ರವೇಶಿಸಿತು
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,ಕ್ರಮಸಂಖ್ಯೆ {0} ಒಮ್ಮೆ ಹೆಚ್ಚು ಪ್ರವೇಶಿಸಿತು
DocType: Journal Entry,Journal Entry,ಜರ್ನಲ್ ಎಂಟ್ರಿ
DocType: Expense Claim Advance,Unclaimed amount,ಹಕ್ಕು ಪಡೆಯದ ಮೊತ್ತ
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} ಪ್ರಗತಿಯಲ್ಲಿದೆ ಐಟಂಗಳನ್ನು
@ -1753,7 +1756,7 @@ DocType: Email Digest,For Company,ಕಂಪನಿ
apps/erpnext/erpnext/config/support.py +17,Communication log.,ಸಂವಹನ ದಾಖಲೆ .
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.","ಉದ್ಧರಣ ವಿನಂತಿ ಹೆಚ್ಚು ಚೆಕ್ ಪೋರ್ಟಲ್ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು, ಪೋರ್ಟಲ್ ಪ್ರವೇಶವನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ."
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,ಸರಬರಾಜುದಾರ ಸ್ಕೋರ್ಕಾರ್ಡ್ ಸ್ಕೋರಿಂಗ್ ವೇರಿಯಬಲ್
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,ಪ್ರಮಾಣ ಖರೀದಿ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,ಪ್ರಮಾಣ ಖರೀದಿ
DocType: Sales Invoice,Shipping Address Name,ಶಿಪ್ಪಿಂಗ್ ವಿಳಾಸ ಹೆಸರು
DocType: Material Request,Terms and Conditions Content,ನಿಯಮಗಳು ಮತ್ತು ನಿಯಮಗಳು ವಿಷಯ
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,ಕೋರ್ಸ್ ವೇಳಾಪಟ್ಟಿಯನ್ನು ರಚಿಸುವಲ್ಲಿ ದೋಷಗಳಿವೆ
@ -2018,7 +2021,7 @@ DocType: Expense Claim,Total Amount Reimbursed,ಒಟ್ಟು ಪ್ರಮಾ
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,ಈ ವಾಹನ ವಿರುದ್ಧ ದಾಖಲೆಗಳು ಆಧರಿಸಿದೆ. ಮಾಹಿತಿಗಾಗಿ ಕೆಳಗೆ ಟೈಮ್ಲೈನ್ ನೋಡಿ
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},ಸರಬರಾಜುದಾರ ವಿರುದ್ಧ ಸರಕುಪಟ್ಟಿ {0} ರ {1}
DocType: Customer,Default Price List,ಡೀಫಾಲ್ಟ್ ಬೆಲೆ ಪಟ್ಟಿ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,ಆಸ್ತಿ ಚಳವಳಿ ದಾಖಲೆ {0} ದಾಖಲಿಸಿದವರು
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,ಆಸ್ತಿ ಚಳವಳಿ ದಾಖಲೆ {0} ದಾಖಲಿಸಿದವರು
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,ನೀವು ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ ಹಣಕಾಸಿನ ವರ್ಷದ {0}. ಹಣಕಾಸಿನ ವರ್ಷ {0} ಜಾಗತಿಕ ಸೆಟ್ಟಿಂಗ್ಗಳು ಡೀಫಾಲ್ಟ್ ಆಗಿ ಹೊಂದಿಸಲಾಗಿದೆ
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,ಅದೇ ಹೆಸರಿನ ಗ್ರಾಹಕರು ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದ್ದಾರೆ
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,ಇದು ಸಂಬಳದ ಸ್ಲಿಪ್ಗಳನ್ನು ಸಲ್ಲಿಸುತ್ತದೆ ಮತ್ತು ಸಂಚಯ ಜರ್ನಲ್ ಎಂಟ್ರಿ ಅನ್ನು ರಚಿಸುತ್ತದೆ. ನೀವು ಮುಂದುವರಿಯಲು ಬಯಸುವಿರಾ?
@ -2032,6 +2035,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,ಬೆಲೆ
DocType: Quotation,Term Details,ಟರ್ಮ್ ವಿವರಗಳು
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,{0} ಈ ವಿದ್ಯಾರ್ಥಿ ಗುಂಪು ವಿದ್ಯಾರ್ಥಿಗಳನ್ನು ಹೆಚ್ಚು ದಾಖಲಿಸಲಾಗುವುದಿಲ್ಲ.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),ಒಟ್ಟು (ತೆರಿಗೆ ಇಲ್ಲದೆ)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,ಲೀಡ್ ಕೌಂಟ್
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,ಲೀಡ್ ಕೌಂಟ್
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} 0 ಹೆಚ್ಚು ಇರಬೇಕು
@ -2052,7 +2056,6 @@ DocType: Lab Test,Technician Name,ತಂತ್ರಜ್ಞ ಹೆಸರು
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,ಸರಕುಪಟ್ಟಿ ರದ್ದು ಮೇಲೆ ಪಾವತಿ ಅನ್ಲಿಂಕ್
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},ಪ್ರವೇಶಿಸಿತು ಪ್ರಸ್ತುತ ದೂರಮಾಪಕ ಓದುವ ಆರಂಭಿಕ ವಾಹನ ದೂರಮಾಪಕ ಹೆಚ್ಚು ಇರಬೇಕು {0}
DocType: Restaurant Reservation,No Show,ಶೋ ಇಲ್ಲ
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,ದಯವಿಟ್ಟು ಸೆಟಪ್&gt; ಸೆಟ್ಟಿಂಗ್ಗಳು&gt; ಹೆಸರಿಸುವ ಸರಣಿ ಮೂಲಕ {0} ಹೆಸರಿಸುವ ಸರಣಿಗಳನ್ನು ಹೊಂದಿಸಿ
DocType: Shipping Rule Country,Shipping Rule Country,ಶಿಪ್ಪಿಂಗ್ ಆಡಳಿತ
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,ಬಿಟ್ಟು ಅಟೆಂಡೆನ್ಸ್
DocType: Maintenance Visit,Partially Completed,ಭಾಗಶಃ ಪೂರ್ಣಗೊಂಡಿತು
@ -2145,7 +2148,7 @@ DocType: Student Group Instructor,Student Group Instructor,ವಿದ್ಯಾರ
DocType: Student Group Instructor,Student Group Instructor,ವಿದ್ಯಾರ್ಥಿ ಗುಂಪು ಬೋಧಕ
DocType: Grant Application,Assessment Mark (Out of 10),ಅಸೆಸ್ಮೆಂಟ್ ಮಾರ್ಕ್ (10 ರಲ್ಲಿ)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 ಮೊಬೈಲ್ ಇಲ್ಲ
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,ಮುಖ್ಯ
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,ಮುಖ್ಯ
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,ಭಿನ್ನ
DocType: Naming Series,Set prefix for numbering series on your transactions,ನಿಮ್ಮ ವ್ಯವಹಾರಗಳ ಮೇಲೆ ಸರಣಿ ಸಂಖ್ಯೆಗಳನ್ನು ಹೊಂದಿಸಿ ಪೂರ್ವಪ್ರತ್ಯಯ
DocType: Employee Attendance Tool,Employees HTML,ನೌಕರರು ಎಚ್ಟಿಎಮ್ಎಲ್
@ -2195,7 +2198,7 @@ DocType: Crop,Crop Spacing,ಕ್ರಾಪ್ ಸ್ಪೇಸಿಂಗ್
DocType: Course,Course Abbreviation,ಕೋರ್ಸ್ ಸಂಕ್ಷೇಪಣ
DocType: Student Leave Application,Student Leave Application,ವಿದ್ಯಾರ್ಥಿ ಬಿಡಿ ಅಪ್ಲಿಕೇಶನ್
DocType: Item,Will also apply for variants,ಸಹ ರೂಪಾಂತರಗಳು ಅನ್ವಯವಾಗುವುದು
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}",ಇದು ಈಗಾಗಲೇ ಆಸ್ತಿ ರದ್ದು ಸಾಧ್ಯವಿಲ್ಲ {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}",ಇದು ಈಗಾಗಲೇ ಆಸ್ತಿ ರದ್ದು ಸಾಧ್ಯವಿಲ್ಲ {0}
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},ನೌಕರರ {0} ಮೇಲೆ ಅರ್ಧ ದಿನ {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},ಒಟ್ಟು ಕೆಲಸದ ಗರಿಷ್ಠ ಕೆಲಸದ ಹೆಚ್ಚು ಮಾಡಬಾರದು {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,ಮೇಲೆ
@ -2383,9 +2386,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),ನಿಜವಾದ ಅಂತಿಮ ದಿನಾಂಕ (ಟೈಮ್ ಶೀಟ್ ಮೂಲಕ)
DocType: Soil Texture,Soil Type,ಮಣ್ಣಿನ ಪ್ರಕಾರ
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},ಪ್ರಮಾಣ {0} {1} ವಿರುದ್ಧ {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,ಹೊಸ ಸಂದೇಶ
,Quotation Trends,ನುಡಿಮುತ್ತುಗಳು ಟ್ರೆಂಡ್ಸ್
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},ಐಟಂ ಐಟಂ ಮಾಸ್ಟರ್ ಉಲ್ಲೇಖಿಸಿಲ್ಲ ಐಟಂ ಗ್ರೂಪ್ {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,ಖಾತೆಗೆ ಡೆಬಿಟ್ ಒಂದು ಸ್ವೀಕರಿಸುವಂತಹ ಖಾತೆಯನ್ನು ಇರಬೇಕು
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,ಖಾತೆಗೆ ಡೆಬಿಟ್ ಒಂದು ಸ್ವೀಕರಿಸುವಂತಹ ಖಾತೆಯನ್ನು ಇರಬೇಕು
DocType: Shipping Rule,Shipping Amount,ಶಿಪ್ಪಿಂಗ್ ಪ್ರಮಾಣ
DocType: Supplier Scorecard Period,Period Score,ಅವಧಿ ಸ್ಕೋರ್
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,ಗ್ರಾಹಕರು ಸೇರಿಸಿ
@ -2396,7 +2400,7 @@ DocType: Purchase Order,Delivered,ತಲುಪಿಸಲಾಗಿದೆ
,Vehicle Expenses,ವಾಹನ ವೆಚ್ಚಗಳು
DocType: Serial No,Invoice Details,ಇನ್ವಾಯ್ಸ್ ವಿವರಗಳು
DocType: Grant Application,Show on Website,ವೆಬ್ಸೈಟ್ನಲ್ಲಿ ತೋರಿಸಿ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},ಉಪಯುಕ್ತ ಜೀವನದ ನಂತರ ನಿರೀಕ್ಷಿತ ಮೌಲ್ಯ ಹೆಚ್ಚು ಅಥವಾ ಸಮನಾಗಿರಬೇಕು {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},ಉಪಯುಕ್ತ ಜೀವನದ ನಂತರ ನಿರೀಕ್ಷಿತ ಮೌಲ್ಯ ಹೆಚ್ಚು ಅಥವಾ ಸಮನಾಗಿರಬೇಕು {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,ಪ್ರಾರಂಭಿಸಿ
DocType: Hub Category,Hub Category,ಹಬ್ ವರ್ಗ
DocType: Purchase Invoice,SEZ,SEZ
@ -2428,7 +2432,7 @@ DocType: Patient,Patient Details,ರೋಗಿಯ ವಿವರಗಳು
DocType: Patient,B Positive,ಬಿ ಧನಾತ್ಮಕ
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","ರೋ # {0}: ಪ್ರಮಾಣ 1, ಐಟಂ ಸ್ಥಿರ ಆಸ್ತಿ ಇರಬೇಕು. ದಯವಿಟ್ಟು ಬಹು ಪ್ರಮಾಣ ಪ್ರತ್ಯೇಕ ಸಾಲು ಬಳಸಿ."
DocType: Leave Block List Allow,Leave Block List Allow,ಬ್ಲಾಕ್ ಲಿಸ್ಟ್ ಅನುಮತಿಸಿ ಬಿಡಿ
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,Abbr ಖಾಲಿ ಅಥವಾ ಜಾಗವನ್ನು ಇರುವಂತಿಲ್ಲ
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,Abbr ಖಾಲಿ ಅಥವಾ ಜಾಗವನ್ನು ಇರುವಂತಿಲ್ಲ
DocType: Patient Medical Record,Patient Medical Record,ರೋಗಿಯ ವೈದ್ಯಕೀಯ ದಾಖಲೆ
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,ಅಲ್ಲದ ಗ್ರೂಪ್ ಗ್ರೂಪ್
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,ಕ್ರೀಡೆ
@ -2479,6 +2483,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,ಯಾವುದೇ ಉಲ್ಲೇಖಕ್ಕೆ ಸ್ವೀಕರಿಸಿದ RFQ ಅನ್ನು ಹೊಂದಿಸಲಾಗುವುದಿಲ್ಲ
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,ಒಟ್ಟು ಕಳೆಯುವುದು
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,ಖಾತೆ ಕರೆನ್ಸಿಯಲ್ಲಿ ಮುದ್ರಿಸಲು ಖಾತೆಯನ್ನು ಆಯ್ಕೆಮಾಡಿ
,Production Analytics,ಪ್ರೊಡಕ್ಷನ್ ಅನಾಲಿಟಿಕ್ಸ್
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,ಇದು ಈ ರೋಗಿಯ ವಿರುದ್ಧ ವಹಿವಾಟುಗಳನ್ನು ಆಧರಿಸಿದೆ. ವಿವರಗಳಿಗಾಗಿ ಕೆಳಗೆ ಟೈಮ್ಲೈನ್ ನೋಡಿ
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,ವೆಚ್ಚ ಅಪ್ಡೇಟ್ಗೊಳಿಸಲಾಗಿದೆ
@ -2534,7 +2539,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,ಐ
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,ಕಂಪನಿ ಆಯ್ಕೆ ...
DocType: Leave Control Panel,Leave blank if considered for all departments,ಎಲ್ಲಾ ವಿಭಾಗಗಳು ಪರಿಗಣಿಸಲ್ಪಡುವ ವೇಳೆ ಖಾಲಿ ಬಿಡಿ
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","ಉದ್ಯೋಗ ವಿಧಗಳು ( ಶಾಶ್ವತ , ಒಪ್ಪಂದ , ಇಂಟರ್ನ್ , ಇತ್ಯಾದಿ ) ."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} ಐಟಂ ಕಡ್ಡಾಯ {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} ಐಟಂ ಕಡ್ಡಾಯ {1}
DocType: Payroll Entry,Fortnightly,ಪಾಕ್ಷಿಕ
DocType: Currency Exchange,From Currency,ಚಲಾವಣೆಯ
DocType: Vital Signs,Weight (In Kilogram),ತೂಕ (ಕಿಲೋಗ್ರಾಂನಲ್ಲಿ)
@ -2612,7 +2617,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),ಬೇಸಿಕ್
DocType: Student,Guardians,ಗಾರ್ಡಿಯನ್ಸ್
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,ದರ ಪಟ್ಟಿ ಹೊಂದಿಸದೆ ವೇಳೆ ಬೆಲೆಗಳು ತೋರಿಸಲಾಗುವುದಿಲ್ಲ
DocType: Stock Entry,Total Incoming Value,ಒಟ್ಟು ಒಳಬರುವ ಮೌಲ್ಯ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,ಡೆಬಿಟ್ ಅಗತ್ಯವಿದೆ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,ಡೆಬಿಟ್ ಅಗತ್ಯವಿದೆ
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Timesheets ನಿಮ್ಮ ತಂಡದ ಮಾಡಲಾಗುತ್ತದೆ ಚಟುವಟಿಕೆಗಳನ್ನು ಫಾರ್ ಸಮಯ, ವೆಚ್ಚ ಮತ್ತು ಬಿಲ್ಲಿಂಗ್ ಟ್ರ್ಯಾಕ್ ಸಹಾಯ"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,ಖರೀದಿ ಬೆಲೆ ಪಟ್ಟಿ
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,ಪೂರೈಕೆದಾರ ಸ್ಕೋರ್ಕಾರ್ಡ್ ಅಸ್ಥಿರಗಳ ಟೆಂಪ್ಲೇಟ್ಗಳು.
@ -2715,7 +2720,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,ಪರಾಮರ್ಶೆಗಾಗಿ ಮಾತ್ರ.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},ವೈದ್ಯ {0} {1} ನಲ್ಲಿ ಲಭ್ಯವಿಲ್ಲ
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,ಬ್ಯಾಚ್ ಆಯ್ಕೆ ಇಲ್ಲ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},ಅಮಾನ್ಯ {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},ಅಮಾನ್ಯ {0}: {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Fee Validity,Reference Inv,ರೆಫರೆನ್ಸ್ ಆಹ್ವಾನ
@ -2752,8 +2757,8 @@ DocType: Fees,Send Payment Request,ಪಾವತಿ ವಿನಂತಿ ಕಳು
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","ಕಾರ್ಯಾಚರಣೆಗಳು , ನಿರ್ವಹಣಾ ವೆಚ್ಚ ನಿರ್ದಿಷ್ಟಪಡಿಸಲು ಮತ್ತು ಕಾರ್ಯಾಚರಣೆಗಳು ಒಂದು ಅನನ್ಯ ಕಾರ್ಯಾಚರಣೆ ಯಾವುದೇ ನೀಡಿ ."
DocType: Water Analysis,Origin,ಮೂಲ
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,ಈ ಡಾಕ್ಯುಮೆಂಟ್ ಮೂಲಕ ಮಿತಿಗಿಂತ {0} {1} ಐಟಂ {4}. ನೀವು ಮಾಡುತ್ತಿದ್ದಾರೆ ಇನ್ನೊಂದು ಅದೇ ವಿರುದ್ಧ {3} {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,ಉಳಿಸುವ ನಂತರ ಮರುಕಳಿಸುವ ಸೆಟ್ ಮಾಡಿ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,ಬದಲಾವಣೆ ಆಯ್ಕೆ ಪ್ರಮಾಣದ ಖಾತೆಯನ್ನು
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,ಉಳಿಸುವ ನಂತರ ಮರುಕಳಿಸುವ ಸೆಟ್ ಮಾಡಿ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,ಬದಲಾವಣೆ ಆಯ್ಕೆ ಪ್ರಮಾಣದ ಖಾತೆಯನ್ನು
DocType: Purchase Invoice,Price List Currency,ಬೆಲೆ ಪಟ್ಟಿ ಕರೆನ್ಸಿ
DocType: Naming Series,User must always select,ಬಳಕೆದಾರ ಯಾವಾಗಲೂ ಆಯ್ಕೆ ಮಾಡಬೇಕು
DocType: Stock Settings,Allow Negative Stock,ನಕಾರಾತ್ಮಕ ಸ್ಟಾಕ್ ಅನುಮತಿಸಿ
@ -2809,7 +2814,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,ನಿರ್ವ
DocType: Supplier Scorecard,Warn for new Purchase Orders,ಹೊಸ ಖರೀದಿಯ ಆದೇಶಗಳಿಗೆ ಎಚ್ಚರಿಕೆ ನೀಡಿ
DocType: Quality Inspection Reading,Reading 9,9 ಓದುವಿಕೆ
DocType: Supplier,Is Frozen,ಹೆಪ್ಪುಗಟ್ಟಿರುವ
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,ಗ್ರೂಪ್ ನೋಡ್ ಗೋದಾಮಿನ ವ್ಯವಹಾರಗಳಿಗೆ ಆಯ್ಕೆ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,ಗ್ರೂಪ್ ನೋಡ್ ಗೋದಾಮಿನ ವ್ಯವಹಾರಗಳಿಗೆ ಆಯ್ಕೆ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ
DocType: Buying Settings,Buying Settings,ಸೆಟ್ಟಿಂಗ್ಗಳು ಖರೀದಿ
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,ಯಾವುದೇ BOM . ಒಂದು ಮುಕ್ತಾಯಗೊಂಡ ಗುಡ್ ಐಟಂ
DocType: Upload Attendance,Attendance To Date,ದಿನಾಂಕ ಹಾಜರಿದ್ದ
@ -2824,6 +2829,7 @@ DocType: Grant Application,Organization,ಸಂಸ್ಥೆ
DocType: Grant Application,Organization,ಸಂಸ್ಥೆ
DocType: BOM Update Tool,BOM Update Tool,BOM ಅಪ್ಡೇಟ್ ಟೂಲ್
DocType: SG Creation Tool Course,Student Group Name,ವಿದ್ಯಾರ್ಥಿ ಗುಂಪು ಹೆಸರು
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,ಸ್ಫೋಟಿಸಿದ ನೋಟವನ್ನು ತೋರಿಸಿ
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,ಶುಲ್ಕಗಳು ರಚಿಸಲಾಗುತ್ತಿದೆ
apps/erpnext/erpnext/setup/doctype/company/company.js +91,Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone.,ನೀವು ನಿಜವಾಗಿಯೂ ಈ ಕಂಪನಿಗೆ ಎಲ್ಲಾ ವ್ಯವಹಾರಗಳ ಅಳಿಸಲು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಿ. ಅದು ಎಂದು ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಡೇಟಾ ಉಳಿಯುತ್ತದೆ. ಈ ಕಾರ್ಯವನ್ನು ರದ್ದುಪಡಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ.
DocType: Room,Room Number,ಕೋಣೆ ಸಂಖ್ಯೆ
@ -2834,7 +2840,7 @@ DocType: Journal Entry Account,Payroll Entry,ವೇತನದಾರರ ನಮೂ
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,ತೆರಿಗೆ ಟೆಂಪ್ಲೇಟ್ ಮಾಡಿ
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,ಬಳಕೆದಾರ ವೇದಿಕೆ
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,ರಾ ಮೆಟೀರಿಯಲ್ಸ್ ಖಾಲಿ ಇರುವಂತಿಲ್ಲ.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","ಸ್ಟಾಕ್ ನವೀಕರಣಗೊಳ್ಳುವುದಿಲ್ಲ, ಸರಕುಪಟ್ಟಿ ಡ್ರಾಪ್ ಹಡಗು ಐಟಂ ಹೊಂದಿದೆ."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","ಸ್ಟಾಕ್ ನವೀಕರಣಗೊಳ್ಳುವುದಿಲ್ಲ, ಸರಕುಪಟ್ಟಿ ಡ್ರಾಪ್ ಹಡಗು ಐಟಂ ಹೊಂದಿದೆ."
DocType: Lab Test Sample,Lab Test Sample,ಲ್ಯಾಬ್ ಟೆಸ್ಟ್ ಮಾದರಿ
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,ತ್ವರಿತ ಜರ್ನಲ್ ಎಂಟ್ರಿ
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,BOM ಯಾವುದೇ ಐಟಂ agianst ಪ್ರಸ್ತಾಪಿಸಿದ್ದಾರೆ ವೇಳೆ ನೀವು ದರ ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ
@ -2905,7 +2911,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,ಯು. ಎಸ್. ಡಿ
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,ಸರಕುಪಟ್ಟಿ ಮಾಡಿ
DocType: Selling Settings,Auto close Opportunity after 15 days,15 ದಿನಗಳ ನಂತರ ಆಟೋ ನಿಕಟ ಅವಕಾಶ
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,{1} ಸ್ಕೋರ್ಕಾರ್ಡ್ ನಿಂತಿರುವ ಕಾರಣ {0} ಖರೀದಿ ಆದೇಶಗಳನ್ನು ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,{1} ಸ್ಕೋರ್ಕಾರ್ಡ್ ನಿಂತಿರುವ ಕಾರಣ {0} ಖರೀದಿ ಆದೇಶಗಳನ್ನು ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,ಅಂತ್ಯ ವರ್ಷ
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Quot / ಲೀಡ್%
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Quot / ಲೀಡ್%
@ -3018,7 +3024,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90 ಮೇಲೆ
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,ರೋ # {0}: ಜರ್ನಲ್ ಎಂಟ್ರಿ {1} ಖಾತೆಯನ್ನು ಹೊಂದಿಲ್ಲ {2} ಅಥವಾ ಈಗಾಗಲೇ ಮತ್ತೊಂದು ಚೀಟಿ ವಿರುದ್ಧ ದಾಖಲೆಗಳುಸರಿಹೊಂದಿವೆ
DocType: Supplier Scorecard Criteria,Criteria Weight,ಮಾನದಂಡ ತೂಕ
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,ಸರಬರಾಜುದಾರ&gt; ಪೂರೈಕೆದಾರ ಕೌಟುಂಬಿಕತೆ
DocType: Buying Settings,Default Buying Price List,ಡೀಫಾಲ್ಟ್ ಬೆಲೆ ಪಟ್ಟಿ ಖರೀದಿ
DocType: Payroll Entry,Salary Slip Based on Timesheet,ಸಂಬಳ ಸ್ಲಿಪ್ Timesheet ಆಧರಿಸಿ
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,ಖರೀದಿ ದರ
@ -3108,7 +3113,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,ಟ್ರ್ಯಾಕ್ ಇಂಡಸ್ಟ್ರಿ ಪ್ರಕಾರ ಕಾರಣವಾಗುತ್ತದೆ.
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,ಲೆಟರ್ಹೆಡ್ಸ್ಗೆ ಹೋಗಿ
DocType: Item Supplier,Item Supplier,ಐಟಂ ಸರಬರಾಜುದಾರ
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,ಯಾವುದೇ ಐಟಂ ಬ್ಯಾಚ್ ಪಡೆಯಲು ಕೋಡ್ ನಮೂದಿಸಿ
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,ಯಾವುದೇ ಐಟಂ ಬ್ಯಾಚ್ ಪಡೆಯಲು ಕೋಡ್ ನಮೂದಿಸಿ
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},{0} {1} quotation_to ಒಂದು ಮೌಲ್ಯವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,ಎಲ್ಲಾ ವಿಳಾಸಗಳನ್ನು .
DocType: Company,Stock Settings,ಸ್ಟಾಕ್ ಸೆಟ್ಟಿಂಗ್ಗಳು
@ -3298,6 +3303,7 @@ DocType: Employee Loan,Loan Details,ಸಾಲ ವಿವರಗಳು
DocType: Company,Default Inventory Account,ಡೀಫಾಲ್ಟ್ ಇನ್ವೆಂಟರಿ ಖಾತೆ
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,ರೋ {0}: ಪೂರ್ಣಗೊಂಡಿದೆ ಪ್ರಮಾಣ ಹೆಚ್ಚಾಗಿದೆ ಶೂನ್ಯ ಇರಬೇಕು.
DocType: Antibiotic,Antibiotic Name,ಆಂಟಿಬಯೋಟಿಕ್ ಹೆಸರು
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,ಐಟಂ ಕೋಡ್&gt; ಐಟಂ ಗ್ರೂಪ್&gt; ಬ್ರ್ಯಾಂಡ್
DocType: Purchase Invoice,Apply Additional Discount On,ಹೆಚ್ಚುವರಿ ರಿಯಾಯತಿ ಅನ್ವಯಿಸು
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,ಪ್ರಕಾರವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ ...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,ಬೆಳೆ ಬೆಳೆಯುತ್ತಿರುವ ಎಲ್ಲ ಭೂಮಿ ಘಟಕಗಳಿಗೆ ಲಿಂಕ್
@ -3493,6 +3499,7 @@ DocType: Guardian Student,Guardian Student,ಗಾರ್ಡಿಯನ್ ವಿದ
DocType: Supplier,Credit Limit,ಕ್ರೆಡಿಟ್ ಮಿತಿಯನ್ನು
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,ಸರಾಸರಿ. ಬೆಲೆ ಪಟ್ಟಿ ದರ ಮಾರಾಟ
DocType: Production Plan Sales Order,Salse Order Date,ಮಣ್ಣಿನ ಜ್ವಾಲಾಮುಖಿ ಆದೇಶ ದಿನಾಂಕ
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,ಸರಬರಾಜುದಾರ&gt; ಪೂರೈಕೆದಾರ ಕೌಟುಂಬಿಕತೆ
DocType: Salary Component,Salary Component,ಸಂಬಳ ಕಾಂಪೊನೆಂಟ್
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,ಪಾವತಿ ನಮೂದುಗಳು {0} ಅನ್ ಬಂಧಿಸಿಲ್ಲ
DocType: GL Entry,Voucher No,ಚೀಟಿ ಸಂಖ್ಯೆ
@ -3502,7 +3509,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,ತುಂಬಾ
DocType: Leave Allocation,Leave Allocation,ಅಲೋಕೇಶನ್ ಬಿಡಿ
DocType: Payment Request,Recipient Message And Payment Details,ಸ್ವೀಕರಿಸುವವರ ಸಂದೇಶ ಮತ್ತು ಪಾವತಿ ವಿವರಗಳು
DocType: Training Event,Trainer Email,ತರಬೇತುದಾರ ಇಮೇಲ್
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,ಮೆಟೀರಿಯಲ್ ವಿನಂತಿಗಳನ್ನು {0} ದಾಖಲಿಸಿದವರು
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,ಮೆಟೀರಿಯಲ್ ವಿನಂತಿಗಳನ್ನು {0} ದಾಖಲಿಸಿದವರು
DocType: Restaurant Reservation,No of People,ಜನರ ಸಂಖ್ಯೆ
DocType: Production Planning Tool,Include sub-contracted raw materials,ಉಪ ಗುತ್ತಿಗೆ ಕಚ್ಚಾ ವಸ್ತುಗಳನ್ನು
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,ನಿಯಮಗಳು ಅಥವಾ ಒಪ್ಪಂದದ ಟೆಂಪ್ಲೇಟು .
@ -3568,7 +3575,7 @@ DocType: Landed Cost Item,Receipt Document,ರಸೀತಿ ಡಾಕ್ಯು
DocType: Production Planning Tool,Create Material Requests,CreateMaterial ವಿನಂತಿಗಳು
DocType: Employee Education,School/University,ಸ್ಕೂಲ್ / ವಿಶ್ವವಿದ್ಯಾಲಯ
DocType: Payment Request,Reference Details,ರೆಫರೆನ್ಸ್ ವಿವರಗಳು
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,ಉಪಯುಕ್ತ ಲೈಫ್ ನಂತರ ನಿರೀಕ್ಷಿತ ಮೌಲ್ಯದ ಒಟ್ಟು ಖರೀದಿಯ ಮೊತ್ತ ಕಡಿಮೆ ಇರಬೇಕು
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,ಉಪಯುಕ್ತ ಲೈಫ್ ನಂತರ ನಿರೀಕ್ಷಿತ ಮೌಲ್ಯದ ಒಟ್ಟು ಖರೀದಿಯ ಮೊತ್ತ ಕಡಿಮೆ ಇರಬೇಕು
DocType: Sales Invoice Item,Available Qty at Warehouse,ವೇರ್ಹೌಸ್ ಲಭ್ಯವಿದೆ ಪ್ರಮಾಣ
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,ಖ್ಯಾತವಾದ ಪ್ರಮಾಣ
DocType: Asset,Double Declining Balance,ಡಬಲ್ ಕ್ಷೀಣಿಸಿದ ಬ್ಯಾಲೆನ್ಸ್
@ -3580,7 +3587,7 @@ DocType: Attendance,On Leave,ರಜೆಯ ಮೇಲೆ
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,ಅಪ್ಡೇಟ್ಗಳು ಪಡೆಯಿರಿ
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: ಖಾತೆ {2} ಕಂಪನಿ ಸೇರುವುದಿಲ್ಲ {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,ಪ್ರತಿ ಗುಣಲಕ್ಷಣಗಳಿಂದ ಕನಿಷ್ಠ ಒಂದು ಮೌಲ್ಯವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,ಮೆಟೀರಿಯಲ್ ವಿನಂತಿ {0} ರದ್ದು ಅಥವಾ ನಿಲ್ಲಿಸಿದಾಗ
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,ಮೆಟೀರಿಯಲ್ ವಿನಂತಿ {0} ರದ್ದು ಅಥವಾ ನಿಲ್ಲಿಸಿದಾಗ
apps/erpnext/erpnext/config/hr.py +310,Leave Management,ಮ್ಯಾನೇಜ್ಮೆಂಟ್ ಬಿಡಿ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,ಖಾತೆ ಗುಂಪು
DocType: Sales Order,Fully Delivered,ಸಂಪೂರ್ಣವಾಗಿ ತಲುಪಿಸಲಾಗಿದೆ
@ -3591,14 +3598,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},ಪಾವತಿಸಲಾಗುತ್ತದೆ ಪ್ರಮಾಣ ಸಾಲದ ಪ್ರಮಾಣ ಹೆಚ್ಚು ಹೆಚ್ಚಿರಬಾರದು {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,ಪ್ರೋಗ್ರಾಂಗಳಿಗೆ ಹೋಗಿ
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},ಸಾಲು {0} # ನಿಗದಿಪಡಿಸಿದ ಮೊತ್ತವು {1} ಹಕ್ಕುಸ್ವಾಮ್ಯದ ಮೊತ್ತಕ್ಕಿಂತಲೂ ಹೆಚ್ಚಿಲ್ಲ {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,ಸೆಟಪ್&gt; ಸಂಖ್ಯಾ ಸರಣಿಗಳ ಮೂಲಕ ಹಾಜರಾತಿಗಾಗಿ ಸೆಟಪ್ ಸಂಖ್ಯೆಯ ಸರಣಿ
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},ಪರ್ಚೇಸ್ ಆರ್ಡರ್ ಸಂಖ್ಯೆ ಐಟಂ ಅಗತ್ಯವಿದೆ {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,ಪ್ರೊಡಕ್ಷನ್ ಆರ್ಡರ್ ರಚಿಸಿಲ್ಲ
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"ಇಂದ ದಿನಾಂಕ, ಗೆ ದಿನಾಂಕದ ಆಮೇಲೆ ಬರಬೇಕು"
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},ಅಲ್ಲ ವಿದ್ಯಾರ್ಥಿಯಾಗಿ ಸ್ಥಿತಿಯನ್ನು ಬದಲಾಯಿಸಬಹುದು {0} ವಿದ್ಯಾರ್ಥಿ ಅಪ್ಲಿಕೇಶನ್ ಸಂಬಂಧ ಇದೆ {1}
DocType: Asset,Fully Depreciated,ಸಂಪೂರ್ಣವಾಗಿ Depreciated
,Stock Projected Qty,ಸ್ಟಾಕ್ ಪ್ರಮಾಣ ಯೋಜಿತ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},ಗ್ರಾಹಕ {0} ಅಭಿವ್ಯಕ್ತಗೊಳಿಸಲು ಸೇರಿಲ್ಲ {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},ಗ್ರಾಹಕ {0} ಅಭಿವ್ಯಕ್ತಗೊಳಿಸಲು ಸೇರಿಲ್ಲ {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,ಗುರುತು ಅಟೆಂಡೆನ್ಸ್ ಎಚ್ಟಿಎಮ್ಎಲ್
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers","ಉಲ್ಲೇಖಗಳು ಪ್ರಸ್ತಾಪಗಳನ್ನು, ನಿಮ್ಮ ಗ್ರಾಹಕರಿಗೆ ಕಳುಹಿಸಿದ್ದಾರೆ ಬಿಡ್ ಇವೆ"
DocType: Sales Order,Customer's Purchase Order,ಗ್ರಾಹಕರ ಆರ್ಡರ್ ಖರೀದಿಸಿ
@ -3683,7 +3689,7 @@ DocType: Salary Slip,Hour Rate,ಅವರ್ ದರ
DocType: Stock Settings,Item Naming By,ಐಟಂ ಹೆಸರಿಸುವ ಮೂಲಕ
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},ಮತ್ತೊಂದು ಅವಧಿ ಮುಕ್ತಾಯ ಎಂಟ್ರಿ {0} ನಂತರ ಮಾಡಲಾಗಿದೆ {1}
DocType: Production Order,Material Transferred for Manufacturing,ವಸ್ತು ಉತ್ಪಾದನೆ ವರ್ಗಾಯಿಸಲ್ಪಟ್ಟ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,ಖಾತೆ {0} ಮಾಡುವುದಿಲ್ಲ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,ಖಾತೆ {0} ಮಾಡುವುದಿಲ್ಲ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ
DocType: Project,Project Type,ಪ್ರಾಜೆಕ್ಟ್ ಕೌಟುಂಬಿಕತೆ
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,ಈ ಕಾರ್ಯಕ್ಕಾಗಿ ಮಗುವಿನ ಕಾರ್ಯವು ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ. ಈ ಕಾರ್ಯವನ್ನು ನೀವು ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,ಗುರಿ ಪ್ರಮಾಣ ಅಥವಾ ಗುರಿ ಪ್ರಮಾಣವನ್ನು ಒಂದೋ ಕಡ್ಡಾಯ.
@ -3787,11 +3793,11 @@ DocType: C-Form,I,ನಾನು
DocType: Company,Asset Depreciation Cost Center,ಆಸ್ತಿ ಸವಕಳಿ ವೆಚ್ಚದ ಕೇಂದ್ರ
DocType: Sales Order Item,Sales Order Date,ಮಾರಾಟದ ಆದೇಶ ದಿನಾಂಕ
DocType: Sales Invoice Item,Delivered Qty,ತಲುಪಿಸಲಾಗಿದೆ ಪ್ರಮಾಣ
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,ಒಟ್ಟು ಎಕ್ಸ್ಕ್. ತೆರಿಗೆ
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","ಪರಿಶೀಲಿಸಿದರೆ, ಪ್ರತಿಯೊಂದು ನಿರ್ಮಾಣ ಐಟಂ ಎಲ್ಲಾ ಮಕ್ಕಳು ಮೆಟೀರಿಯಲ್ ವಿನಂತಿಗಳು ಸೇರಿಸಲಾಗುವುದು."
DocType: Assessment Plan,Assessment Plan,ಅಸೆಸ್ಮೆಂಟ್ ಯೋಜನೆ
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,ಗ್ರಾಹಕ {0} ರಚಿಸಲಾಗಿದೆ.
DocType: Stock Settings,Limit Percent,ಮಿತಿ ಪರ್ಸೆಂಟ್
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,ದಯವಿಟ್ಟು ಶೈಕ್ಷಣಿಕ&gt; ಶಿಕ್ಷಣ ಸೆಟ್ಟಿಂಗ್ಗಳಲ್ಲಿ ತರಬೇತುದಾರ ಹೆಸರಿಸುವ ವ್ಯವಸ್ಥೆಯನ್ನು ಸಿದ್ಧಗೊಳಿಸಿ
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,ಯಾವುದೇ ವೇರ್ಹೌಸ್ನಲ್ಲಿ ಪ್ರಸ್ತುತ ಯಾವುದೇ ಸ್ಟಾಕ್ ಲಭ್ಯವಿಲ್ಲ
,Payment Period Based On Invoice Date,ಸರಕುಪಟ್ಟಿ ದಿನಾಂಕವನ್ನು ಆಧರಿಸಿ ಪಾವತಿ ಅವಧಿ
DocType: Sample Collection,No. of print,ಮುದ್ರಣ ಸಂಖ್ಯೆ
@ -3807,12 +3813,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),ಸಾಲಗಾರರು ({0})
DocType: Pricing Rule,Margin,ಕರೆ
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,ಹೊಸ ಗ್ರಾಹಕರು
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,ನಿವ್ವಳ ಲಾಭ%
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,ನಿವ್ವಳ ಲಾಭ%
DocType: Appraisal Goal,Weightage (%),Weightage ( % )
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,ಪಿಓಎಸ್ ಪ್ರೊಫೈಲ್ ಅನ್ನು ಬದಲಾಯಿಸಿ
DocType: Bank Reconciliation Detail,Clearance Date,ಕ್ಲಿಯರೆನ್ಸ್ ದಿನಾಂಕ
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,ಅಸೆಸ್ಮೆಂಟ್ ವರದಿ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,ಒಟ್ಟು ಖರೀದಿಯ ಮೊತ್ತ ಕಡ್ಡಾಯ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,ಒಟ್ಟು ಖರೀದಿಯ ಮೊತ್ತ ಕಡ್ಡಾಯ
DocType: Lead,Address Desc,DESC ವಿಳಾಸ
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,ಪಕ್ಷದ ಕಡ್ಡಾಯ
DocType: Journal Entry,JV-,JV-
@ -3844,7 +3850,6 @@ DocType: Account,Accumulated Depreciation,ಕ್ರೋಢಿಕೃತ ಸ
DocType: Supplier Scorecard Scoring Standing,Standing Name,ಸ್ಟ್ಯಾಂಡಿಂಗ್ ಹೆಸರು
DocType: Stock Entry,Customer or Supplier Details,ಗ್ರಾಹಕ ಅಥವಾ ಪೂರೈಕೆದಾರರ ವಿವರಗಳು
DocType: Employee Loan Application,Required by Date,ದಿನಾಂಕ ಅಗತ್ಯವಾದ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),ಮುಚ್ಚುವ ಬ್ಯಾಲೆನ್ಸ್ (ಡಾ - ಕ್ರ)
DocType: Lead,Lead Owner,ಲೀಡ್ ಮಾಲೀಕ
DocType: Bin,Requested Quantity,ವಿನಂತಿಸಲಾಗಿದೆ ಪ್ರಮಾಣ
DocType: Patient,Marital Status,ವೈವಾಹಿಕ ಸ್ಥಿತಿ
@ -3858,7 +3863,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,ಬಹು ರೂಪಾಂತರಗಳು
DocType: Sales Invoice,Against Income Account,ಆದಾಯ ಖಾತೆ ವಿರುದ್ಧ
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% ತಲುಪಿಸಲಾಗಿದೆ
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,ಐಟಂ {0}: ಆದೇಶ ಪ್ರಮಾಣ {1} ಕನಿಷ್ಠ ಸಲುವಾಗಿ ಪ್ರಮಾಣ {2} (ಐಟಂ ವ್ಯಾಖ್ಯಾನಿಸಲಾಗಿದೆ) ಕಡಿಮೆ ಸಾಧ್ಯವಿಲ್ಲ.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,ಐಟಂ {0}: ಆದೇಶ ಪ್ರಮಾಣ {1} ಕನಿಷ್ಠ ಸಲುವಾಗಿ ಪ್ರಮಾಣ {2} (ಐಟಂ ವ್ಯಾಖ್ಯಾನಿಸಲಾಗಿದೆ) ಕಡಿಮೆ ಸಾಧ್ಯವಿಲ್ಲ.
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,ಮಾಸಿಕ ವಿತರಣೆ ಶೇಕಡಾವಾರು
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,ದಯವಿಟ್ಟು ಇನ್ನೊಂದು ಬಳಕೆದಾರರಂತೆ ಲಾಗಿನ್ ಮಾಡಿ.
DocType: Territory,Territory Targets,ಪ್ರದೇಶ ಗುರಿಗಳ
@ -3959,7 +3964,7 @@ DocType: Program Enrollment,School House,ಸ್ಕೂಲ್ ಹೌಸ್
DocType: Serial No,Out of AMC,ಎಎಂಸಿ ಔಟ್
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,ಬುಕ್ಡ್ Depreciations ಸಂಖ್ಯೆ ಒಟ್ಟು ಸಂಖ್ಯೆ Depreciations ಕ್ಕೂ ಹೆಚ್ಚು ಸಾಧ್ಯವಿಲ್ಲ
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,ನಿರ್ವಹಣೆ ಭೇಟಿ ಮಾಡಿ
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,ಮಾರಾಟದ ಮಾಸ್ಟರ್ ಮ್ಯಾನೇಜರ್ {0} ಪಾತ್ರದಲ್ಲಿ ಹೊಂದಿರುವ ಬಳಕೆದಾರರಿಗೆ ಸಂಪರ್ಕಿಸಿ
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,ಮಾರಾಟದ ಮಾಸ್ಟರ್ ಮ್ಯಾನೇಜರ್ {0} ಪಾತ್ರದಲ್ಲಿ ಹೊಂದಿರುವ ಬಳಕೆದಾರರಿಗೆ ಸಂಪರ್ಕಿಸಿ
DocType: Company,Default Cash Account,ಡೀಫಾಲ್ಟ್ ನಗದು ಖಾತೆ
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,ಕಂಪನಿ ( ಗ್ರಾಹಕ ಅಥವಾ ಸರಬರಾಜುದಾರ ) ಮಾಸ್ಟರ್ .
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,ಈ ವಿದ್ಯಾರ್ಥಿ ಹಾಜರಾತಿ ಆಧರಿಸಿದೆ
@ -4111,7 +4116,6 @@ DocType: Delivery Note Item,From Warehouse,ಗೋದಾಮಿನ
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,ಪ್ರಸ್ತಾಪಿತ ಮಾನದಂಡಗಳಿಗೆ ಉದ್ಯೋಗಿಗಳು ಇಲ್ಲ
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,ಮೆಟೀರಿಯಲ್ಸ್ ಬಿಲ್ ಯಾವುದೇ ವಸ್ತುಗಳು ತಯಾರಿಸಲು
DocType: Restaurant,Default Customer,ಡೀಫಾಲ್ಟ್ ಗ್ರಾಹಕ
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,ಮಾನವ ಸಂಪನ್ಮೂಲ&gt; ಮಾನವ ಸಂಪನ್ಮೂಲ ಸೆಟ್ಟಿಂಗ್ಗಳಲ್ಲಿ ಉದ್ಯೋಗಿ ಹೆಸರಿಸುವ ವ್ಯವಸ್ಥೆಯನ್ನು ಸಿದ್ಧಗೊಳಿಸಿ
DocType: Assessment Plan,Supervisor Name,ಮೇಲ್ವಿಚಾರಕ ಹೆಸರು
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,ಅದೇ ದಿನದಂದು ಅಪಾಯಿಂಟ್ಮೆಂಟ್ ರಚಿಸಿದ್ದರೆ ಅದನ್ನು ದೃಢೀಕರಿಸಬೇಡಿ
DocType: Program Enrollment Course,Program Enrollment Course,ಕಾರ್ಯಕ್ರಮದಲ್ಲಿ ದಾಖಲಾತಿ ಕೋರ್ಸ್
@ -4234,7 +4238,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,ವೆಬ್ಸೈಟ್ ವಿವರಣೆ
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,ಇಕ್ವಿಟಿ ನಿವ್ವಳ ವ್ಯತ್ಯಾಸದ
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,ಹೊಸತು
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,ಖರೀದಿ ಸರಕುಪಟ್ಟಿ {0} ರದ್ದು ಮೊದಲು
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,ಖರೀದಿ ಸರಕುಪಟ್ಟಿ {0} ರದ್ದು ಮೊದಲು
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","ಇಮೇಲ್ ವಿಳಾಸ, ಅನನ್ಯ ಇರಬೇಕು ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ {0}"
DocType: Serial No,AMC Expiry Date,ಎಎಂಸಿ ಅಂತ್ಯ ದಿನಾಂಕ
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,ರಸೀತಿ
@ -4251,7 +4255,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,ಇನ್ನ
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,ಕ್ಯಾಶ್ ಫ್ಲೋ ಹೇಳಿಕೆ
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},ಸಾಲದ ಪ್ರಮಾಣ ಗರಿಷ್ಠ ಸಾಲದ ಪ್ರಮಾಣ ಮೀರುವಂತಿಲ್ಲ {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,ಪರವಾನಗಿ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},ಸಿ ಫಾರ್ಮ್ ಈ ಸರಕುಪಟ್ಟಿ {0} ತೆಗೆದುಹಾಕಿ {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},ಸಿ ಫಾರ್ಮ್ ಈ ಸರಕುಪಟ್ಟಿ {0} ತೆಗೆದುಹಾಕಿ {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,ನೀವು ಆದ್ದರಿಂದ ಈ ಹಿಂದಿನ ಆರ್ಥಿಕ ವರ್ಷದ ಬಾಕಿ ಈ ಆರ್ಥಿಕ ವರ್ಷ ಬಿಟ್ಟು ಸೇರಿವೆ ಬಯಸಿದರೆ ಮುಂದಕ್ಕೆ ಸಾಗಿಸುವ ಆಯ್ಕೆ ಮಾಡಿ
DocType: GL Entry,Against Voucher Type,ಚೀಟಿ ಕೌಟುಂಬಿಕತೆ ವಿರುದ್ಧ
DocType: Physician,Phone (R),ಫೋನ್ (ಆರ್)
@ -4263,7 +4267,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,ಬಿ ಋಣಾತ್ಮಕ
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,ನಿರ್ವಹಣೆ ಸ್ಥಿತಿಯನ್ನು ಸಲ್ಲಿಕೆಗೆ ರದ್ದುಪಡಿಸಬೇಕು ಅಥವಾ ಪೂರ್ಣಗೊಳಿಸಬೇಕು
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},ಖಾತೆ {0} ಮಾಡುತ್ತದೆ ಕಂಪನಿ ಸೇರಿದೆ ಅಲ್ಲ {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,ಸಾಲು {0} ಸರಣಿ ಸಂಖ್ಯೆಗಳು ಡೆಲಿವರಿ ಗಮನಿಸಿ ಹೊಂದುವುದಿಲ್ಲ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,ಸಾಲು {0} ಸರಣಿ ಸಂಖ್ಯೆಗಳು ಡೆಲಿವರಿ ಗಮನಿಸಿ ಹೊಂದುವುದಿಲ್ಲ
DocType: Student,Guardian Details,ಗಾರ್ಡಿಯನ್ ವಿವರಗಳು
DocType: C-Form,C-Form,ಸಿ ಆಕಾರ
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,ಅನೇಕ ನೌಕರರು ಮಾರ್ಕ್ ಅಟೆಂಡೆನ್ಸ್
@ -4305,7 +4309,7 @@ DocType: Opening Invoice Creation Tool,Sales,ಮಾರಾಟದ
DocType: Stock Entry Detail,Basic Amount,ಬೇಸಿಕ್ ಪ್ರಮಾಣ
DocType: Training Event,Exam,ಪರೀಕ್ಷೆ
DocType: Complaint,Complaint,ದೂರು
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},ಸ್ಟಾಕ್ ಐಟಂ ಅಗತ್ಯವಿದೆ ವೇರ್ಹೌಸ್ {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},ಸ್ಟಾಕ್ ಐಟಂ ಅಗತ್ಯವಿದೆ ವೇರ್ಹೌಸ್ {0}
DocType: Leave Allocation,Unused leaves,ಬಳಕೆಯಾಗದ ಎಲೆಗಳು
DocType: Patient,Alcohol Past Use,ಆಲ್ಕೊಹಾಲ್ ಪಾಸ್ಟ್ ಯೂಸ್
DocType: Fertilizer Content,Fertilizer Content,ರಸಗೊಬ್ಬರ ವಿಷಯ
@ -4434,6 +4438,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,ಸೂತ್ರ
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,ಸರಣಿ #
DocType: Lab Test Template,Lab Test Template,ಲ್ಯಾಬ್ ಟೆಸ್ಟ್ ಟೆಂಪ್ಲೇಟು
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,ಮಾರಾಟದ ಖಾತೆ
DocType: Purchase Invoice Item,Total Weight,ಒಟ್ಟು ತೂಕ
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,ಮಾರಾಟದ ಮೇಲೆ ಕಮಿಷನ್
DocType: Offer Letter Term,Value / Description,ಮೌಲ್ಯ / ವಿವರಣೆ
@ -4592,7 +4597,7 @@ Updated via 'Time Log'","ನಿಮಿಷಗಳಲ್ಲಿ
DocType: Customer,From Lead,ಮುಂಚೂಣಿಯಲ್ಲಿವೆ
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,ಉತ್ಪಾದನೆಗೆ ಬಿಡುಗಡೆ ಆರ್ಡರ್ಸ್ .
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,ಹಣಕಾಸಿನ ವರ್ಷ ಆಯ್ಕೆ ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,ಪಿಓಎಸ್ ಪ್ರೊಫೈಲ್ ಪಿಓಎಸ್ ಎಂಟ್ರಿ ಮಾಡಲು ಅಗತ್ಯವಿದೆ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,ಪಿಓಎಸ್ ಪ್ರೊಫೈಲ್ ಪಿಓಎಸ್ ಎಂಟ್ರಿ ಮಾಡಲು ಅಗತ್ಯವಿದೆ
DocType: Program Enrollment Tool,Enroll Students,ವಿದ್ಯಾರ್ಥಿಗಳು ದಾಖಲು
DocType: Lab Test,Approved Date,ಅನುಮೋದಿತ ದಿನಾಂಕ
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,ಸ್ಟ್ಯಾಂಡರ್ಡ್ ವಿಕ್ರಯ
@ -4669,7 +4674,7 @@ DocType: Employee,Held On,ನಡೆದ
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,ಪ್ರೊಡಕ್ಷನ್ ಐಟಂ
,Employee Information,ನೌಕರರ ಮಾಹಿತಿ
DocType: Stock Entry Detail,Additional Cost,ಹೆಚ್ಚುವರಿ ವೆಚ್ಚ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","ಚೀಟಿ ಮೂಲಕ ವರ್ಗೀಕರಿಸಲಾಗಿದೆ ವೇಳೆ , ಚೀಟಿ ಸಂಖ್ಯೆ ಆಧರಿಸಿ ಫಿಲ್ಟರ್ ಸಾಧ್ಯವಿಲ್ಲ"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","ಚೀಟಿ ಮೂಲಕ ವರ್ಗೀಕರಿಸಲಾಗಿದೆ ವೇಳೆ , ಚೀಟಿ ಸಂಖ್ಯೆ ಆಧರಿಸಿ ಫಿಲ್ಟರ್ ಸಾಧ್ಯವಿಲ್ಲ"
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,ಸರಬರಾಜುದಾರ ಉದ್ಧರಣ ಮಾಡಿ
DocType: Quality Inspection,Incoming,ಒಳಬರುವ
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,ಮಾರಾಟ ಮತ್ತು ಖರೀದಿಯ ಡೀಫಾಲ್ಟ್ ತೆರಿಗೆ ಟೆಂಪ್ಲೆಟ್ಗಳನ್ನು ರಚಿಸಲಾಗಿದೆ.
@ -4686,7 +4691,7 @@ DocType: Batch,Batch ID,ಬ್ಯಾಚ್ ID
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},ರೇಟಿಂಗ್ : {0}
,Delivery Note Trends,ಡೆಲಿವರಿ ಗಮನಿಸಿ ಪ್ರವೃತ್ತಿಗಳು
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,ಈ ವಾರದ ಸಾರಾಂಶ
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,ಸ್ಟಾಕ್ ಪ್ರಮಾಣ ರಲ್ಲಿ
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,ಸ್ಟಾಕ್ ಪ್ರಮಾಣ ರಲ್ಲಿ
DocType: Delivery Trip,Calculate Estimated Arrival Times,ಅಂದಾಜು ಆಗಮನದ ಸಮಯವನ್ನು ಲೆಕ್ಕಾಚಾರ ಮಾಡಿ
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,ಖಾತೆ: {0} ಮಾತ್ರ ಸ್ಟಾಕ್ ಟ್ರಾನ್ಸಾಕ್ಷನ್ಸ್ ಮೂಲಕ ಅಪ್ಡೇಟ್ ಮಾಡಬಹುದು
DocType: Student Group Creation Tool,Get Courses,ಕೋರ್ಸ್ಗಳು ಪಡೆಯಿರಿ
@ -4702,7 +4707,7 @@ DocType: Purchase Order,To Bill,ಬಿಲ್
DocType: Material Request,% Ordered,% ಆದೇಶ
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.","ಕೋರ್ಸ್ ಆಧಾರಿತ ವಿದ್ಯಾರ್ಥಿ ಗುಂಪು ಫಾರ್, ಕೋರ್ಸ್ ಕಾರ್ಯಕ್ರಮದಲ್ಲಿ ದಾಖಲಾತಿ ಸೇರಿಕೊಂಡಳು ಕೋರ್ಸ್ಗಳು ಪ್ರತಿ ವಿದ್ಯಾರ್ಥಿ ಪಡಿಸಿ ನಡೆಯಲಿದೆ."
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,Piecework
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,ಆವರೇಜ್. ಬೈಯಿಂಗ್ ದರ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,ಆವರೇಜ್. ಬೈಯಿಂಗ್ ದರ
DocType: Task,Actual Time (in Hours),(ಘಂಟೆಗಳಲ್ಲಿ) ವಾಸ್ತವ ಟೈಮ್
DocType: Employee,History In Company,ಕಂಪನಿ ಇತಿಹಾಸ
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},{ಕಳುಹಿಸುವವರ} ನಿಂದ ಹೊಸ ಸಂದೇಶ
@ -4750,7 +4755,7 @@ DocType: Asset Repair,Asset Repair,ಸ್ವತ್ತು ದುರಸ್ತಿ
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},ರೋ {0}: ಆಫ್ ಬಿಒಎಮ್ # ಕರೆನ್ಸಿ {1} ಆಯ್ಕೆ ಕರೆನ್ಸಿ ಸಮಾನ ಇರಬೇಕು {2}
DocType: Journal Entry Account,Exchange Rate,ವಿನಿಮಯ ದರ
DocType: Patient,Additional information regarding the patient,ರೋಗಿಗೆ ಸಂಬಂಧಿಸಿದ ಹೆಚ್ಚುವರಿ ಮಾಹಿತಿ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,ಮಾರಾಟದ ಆರ್ಡರ್ {0} ಸಲ್ಲಿಸದಿದ್ದರೆ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,ಮಾರಾಟದ ಆರ್ಡರ್ {0} ಸಲ್ಲಿಸದಿದ್ದರೆ
DocType: Homepage,Tag Line,ಟ್ಯಾಗ್ ಲೈನ್
DocType: Fee Component,Fee Component,ಶುಲ್ಕ ಕಾಂಪೊನೆಂಟ್
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,ಫ್ಲೀಟ್ ಮ್ಯಾನೇಜ್ಮೆಂಟ್
@ -4965,7 +4970,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,ಅಸೆಸ್ಮೆ
DocType: Employee Education,Employee Education,ನೌಕರರ ಶಿಕ್ಷಣ
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,ನಕಲು ಐಟಂ ಗುಂಪು ಐಟಂ ಗುಂಪು ಟೇಬಲ್ ಕಂಡುಬರುವ
DocType: Land Unit,Parent Land Unit,ಪೋಷಕ ಭೂಮಿ ಘಟಕ
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,ಇದು ಐಟಂ ವಿವರಗಳು ತರಲು ಅಗತ್ಯವಿದೆ.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,ಇದು ಐಟಂ ವಿವರಗಳು ತರಲು ಅಗತ್ಯವಿದೆ.
DocType: Fertilizer,Fertilizer Name,ರಸಗೊಬ್ಬರ ಹೆಸರು
DocType: Salary Slip,Net Pay,ನಿವ್ವಳ ವೇತನ
DocType: Account,Account,ಖಾತೆ
@ -5044,7 +5049,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),ನಿಜವಾದ ಪ
DocType: Item Customer Detail,Ref Code,ಉಲ್ಲೇಖ ಕೋಡ್
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,ಗ್ರಾಹಕ ಗುಂಪಿನಲ್ಲಿ ಪಿಒಎಸ್ ಪ್ರೊಫೈಲ್ನಲ್ಲಿ ಅಗತ್ಯವಿದೆ
apps/erpnext/erpnext/config/hr.py +12,Employee records.,ನೌಕರರ ದಾಖಲೆಗಳು .
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,ಮುಂದಿನ ಸವಕಳಿ ದಿನಾಂಕ ಸೆಟ್ ಮಾಡಿ
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,ಮುಂದಿನ ಸವಕಳಿ ದಿನಾಂಕ ಸೆಟ್ ಮಾಡಿ
DocType: HR Settings,Payroll Settings,ವೇತನದಾರರ ಸೆಟ್ಟಿಂಗ್ಗಳು
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,ಅಲ್ಲದ ಲಿಂಕ್ ಇನ್ವಾಯ್ಸ್ ಮತ್ತು ಪಾವತಿಗಳು ಫಲಿತಾಂಶ .
DocType: POS Settings,POS Settings,ಪಿಓಎಸ್ ಸೆಟ್ಟಿಂಗ್ಗಳು
@ -5212,7 +5217,7 @@ DocType: Item,Customer Code,ಗ್ರಾಹಕ ಕೋಡ್
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},ಹುಟ್ಟುಹಬ್ಬದ ಜ್ಞಾಪನೆ {0}
DocType: Asset Maintenance Task,Last Completion Date,ಕೊನೆಯ ಪೂರ್ಣಗೊಳಿಸುವಿಕೆ ದಿನಾಂಕ
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,ದಿನಗಳಿಂದಲೂ ಕೊನೆಯ ಆರ್ಡರ್
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,ಖಾತೆಗೆ ಡೆಬಿಟ್ ಬ್ಯಾಲೆನ್ಸ್ ಶೀಟ್ ಖಾತೆ ಇರಬೇಕು
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,ಖಾತೆಗೆ ಡೆಬಿಟ್ ಬ್ಯಾಲೆನ್ಸ್ ಶೀಟ್ ಖಾತೆ ಇರಬೇಕು
DocType: Buying Settings,Naming Series,ಸರಣಿ ಹೆಸರಿಸುವ
DocType: Leave Block List,Leave Block List Name,ಖಂಡ ಬಿಡಿ ಹೆಸರು
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,ವಿಮೆ ಪ್ರಾರಂಭ ದಿನಾಂಕ ವಿಮಾ ಅಂತಿಮ ದಿನಾಂಕ ಕಡಿಮೆ ಇರಬೇಕು
@ -5343,6 +5348,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,ಪಾವತಿ ನಮೂದುಗಳು ಪಡೆಯಿರಿ
DocType: Quotation Item,Against Docname,docName ವಿರುದ್ಧ
DocType: SMS Center,All Employee (Active),ಎಲ್ಲಾ ನೌಕರರ ( ಸಕ್ರಿಯ )
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,ಗ್ರಾಹಕ&gt; ಗ್ರಾಹಕರ ಗುಂಪು&gt; ಪ್ರದೇಶ
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,ಈಗ ವೀಕ್ಷಿಸಿ
DocType: BOM,Raw Material Cost,ರಾ ಮೆಟೀರಿಯಲ್ ವೆಚ್ಚ
DocType: Item Reorder,Re-Order Level,ಮರು ಕ್ರಮಾಂಕದ ಮಟ್ಟ
@ -5443,7 +5449,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,ಆಸನ ಸಾಮರ್ಥ್ಯ
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,ಲ್ಯಾಬ್ ಟೆಸ್ಟ್ ಗುಂಪುಗಳು
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,ಗ್ರಾಹಕ&gt; ಗ್ರಾಹಕರ ಗುಂಪು&gt; ಪ್ರದೇಶ
DocType: Project,Total Expense Claim (via Expense Claims),ಒಟ್ಟು ಖರ್ಚು ಹಕ್ಕು (ಖರ್ಚು ಹಕ್ಕು ಮೂಲಕ)
DocType: GST Settings,GST Summary,ಜಿಎಸ್ಟಿ ಸಾರಾಂಶ
DocType: Assessment Result,Total Score,ಒಟ್ಟು ಅಂಕ
@ -5457,7 +5462,7 @@ DocType: Batch,Source Document Type,ಮೂಲ ಡಾಕ್ಯುಮೆಂಟ್
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,ನಂತರದ ವೇಳಾಪಟ್ಟಿಯನ್ನು ರಚಿಸಲಾಗಿದೆ
DocType: Journal Entry,Total Debit,ಒಟ್ಟು ಡೆಬಿಟ್
DocType: Manufacturing Settings,Default Finished Goods Warehouse,ಡೀಫಾಲ್ಟ್ ತಯಾರಾದ ಸರಕುಗಳು ವೇರ್ಹೌಸ್
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,ಮಾರಾಟಗಾರ
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,ಮಾರಾಟಗಾರ
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,ಬಜೆಟ್ ಮತ್ತು ವೆಚ್ಚದ ಕೇಂದ್ರ
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,ಬಹುಪಾಲು ಡೀಫಾಲ್ಟ್ ಮೋಡ್ ಅನ್ನು ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,ಫಾರ್
@ -5633,7 +5638,7 @@ DocType: Program,Program Name,ಕಾರ್ಯಕ್ರಮದಲ್ಲಿ ಹೆ
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,ತೆರಿಗೆ ಅಥವಾ ಶುಲ್ಕ ಪರಿಗಣಿಸಿ
DocType: Driver,Driving License Category,ಚಾಲಕ ಪರವಾನಗಿ ವರ್ಗ
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,ನಿಜವಾದ ಪ್ರಮಾಣ ಕಡ್ಡಾಯ
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} ಪ್ರಸ್ತುತ ಒಂದು {1} ಪೂರೈಕೆದಾರ ಸ್ಕೋರ್ಕಾರ್ಡ್ ಸ್ಟ್ಯಾಂಡಿಂಗ್ ಅನ್ನು ಹೊಂದಿದೆ, ಮತ್ತು ಈ ಸರಬರಾಜುದಾರರಿಗೆ ಖರೀದಿ ಆದೇಶಗಳನ್ನು ಎಚ್ಚರಿಕೆಯಿಂದ ನೀಡಬೇಕು."
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} ಪ್ರಸ್ತುತ ಒಂದು {1} ಪೂರೈಕೆದಾರ ಸ್ಕೋರ್ಕಾರ್ಡ್ ಸ್ಟ್ಯಾಂಡಿಂಗ್ ಅನ್ನು ಹೊಂದಿದೆ, ಮತ್ತು ಈ ಸರಬರಾಜುದಾರರಿಗೆ ಖರೀದಿ ಆದೇಶಗಳನ್ನು ಎಚ್ಚರಿಕೆಯಿಂದ ನೀಡಬೇಕು."
DocType: Asset Maintenance Team,Asset Maintenance Team,ಆಸ್ತಿ ನಿರ್ವಹಣೆ ತಂಡ
DocType: Employee Loan,Loan Type,ಸಾಲದ ಬಗೆಯ
DocType: Scheduling Tool,Scheduling Tool,ನಿಗದಿಗೊಳಿಸುವ ಟೂಲ್

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,실험실 처방전
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,가격순 정렬
,Delay Days,지연 일
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,서비스 비용
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},일련 번호 : {0}은 (는) 판매 송장에서 이미 참조되었습니다. {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},일련 번호 : {0}은 (는) 판매 송장에서 이미 참조되었습니다. {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,송장
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,보존 재고 항목 만들기
DocType: Purchase Invoice Item,Item Weight Details,품목 무게 세부 사항
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,부모 상세 docName 같은
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","참조 : {0}, 상품 코드 : {1} 및 고객 : {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,KG
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,작업에 대한 열기.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},BOM은 {1} 행의 외주 품목 {0}에 대해 지정되지 않았습니다.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},BOM은 {1} 행의 외주 품목 {0}에 대해 지정되지 않았습니다.
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js +149,{0} Result submittted,{0} 결과 제출 됨
DocType: Item Attribute,Increment,증가
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,시간 범위
@ -150,7 +150,7 @@ DocType: Patient,Married,결혼 한
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},허용되지 {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,에서 항목을 가져 오기
DocType: Price List,Price Not UOM Dependant,UOM에 의존하지 않는 가격
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},스톡 배달 주에 업데이트 할 수 없습니다 {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},스톡 배달 주에 업데이트 할 수 없습니다 {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},제품 {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,나열된 항목이 없습니다.
DocType: Asset Repair,Error Description,오류 설명
@ -158,7 +158,7 @@ DocType: Payment Reconciliation,Reconcile,조정
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,식료품 점
DocType: Quality Inspection Reading,Reading 1,읽기 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,연금 펀드
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,다음 감가 상각 날짜는 구매 날짜 이전 될 수 없습니다
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,다음 감가 상각 날짜는 구매 날짜 이전 될 수 없습니다
DocType: Crop,Perennial,다년생의
DocType: Consultation,Consultation Date,상담 일
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,ERPNext 사용자를위한 제품 목록 및 검색
@ -173,7 +173,7 @@ DocType: POS Profile,Write Off Cost Center,비용 센터를 오프 쓰기
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""","예를 들어, &quot;초등 학교&quot;또는 &quot;대학&quot;"
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,재고 보고서
DocType: Warehouse,Warehouse Detail,창고 세부 정보
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},신용 한도는 고객에 대한 교차 된 {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},신용 한도는 고객에 대한 교차 된 {0} {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,계약 기간 종료 날짜 나중에 용어가 연결되는 학술 올해의 연말 날짜 초과 할 수 없습니다 (학년 {}). 날짜를 수정하고 다시 시도하십시오.
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","자산 레코드 항목에 대해 존재하는, 선택 해제 할 수 없습니다 &quot;고정 자산&quot;"
DocType: Delivery Trip,Departure Time,출발 시각
@ -193,7 +193,7 @@ DocType: Student Log,Student Log,학생 로그인
DocType: Quality Inspection,Get Specification Details,사양 세부 사항을 얻을
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,공급 업체 순위의 템플릿.
DocType: Lead,Interested,관심
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,열기
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,열기
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},에서 {0}에 {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,세금을 설정하지 못했습니다.
DocType: Item,Copy From Item Group,상품 그룹에서 복사
@ -365,7 +365,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,날짜를 완화하는 것은 가입 날짜보다 커야합니다
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,연간 잎
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,행 {0} : 확인하시기 바랍니다이 계정에 대한 '사전인가'{1}이 사전 항목 인 경우.
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},웨어 하우스는 {0}에 속하지 않는 회사 {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},웨어 하우스는 {0}에 속하지 않는 회사 {1}
DocType: Email Digest,Profit & Loss,이익 및 손실
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,리터
DocType: Task,Total Costing Amount (via Time Sheet),(시간 시트를 통해) 총 원가 계산 금액
@ -457,6 +457,7 @@ DocType: BOM Item,Rate & Amount,요금 및 금액
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,이것은이 회사와의 거래를 기반으로합니다. 자세한 내용은 아래 일정을 참조하십시오.
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,자동 자료 요청의 생성에 이메일로 통보
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,저항하는
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,상담
DocType: Journal Entry,Multi Currency,멀티 통화
DocType: Opening Invoice Creation Tool,Invoice Type,송장 유형
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,상품 수령증
@ -532,7 +533,6 @@ DocType: Email Digest,Credit Balance,신용 잔액
DocType: Employee,Widowed,과부
DocType: Request for Quotation,Request for Quotation,견적 요청
DocType: Healthcare Settings,Require Lab Test Approval,실험실 테스트 승인 필요
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,상품 코드&gt; 상품 그룹&gt; 브랜드
DocType: Salary Slip Timesheet,Working Hours,근무 시간
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,총 우수
DocType: Naming Series,Change the starting / current sequence number of an existing series.,기존 시리즈의 시작 / 현재의 순서 번호를 변경합니다.
@ -561,7 +561,7 @@ DocType: Subscription,Yearly,매년
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,비용 센터를 입력 해주십시오
DocType: Drug Prescription,Dosage,복용량
DocType: Journal Entry Account,Sales Order,판매 주문
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,평균. 판매 비율
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,평균. 판매 비율
DocType: Assessment Plan,Examiner Name,심사관 이름
DocType: Lab Test Template,No Result,어떤 결과가 없습니다
DocType: Purchase Invoice Item,Quantity and Rate,수량 및 평가
@ -611,6 +611,7 @@ DocType: Employee,Health Concerns,건강 문제
DocType: Payroll Entry,Select Payroll Period,급여 기간을 선택
DocType: Purchase Invoice,Unpaid,지불하지 않은
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,판매 예약
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,인력&gt; 인사말 설정에서 Employee Naming System을 설정하십시오.
DocType: Packing Slip,From Package No.,패키지 번호에서
DocType: Item Attribute,To Range,범위
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,증권 및 예치금
@ -635,11 +636,11 @@ DocType: Pricing Rule,Valid Upto,유효한 개까지
DocType: Training Event,Workshop,작업장
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,구매 주문 경고
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,고객의 몇 가지를 나열합니다.그들은 조직 또는 개인이 될 수 있습니다.
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,충분한 부품 작성하기
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,충분한 부품 작성하기
DocType: POS Profile User,POS Profile User,POS 프로필 사용자
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,직접 수입
DocType: Patient Appointment,Date TIme,날짜 시간
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","계정별로 분류하면, 계정을 기준으로 필터링 할 수 없습니다"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","계정별로 분류하면, 계정을 기준으로 필터링 할 수 없습니다"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,관리 책임자
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,회사 및 세금 설정
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,코스를 선택하십시오
@ -650,7 +651,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,차이 계정
DocType: Purchase Invoice,Supplier GSTIN,공급 업체 GSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,종속 작업 {0}이 닫혀 있지 가까운 작업을 할 수 없습니다.
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,자료 요청이 발생합니다있는 창고를 입력 해주십시오
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,자료 요청이 발생합니다있는 창고를 입력 해주십시오
DocType: Production Order,Additional Operating Cost,추가 운영 비용
DocType: Lab Test Template,Lab Routine,실험실 루틴
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,화장품
@ -821,7 +822,7 @@ DocType: Employee,Passport Number,여권 번호
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Guardian2와의 관계
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,관리자
DocType: Payment Entry,Payment From / To,/에서로 지불
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},새로운 신용 한도는 고객의 현재 뛰어난 양 미만이다. 신용 한도이어야 수있다 {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},새로운 신용 한도는 고객의 현재 뛰어난 양 미만이다. 신용 한도이어야 수있다 {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},창고 {0}에 계정을 설정하십시오.
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,'Based On'과 'Group By'는 달라야 합니다.
DocType: Sales Person,Sales Person Targets,영업 사원 대상
@ -832,7 +833,7 @@ DocType: Lab Test Template,Compound,화합물
DocType: Student Batch Name,Batch Name,배치 이름
DocType: Fee Validity,Max number of visit,최대 방문 횟수
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,작업 표 작성 :
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},지불 모드로 기본 현금 또는 은행 계정을 설정하십시오 {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},지불 모드로 기본 현금 또는 은행 계정을 설정하십시오 {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,싸다
DocType: GST Settings,GST Settings,GST 설정
DocType: Selling Settings,Customer Naming By,고객 이름 지정으로
@ -958,7 +959,7 @@ DocType: Delivery Note,Customer's Purchase Order No,고객의 구매 주문 번
DocType: Budget,Budget Against,예산에 대하여
DocType: Employee,Cell Number,핸드폰 번호
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,주어진 기준에 맞는 직원이 없습니다. 급여 전표가 아직 작성되지 않았는지 확인하십시오.
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,자동 자료 요청 생성
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,자동 자료 요청 생성
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,상실
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,당신은 열 '저널 항목에 대하여'에서 현재의 바우처를 입력 할 수 없습니다
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,제조에 예약
@ -966,7 +967,7 @@ DocType: Soil Texture,Sand,모래
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,에너지
DocType: Opportunity,Opportunity From,기회에서
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,월급의 문.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,행 {0} : {1} 품목 {2}에 필요한 일련 번호. 귀하는 {3}을 (를) 제공했습니다.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,행 {0} : {1} 품목 {2}에 필요한 일련 번호. 귀하는 {3}을 (를) 제공했습니다.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,표를 선택하십시오.
DocType: BOM,Website Specifications,웹 사이트 사양
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0}은 (는) &#39;수신자&#39;의 이메일 주소가 잘못되었습니다.
@ -1054,7 +1055,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,견적 요청 됨
DocType: Vital Signs,Heart Rate / Pulse,심박수 / 맥박수
DocType: Company,Default Bank Account,기본 은행 계좌
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first",파티를 기반으로 필터링하려면 선택 파티 첫 번째 유형
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first",파티를 기반으로 필터링하려면 선택 파티 첫 번째 유형
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},항목을 통해 전달되지 않기 때문에 &#39;업데이트 재고&#39;확인 할 수없는 {0}
DocType: Vehicle,Acquisition Date,취득일
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,NOS
@ -1079,7 +1080,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),"편지 머리 업로드 (웹 페이지를 900px, 100px로 유지)"
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1} 계정 {2} 그룹이 될 수 없습니다
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,항목 행 {IDX} {문서 타입} {DOCNAME} 위에 존재하지 않는 &#39;{문서 타입}&#39;테이블
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,표 {0} 이미 완료 또는 취소
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,표 {0} 이미 완료 또는 취소
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,어떤 작업을하지
DocType: Item Variant Settings,Copy Fields to Variant,필드를 변형에 복사
DocType: Asset,Opening Accumulated Depreciation,감가 상각 누계액 열기
@ -1191,9 +1192,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,서브 어셈블리 계획 물질
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,판매 파트너 및 지역
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,BOM {0}이 활성화되어 있어야합니다
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),마감 (개업 + 총)
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),마감 (개업 + 총)
DocType: Journal Entry,Depreciation Entry,감가 상각 항목
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,첫 번째 문서 유형을 선택하세요
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,계정 통화로 인쇄
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,"이 유지 보수 방문을 취소하기 전, 재질 방문 {0} 취소"
DocType: Crop Cycle,ISO 8016 standard,ISO 8016 표준
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},일련 번호 {0} 항목에 속하지 않는 {1}
@ -1219,7 +1221,7 @@ DocType: Purchase Receipt,Range,범위
DocType: Supplier,Default Payable Accounts,기본 미지급금
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,직원 {0} 활성화되지 않거나 존재하지 않습니다
DocType: Fee Structure,Components,구성 요소들
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},상품에 자산 카테고리를 입력하세요 {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},상품에 자산 카테고리를 입력하세요 {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,항목 변형 {0} 업데이트
DocType: Quality Inspection Reading,Reading 6,6 읽기
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1271,6 +1273,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,회사 명
DocType: SMS Center,Total Message(s),전체 메시지 (들)
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,전송 항목 선택
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,설정&gt; 설정&gt; 이름 지정 시리즈를 통해 이름 지정 시리즈를 {0}으로 설정하십시오.
DocType: Purchase Invoice,Additional Discount Percentage,추가 할인 비율
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,모든 도움말 동영상 목록보기
DocType: Agriculture Analysis Criteria,Soil Texture,토양 질감
@ -1299,7 +1302,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,BOM 웹 사이트 항목
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,편지의 머리와 로고를 업로드합니다. (나중에 편집 할 수 있습니다).
DocType: Timesheet Detail,Bill,계산서
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,다음 감가 상각 날짜는 과거 날짜로 입력
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,다음 감가 상각 날짜는 과거 날짜로 입력
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,화이트
DocType: SMS Center,All Lead (Open),모든 납 (열기)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),행 {0}에 대한 수량을 사용할 수없는 {4}웨어 하우스의 {1} 항목의 시간을 게시에 ({2} {3})
@ -1316,7 +1319,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,다음 접촉 날짜
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,열기 수량
DocType: Healthcare Settings,Appointment Reminder,약속 알림
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,변경 금액에 대한 계정을 입력하세요
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,변경 금액에 대한 계정을 입력하세요
DocType: Program Enrollment Tool Student,Student Batch Name,학생 배치 이름
DocType: Consultation,Doctor,의사
DocType: Holiday List,Holiday List Name,휴일 목록 이름
@ -1332,6 +1335,7 @@ DocType: Patient,Patient Relation,환자 관계
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,할당 도구를 남겨
DocType: Item,Hub Category to Publish,게시 할 허브 카테고리
DocType: Leave Block List,Leave Block List Dates,차단 목록 날짜를 남겨
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,셋업&gt; 번호 매기기 시리즈를 통해 출석을위한 번호 매기기 시리즈를 설정하십시오.
DocType: Sales Invoice,Billing Address GSTIN,대금 청구 주소 GSTIN
DocType: Assessment Plan,Evaluate,평가하다
DocType: Workstation,Net Hour Rate,인터넷 시간 비율
@ -1366,7 +1370,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,구매 영수증 항목
DocType: Purchase Receipt,PREC-RET-,PREC-RET-
DocType: POS Profile,Sales Invoice Payment,판매 송장 지불
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,판매 주문 / 완제품 창고에서 예약 창고
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,판매 금액
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,판매 금액
DocType: Repayment Schedule,Interest Amount,이자 금액
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,이 기록에 대한 비용 승인자입니다.'상태'를 업데이트하고 저장하십시오
DocType: Serial No,Creation Document No,작성 문서 없음
@ -1459,7 +1463,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,개시 잔고
,GST Sales Register,GST 영업 등록
DocType: Sales Invoice Advance,Sales Invoice Advance,선행 견적서
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,요청하지 마
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,요청하지 마
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,도메인 선택
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},또 다른 예산 기록은 &#39;{0}&#39;이 (가) 이미 존재에 대해 {1} &#39;{2}&#39;회계 연도 {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,필드는 생성시에만 복사됩니다.
@ -1469,11 +1473,11 @@ DocType: Cheque Print Template,Payer Settings,지불 설정
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","이 변형의 상품 코드에 추가됩니다.귀하의 약어는 ""SM""이며, 예를 들어, 아이템 코드는 ""T-SHIRT"", ""T-SHIRT-SM""입니다 변형의 항목 코드"
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,당신이 급여 슬립을 저장하면 (즉) 순 유료가 표시됩니다.
DocType: Purchase Invoice,Is Return,돌아가요
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,주의
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,주의
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,반품 / 직불 참고
DocType: Price List Country,Price List Country,가격 목록 나라
DocType: Item,UOMs,UOMs
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},항목에 대한 {0} 유효한 일련 NOS {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},항목에 대한 {0} 유효한 일련 NOS {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,상품 코드 일련 번호 변경할 수 없습니다
DocType: Purchase Invoice Item,UOM Conversion Factor,UOM 변환 계수
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,배치 번호를 얻기 위해 상품 코드를 입력하세요
@ -1579,7 +1583,7 @@ DocType: Journal Entry,Get Outstanding Invoices,미결제 송장를 얻을
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,판매 주문 {0} 유효하지 않습니다
DocType: Supplier Scorecard,Warn for new Request for Quotations,견적 요청에 대한 새로운 경고
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,구매 주문은 당신이 계획하는 데 도움이 당신의 구입에 후속
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","죄송합니다, 회사는 병합 할 수 없습니다"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","죄송합니다, 회사는 병합 할 수 없습니다"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,실험실 처방전
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}",자료 요청의 총 발행 / 전송 양 {0} {1} \ 항목에 대한 요청한 수량 {2}보다 클 수 없습니다 {3}
@ -1617,7 +1621,6 @@ DocType: Vehicle,Fuel UOM,연료 UOM
DocType: Warehouse,Warehouse Contact Info,창고 연락처 정보
DocType: Payment Entry,Write Off Difference Amount,차이 금액 오프 쓰기
DocType: Volunteer,Volunteer Name,자원 봉사자 이름
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,강사 네이밍 시스템&gt; 교육 환경 설정
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0} : 직원의 이메일을 찾을 수 없습니다, 따라서 보낸 이메일이 아닌"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},국가 {0}에는 배송 규칙이 적용되지 않습니다.
DocType: Item,Foreign Trade Details,대외 무역 세부 사항
@ -1630,7 +1633,7 @@ DocType: Student Group Student,Group Roll Number,그룹 롤 번호
DocType: Student Group Student,Group Roll Number,그룹 롤 번호
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry",{0} 만 신용 계정은 자동 이체 항목에 링크 할 수 있습니다 들어
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,모든 작업 가중치의 합계 1. 따라 모든 프로젝트 작업의 가중치를 조정하여주십시오해야한다
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,배송 참고 {0} 제출되지
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,배송 참고 {0} 제출되지
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,{0} 항목 하위 계약 품목이어야합니다
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,자본 장비
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","가격 규칙은 첫 번째 항목, 항목 그룹 또는 브랜드가 될 수있는 필드 '에 적용'에 따라 선택됩니다."
@ -1655,7 +1658,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,아이웨어 하우스는이웨어 하우스에 대한 필요성이 존재한다. 이웨어 하우스를 삭제할 수 없습니다.
DocType: Item,Website Item Groups,웹 사이트 상품 그룹
DocType: Purchase Invoice,Total (Company Currency),총 (회사 통화)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,일련 번호 {0} 번 이상 입력
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,일련 번호 {0} 번 이상 입력
DocType: Journal Entry,Journal Entry,분개
DocType: Expense Claim Advance,Unclaimed amount,청구되지 않은 금액
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,진행중인 {0} 항목
@ -1752,7 +1755,7 @@ DocType: Email Digest,For Company,회사
apps/erpnext/erpnext/config/support.py +17,Communication log.,통신 로그.
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.","견적 요청은 더 체크 포털 설정을 위해, 포털에서 액세스를 사용할 수 없습니다."
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,공급 업체 스코어 카드 채점 변수
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,금액을 구매
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,금액을 구매
DocType: Sales Invoice,Shipping Address Name,배송 주소 이름
DocType: Material Request,Terms and Conditions Content,약관 내용
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,수업 일정을 만드는 중에 오류가 발생했습니다.
@ -2017,7 +2020,7 @@ DocType: Expense Claim,Total Amount Reimbursed,총 금액 상환
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,이이 차량에 대한 로그를 기반으로합니다. 자세한 내용은 아래 일정을 참조하십시오
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},공급 업체 청구서를 {0} 일자 {1}
DocType: Customer,Default Price List,기본 가격리스트
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,자산 이동 기록 {0} 작성
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,자산 이동 기록 {0} 작성
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,당신은 삭제할 수 없습니다 회계 연도 {0}. 회계 연도 {0} 전역 설정에서 기본값으로 설정
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,같은 이름의 고객이 이미 있습니다.
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,급여 전표를 제출하고 발생 분개를 생성합니다. 진행 하시겠습니까?
@ -2031,6 +2034,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,가격
DocType: Quotation,Term Details,용어의 자세한 사항
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,이 학생 그룹에 대한 {0} 학생 이상 등록 할 수 없습니다.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),합계 (세금 제외)
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,리드 카운트
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,리드 카운트
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} 0보다 커야합니다
@ -2051,7 +2055,6 @@ DocType: Lab Test,Technician Name,기술자 이름
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,송장의 취소에 지불 연결 해제
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},입력 현재 주행 독서는 초기 차량 주행보다 커야합니다 {0}
DocType: Restaurant Reservation,No Show,더 쇼 없다
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,설정&gt; 설정&gt; 이름 지정 시리즈를 통해 이름 지정 시리즈를 {0}으로 설정하십시오.
DocType: Shipping Rule Country,Shipping Rule Country,배송 규칙 나라
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,두고 출석
DocType: Maintenance Visit,Partially Completed,부분적으로 완료
@ -2144,7 +2147,7 @@ DocType: Student Group Instructor,Student Group Instructor,학생 그룹 강사
DocType: Student Group Instructor,Student Group Instructor,학생 그룹 강사
DocType: Grant Application,Assessment Mark (Out of 10),평가 표시 (10 점 만점)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 모바일 없음
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,주요 기능
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,주요 기능
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,변체
DocType: Naming Series,Set prefix for numbering series on your transactions,트랜잭션에 일련 번호에 대한 설정 접두사
DocType: Employee Attendance Tool,Employees HTML,직원 HTML을
@ -2194,7 +2197,7 @@ DocType: Crop,Crop Spacing,자르기 간격
DocType: Course,Course Abbreviation,코스 약어
DocType: Student Leave Application,Student Leave Application,학생 휴가 신청
DocType: Item,Will also apply for variants,또한 변형 적용됩니다
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}",이미 같이 자산은 취소 할 수 없습니다 {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}",이미 같이 자산은 취소 할 수 없습니다 {0}
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},에 반나절에 직원 {0} {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},총 근무 시간은 최대 근무 시간보다 더 안 {0}
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,켜기
@ -2382,9 +2385,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),실제 종료 날짜 (시간 시트를 통해)
DocType: Soil Texture,Soil Type,토양 유형
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},양 {0} {1}에 대한 {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,새로운 메시지
,Quotation Trends,견적 동향
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},항목에 대한 항목을 마스터에 언급되지 않은 항목 그룹 {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,차변계정은 채권 계정이어야합니다
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,차변계정은 채권 계정이어야합니다
DocType: Shipping Rule,Shipping Amount,배송 금액
DocType: Supplier Scorecard Period,Period Score,기간 점수
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,고객 추가
@ -2395,7 +2399,7 @@ DocType: Purchase Order,Delivered,배달
,Vehicle Expenses,차량 비용
DocType: Serial No,Invoice Details,인보이스 세부 정보
DocType: Grant Application,Show on Website,웹 사이트에 표시
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},연수 후 예상 값보다 크거나 같아야합니다 {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},연수 후 예상 값보다 크거나 같아야합니다 {0}
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,시작하다
DocType: Hub Category,Hub Category,허브 카테고리
DocType: Purchase Invoice,SEZ,경제 특구
@ -2427,7 +2431,7 @@ DocType: Patient,Patient Details,환자 세부 정보
DocType: Patient,B Positive,B 양성
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.",행 번호 {0} 항목이 고정 자산이기 때문에 수량은 1이어야합니다. 여러 수량에 대해 별도의 행을 사용하십시오.
DocType: Leave Block List Allow,Leave Block List Allow,차단 목록은 허용 남겨
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,약어는 비워둘수 없습니다
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,약어는 비워둘수 없습니다
DocType: Patient Medical Record,Patient Medical Record,환자의 의료 기록
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,비 그룹에 그룹
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,스포츠
@ -2478,6 +2482,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,수신 RFQ를 견적으로 설정할 수 없습니다.
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,총 공제
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,계좌 통화로 인쇄 할 계좌를 선택하십시오
,Production Analytics,생산 분석
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,이것은이 환자와의 거래를 기반으로합니다. 자세한 내용은 아래 타임 라인을 참조하십시오.
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,비용 업데이트
@ -2533,7 +2538,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,품
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,회사를 선택 ...
DocType: Leave Control Panel,Leave blank if considered for all departments,모든 부서가 있다고 간주 될 경우 비워 둡니다
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","고용 (영구, 계약, 인턴 등)의 종류."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} 항목에 대한 필수입니다 {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} 항목에 대한 필수입니다 {1}
DocType: Payroll Entry,Fortnightly,이주일에 한번의
DocType: Currency Exchange,From Currency,통화와
DocType: Vital Signs,Weight (In Kilogram),무게 (킬로그램 단위)
@ -2611,7 +2616,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),기본 금액 (회사
DocType: Student,Guardians,보호자
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,가격리스트가 설정되지 않은 경우 가격이 표시되지
DocType: Stock Entry,Total Incoming Value,총 수신 값
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,직불 카드에 대한이 필요합니다
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,직불 카드에 대한이 필요합니다
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","작업 표는 팀에 의해 수행하는 행동이 시간, 비용 및 결제 추적 할 수 있도록"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,구매 가격 목록
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,공급자 스코어 카드 변수의 템플릿.
@ -2712,7 +2717,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,참조 용으로 만 사용됩니다.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},의사 {0}은 (는) {1}에서 사용할 수 없습니다.
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,배치 번호 선택
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},잘못된 {0} : {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},잘못된 {0} : {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-RET-
DocType: Fee Validity,Reference Inv,참조 인보이스
@ -2749,8 +2754,8 @@ DocType: Fees,Send Payment Request,지불 요청 보내기
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","운영, 운영 비용을 지정하고 작업에 고유 한 작업에게 더를 제공합니다."
DocType: Water Analysis,Origin,유래
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,이 문서에 의해 제한을 초과 {0} {1} 항목 {4}. 당신은하고 있습니다 동일에 대한 또 다른 {3} {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,저장 한 후 반복 설정하십시오
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,선택 변화량 계정
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,저장 한 후 반복 설정하십시오
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,선택 변화량 계정
DocType: Purchase Invoice,Price List Currency,가격리스트 통화
DocType: Naming Series,User must always select,사용자는 항상 선택해야합니다
DocType: Stock Settings,Allow Negative Stock,음의 재고 허용
@ -2806,7 +2811,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,유지 보수
DocType: Supplier Scorecard,Warn for new Purchase Orders,새 구매 주문 경고
DocType: Quality Inspection Reading,Reading 9,9 읽기
DocType: Supplier,Is Frozen,동결
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,그룹 노드웨어 하우스는 트랜잭션을 선택 할 수 없습니다
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,그룹 노드웨어 하우스는 트랜잭션을 선택 할 수 없습니다
DocType: Buying Settings,Buying Settings,구매 설정
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,완제품 항목에 대한 BOM 번호
DocType: Upload Attendance,Attendance To Date,날짜 출석
@ -2821,6 +2826,7 @@ DocType: Grant Application,Organization,조직
DocType: Grant Application,Organization,조직
DocType: BOM Update Tool,BOM Update Tool,BOM 업데이트 도구
DocType: SG Creation Tool Course,Student Group Name,학생 그룹 이름
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,분해보기 표시
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,수수료 만들기
apps/erpnext/erpnext/setup/doctype/company/company.js +91,Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone.,당신이 정말로이 회사에 대한 모든 트랜잭션을 삭제 하시겠습니까 확인하시기 바랍니다. 그대로 마스터 데이터는 유지됩니다. 이 작업은 취소 할 수 없습니다.
DocType: Room,Room Number,방 번호
@ -2831,7 +2837,7 @@ DocType: Journal Entry Account,Payroll Entry,급여 항목
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,세금 템플릿 만들기
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,사용자 포럼
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,원료는 비워 둘 수 없습니다.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","주식을 업데이트 할 수 없습니다, 송장은 하락 선박 항목이 포함되어 있습니다."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","주식을 업데이트 할 수 없습니다, 송장은 하락 선박 항목이 포함되어 있습니다."
DocType: Lab Test Sample,Lab Test Sample,실험실 테스트 샘플
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,빠른 분개
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,BOM 어떤 항목 agianst 언급 한 경우는 속도를 변경할 수 없습니다
@ -2902,7 +2908,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,미화
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,송장 생성
DocType: Selling Settings,Auto close Opportunity after 15 days,15 일이 경과되면 자동 가까운 기회
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,스코어 카드가 {1} (으)로 인해 구매 주문이 {0}에 허용되지 않습니다.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,스코어 카드가 {1} (으)로 인해 구매 주문이 {0}에 허용되지 않습니다.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,최종 년도
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,따옴표 / 리드 %
apps/erpnext/erpnext/hr/doctype/employee/employee.py +124,Contract End Date must be greater than Date of Joining,계약 종료 날짜는 가입 날짜보다 커야합니다
@ -3014,7 +3020,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90 위
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,행 번호 {0} 저널 항목 {1} 계정이없는이 {2} 또는 이미 다른 쿠폰에 대해 일치
DocType: Supplier Scorecard Criteria,Criteria Weight,기준 무게
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,공급 업체&gt; 공급 업체 유형
DocType: Buying Settings,Default Buying Price List,기본 구매 가격 목록
DocType: Payroll Entry,Salary Slip Based on Timesheet,표를 바탕으로 급여 슬립
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,구매율
@ -3104,7 +3109,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,트랙은 산업 유형에 의해 리드.
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,편지지로 이동
DocType: Item Supplier,Item Supplier,부품 공급 업체
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,더 배치를 얻을 수 상품 코드를 입력하시기 바랍니다
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,더 배치를 얻을 수 상품 코드를 입력하시기 바랍니다
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},값을 선택하세요 {0} quotation_to {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,모든 주소.
DocType: Company,Stock Settings,재고 설정
@ -3294,6 +3299,7 @@ DocType: Employee Loan,Loan Details,대출 세부 사항
DocType: Company,Default Inventory Account,기본 재고 계정
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,행 {0} : 완성 된 수량은 0보다 커야합니다.
DocType: Antibiotic,Antibiotic Name,항생제 이름
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,상품 코드&gt; 상품 그룹&gt; 브랜드
DocType: Purchase Invoice,Apply Additional Discount On,추가 할인에 적용
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,유형 선택 ...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,농작물이 성장하고있는 모든 육상 유닛에 대한 링크
@ -3489,6 +3495,7 @@ DocType: Guardian Student,Guardian Student,가디언 학생
DocType: Supplier,Credit Limit,신용 한도
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,평균 판매 가격 목록 비율
DocType: Production Plan Sales Order,Salse Order Date,Salse 주문 날짜
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,공급 업체&gt; 공급 업체 유형
DocType: Salary Component,Salary Component,급여 구성 요소
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,결제 항목은 {0}-않은 링크입니다
DocType: GL Entry,Voucher No,바우처 없음
@ -3498,7 +3505,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,가장 인기
DocType: Leave Allocation,Leave Allocation,휴가 배정
DocType: Payment Request,Recipient Message And Payment Details,받는 사람의 메시지와 지불 세부 사항
DocType: Training Event,Trainer Email,트레이너 이메일
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,자료 요청 {0} 생성
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,자료 요청 {0} 생성
DocType: Restaurant Reservation,No of People,사람들의 수
DocType: Production Planning Tool,Include sub-contracted raw materials,하청 원료를 포함
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,조건 또는 계약의 템플릿.
@ -3564,7 +3571,7 @@ DocType: Landed Cost Item,Receipt Document,영수증 문서
DocType: Production Planning Tool,Create Material Requests,자료 요청을 만듭니다
DocType: Employee Education,School/University,학교 / 대학
DocType: Payment Request,Reference Details,참조 세부 사항
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,내용 연수 후 예상 값은 총 구매 금액보다 작아야합니다
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,내용 연수 후 예상 값은 총 구매 금액보다 작아야합니다
DocType: Sales Invoice Item,Available Qty at Warehouse,창고에서 사용 가능한 수량
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,청구 금액
DocType: Asset,Double Declining Balance,이중 체감
@ -3576,7 +3583,7 @@ DocType: Attendance,On Leave,휴가로
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,업데이트 받기
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1} 계정 {2} 회사에 속하지 않는 {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,각 속성에서 하나 이상의 값을 선택하십시오.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,자료 요청 {0} 취소 또는 정지
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,자료 요청 {0} 취소 또는 정지
apps/erpnext/erpnext/config/hr.py +310,Leave Management,관리를 남겨주세요
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,계정별 그룹
DocType: Sales Order,Fully Delivered,완전 배달
@ -3587,14 +3594,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},지급 금액은 대출 금액보다 클 수 없습니다 {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,프로그램으로 이동
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},행 {0} # 할당 된 금액 {1}은 청구되지 않은 금액 {2}보다 클 수 없습니다.
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,셋업&gt; 번호 매기기 시리즈를 통해 출석을위한 번호 매기기 시리즈를 설정하십시오.
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},구매 주문 번호 항목에 필요한 {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,생산 주문이 작성되지
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','시작일자'는 '마감일자' 이전이어야 합니다
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},학생으로 상태를 변경할 수 없습니다 {0} 학생 응용 프로그램과 연결되어 {1}
DocType: Asset,Fully Depreciated,완전 상각
,Stock Projected Qty,재고 수량을 예상
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},고객 {0} 프로젝트에 속하지 않는 {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},고객 {0} 프로젝트에 속하지 않는 {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,표시된 출석 HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers","견적, 당신은 당신의 고객에게 보낸 입찰 제안서 있습니다"
DocType: Sales Order,Customer's Purchase Order,고객의 구매 주문
@ -3679,7 +3685,7 @@ DocType: Salary Slip,Hour Rate,시간 비율
DocType: Stock Settings,Item Naming By,상품 이름 지정으로
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},또 다른 기간 결산 항목은 {0} 이후 한 {1}
DocType: Production Order,Material Transferred for Manufacturing,재료 제조에 대한 양도
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,계정 {0}이 존재하지 않습니다
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,계정 {0}이 존재하지 않습니다
DocType: Project,Project Type,프로젝트 형식
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,이 작업에 대한 하위 작업이 있습니다. 이 작업은 삭제할 수 없습니다.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,목표 수량 또는 목표량 하나는 필수입니다.
@ -3783,11 +3789,11 @@ DocType: C-Form,I,나는
DocType: Company,Asset Depreciation Cost Center,자산 감가 상각 비용 센터
DocType: Sales Order Item,Sales Order Date,판매 주문 날짜
DocType: Sales Invoice Item,Delivered Qty,납품 수량
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,총 Excl. 세
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","이 옵션이 선택되면, 각 생산 항목의 모든 아이들은 자료 요청에 포함됩니다."
DocType: Assessment Plan,Assessment Plan,평가 계획
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,고객 {0}이 (가) 생성되었습니다.
DocType: Stock Settings,Limit Percent,제한 비율
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,강사 네이밍 시스템&gt; 교육 환경 설정
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,현재 어떤 창고에서도 재고가 없습니다.
,Payment Period Based On Invoice Date,송장의 날짜를 기준으로 납부 기간
DocType: Sample Collection,No. of print,인쇄 매수
@ -3803,12 +3809,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),채무자 ({0})
DocType: Pricing Rule,Margin,마진
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,신규 고객
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,매출 총 이익 %
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,매출 총 이익 %
DocType: Appraisal Goal,Weightage (%),Weightage (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,POS 프로파일 변경
DocType: Bank Reconciliation Detail,Clearance Date,통관 날짜
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,평가 보고서
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,총 구매 금액이 필수입니다
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,총 구매 금액이 필수입니다
DocType: Lead,Address Desc,제품 설명에게 주소
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,파티는 필수입니다
DocType: Journal Entry,JV-,JV-
@ -3840,7 +3846,6 @@ DocType: Account,Accumulated Depreciation,감가 상각 누계액
DocType: Supplier Scorecard Scoring Standing,Standing Name,서있는 이름
DocType: Stock Entry,Customer or Supplier Details,"고객, 공급 업체의 자세한 사항"
DocType: Employee Loan Application,Required by Date,날짜에 필요한
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),결산 잔액 (Dr-Cr)
DocType: Lead,Lead Owner,리드 소유자
DocType: Bin,Requested Quantity,요청한 수량
DocType: Patient,Marital Status,결혼 여부
@ -3854,7 +3859,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,여러 변형
DocType: Sales Invoice,Against Income Account,손익 계정에 대한
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0} % 배달
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,항목 {0} : 정렬 된 수량은 {1} 최소 주문 수량 {2} (항목에 정의)보다 작을 수 없습니다.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,항목 {0} : 정렬 된 수량은 {1} 최소 주문 수량 {2} (항목에 정의)보다 작을 수 없습니다.
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,월별 분포 비율
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,다른 사용자로 로그인하십시오.
DocType: Territory,Territory Targets,지역 대상
@ -3955,7 +3960,7 @@ DocType: Program Enrollment,School House,학교 하우스
DocType: Serial No,Out of AMC,AMC의 아웃
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,예약 감가 상각의 수는 감가 상각의 총 수보다 클 수 없습니다
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,유지 보수 방문을합니다
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,판매 마스터 관리자 {0} 역할이 사용자에게 문의하시기 바랍니다
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,판매 마스터 관리자 {0} 역할이 사용자에게 문의하시기 바랍니다
DocType: Company,Default Cash Account,기본 현금 계정
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,회사 (안 고객 또는 공급 업체) 마스터.
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,이이 학생의 출석을 기반으로
@ -4107,7 +4112,6 @@ DocType: Delivery Note Item,From Warehouse,창고에서
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,언급 된 기준에 해당하는 직원 없음
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,재료 명세서 (BOM)와 어떤 항목은 제조 없습니다
DocType: Restaurant,Default Customer,기본 고객
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,인력&gt; 인사말 설정에서 Employee Naming System을 설정하십시오.
DocType: Assessment Plan,Supervisor Name,관리자 이름
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,같은 날 약속이 만들어 졌는지 확인하지 마십시오.
DocType: Program Enrollment Course,Program Enrollment Course,프로그램 등록 과정
@ -4230,7 +4234,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,웹 사이트 설명
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,자본에 순 변경
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,최신
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,첫 번째 구매 송장 {0}을 취소하십시오
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,첫 번째 구매 송장 {0}을 취소하십시오
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","이메일 주소는 이미 존재, 고유해야합니다 {0}"
DocType: Serial No,AMC Expiry Date,AMC 유효 날짜
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,영수증
@ -4247,7 +4251,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,아직 고객
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,현금 흐름표
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},대출 금액은 최대 대출 금액을 초과 할 수 없습니다 {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,특허
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},C-양식에서이 송장 {0}을 제거하십시오 {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},C-양식에서이 송장 {0}을 제거하십시오 {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,당신은 또한 이전 회계 연도의 균형이 회계 연도에 나뭇잎 포함 할 경우 이월를 선택하세요
DocType: GL Entry,Against Voucher Type,바우처 형식에 대한
DocType: Physician,Phone (R),전화 (R)
@ -4259,7 +4263,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,B 네거티브
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,제출하려면 유지 보수 상태를 취소하거나 완료해야합니다.
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},계정 {0} 수행은 회사 소유하지 {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,행 {0}의 일련 번호가 배달 참고와 일치하지 않습니다.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,행 {0}의 일련 번호가 배달 참고와 일치하지 않습니다.
DocType: Student,Guardian Details,가디언의 자세한 사항
DocType: C-Form,C-Form,C-양식
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,여러 직원 마크 출석
@ -4301,7 +4305,7 @@ DocType: Opening Invoice Creation Tool,Sales,판매
DocType: Stock Entry Detail,Basic Amount,기본 금액
DocType: Training Event,Exam,시험
DocType: Complaint,Complaint,불평
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},재고 품목에 필요한 창고 {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},재고 품목에 필요한 창고 {0}
DocType: Leave Allocation,Unused leaves,사용하지 않는 잎
DocType: Patient,Alcohol Past Use,알콜 과거 사용
DocType: Fertilizer Content,Fertilizer Content,비료 내용
@ -4430,6 +4434,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,공식
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,직렬 #
DocType: Lab Test Template,Lab Test Template,실험실 테스트 템플릿
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,판매 계정
DocType: Purchase Invoice Item,Total Weight,총 무게
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,판매에 대한 수수료
DocType: Offer Letter Term,Value / Description,값 / 설명
@ -4587,7 +4592,7 @@ Updated via 'Time Log'",'소요시간 로그' 분단위 업데이트
DocType: Customer,From Lead,리드에서
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,생산 발표 순서.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,회계 연도 선택 ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,POS 프로필 POS 항목을 만드는 데 필요한
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,POS 프로필 POS 항목을 만드는 데 필요한
DocType: Program Enrollment Tool,Enroll Students,학생 등록
DocType: Lab Test,Approved Date,승인 날짜
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,표준 판매
@ -4664,7 +4669,7 @@ DocType: Employee,Held On,개최
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,생산 품목
,Employee Information,직원 정보
DocType: Stock Entry Detail,Additional Cost,추가 비용
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","바우처를 기반으로 필터링 할 수 없음, 바우처로 그룹화하는 경우"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","바우처를 기반으로 필터링 할 수 없음, 바우처로 그룹화하는 경우"
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,공급 업체의 견적을
DocType: Quality Inspection,Incoming,수신
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,판매 및 구매에 대한 기본 세금 템플릿이 생성됩니다.
@ -4681,7 +4686,7 @@ DocType: Batch,Batch ID,일괄 처리 ID
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},참고 : {0}
,Delivery Note Trends,배송 참고 동향
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,이번 주 요약
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,재고 수량에서
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,재고 수량에서
DocType: Delivery Trip,Calculate Estimated Arrival Times,예상 도착 시간 계산
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,계정 : {0} 만 재고 거래를 통해 업데이트 할 수 있습니다
DocType: Student Group Creation Tool,Get Courses,과정을 받으세요
@ -4697,7 +4702,7 @@ DocType: Purchase Order,To Bill,빌
DocType: Material Request,% Ordered,% 발주
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.","과정 기반 학생 그룹의 경우, 과정은 등록 된 과정의 등록 된 과정에서 모든 학생에 대해 유효성이 검사됩니다."
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,일한 분량에 따라 공임을 지급받는 일
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,평균. 구매 비율
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,평균. 구매 비율
DocType: Task,Actual Time (in Hours),(시간) 실제 시간
DocType: Employee,History In Company,회사의 역사
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},{보낸 사람}의 새 메시지
@ -4745,7 +4750,7 @@ DocType: Asset Repair,Asset Repair,자산 복구
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},행 {0} 다음 BOM 번호의 통화 {1} 선택한 통화 같아야한다 {2}
DocType: Journal Entry Account,Exchange Rate,환율
DocType: Patient,Additional information regarding the patient,환자에 관한 추가 정보
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,판매 주문 {0} 제출되지 않았습니다.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,판매 주문 {0} 제출되지 않았습니다.
DocType: Homepage,Tag Line,태그 라인
DocType: Fee Component,Fee Component,요금 구성 요소
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,함대 관리
@ -4960,7 +4965,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,평가 결과의 세
DocType: Employee Education,Employee Education,직원 교육
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,항목 그룹 테이블에서 발견 중복 항목 그룹
DocType: Land Unit,Parent Land Unit,부모 지상 유닛
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,그것은 상품 상세을 가져 오기 위해 필요하다.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,그것은 상품 상세을 가져 오기 위해 필요하다.
DocType: Fertilizer,Fertilizer Name,비료 이름
DocType: Salary Slip,Net Pay,실질 임금
DocType: Account,Account,계정
@ -5039,7 +5044,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),실제 수량 (소스
DocType: Item Customer Detail,Ref Code,참조 코드
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,POS 프로파일에 고객 그룹이 필요합니다.
apps/erpnext/erpnext/config/hr.py +12,Employee records.,직원 기록.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,다음 감가 상각 날짜를 설정하십시오
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,다음 감가 상각 날짜를 설정하십시오
DocType: HR Settings,Payroll Settings,급여 설정
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,연결되지 않은 청구서 지불을 일치시킵니다.
DocType: POS Settings,POS Settings,POS 설정
@ -5207,7 +5212,7 @@ DocType: Item,Customer Code,고객 코드
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},생일 알림 {0}
DocType: Asset Maintenance Task,Last Completion Date,마지막 완료일
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,일 이후 마지막 주문
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,계정에 직불는 대차 대조표 계정이어야합니다
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,계정에 직불는 대차 대조표 계정이어야합니다
DocType: Buying Settings,Naming Series,시리즈 이름 지정
DocType: Leave Block List,Leave Block List Name,차단 목록의 이름을 남겨주세요
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,보험 시작일은 보험 종료일보다 작아야합니다
@ -5338,6 +5343,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,지불 항목 가져 오기
DocType: Quotation Item,Against Docname,docName 같은 반대
DocType: SMS Center,All Employee (Active),모든 직원 (활성)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,고객&gt; 고객 그룹&gt; 지역
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,지금보기
DocType: BOM,Raw Material Cost,원료 비용
DocType: Item Reorder,Re-Order Level,다시 주문 수준
@ -5438,7 +5444,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,좌석
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,실험실 테스트 그룹
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,고객&gt; 고객 그룹&gt; 지역
DocType: Project,Total Expense Claim (via Expense Claims),총 경비 요청 (비용 청구를 통해)
DocType: GST Settings,GST Summary,GST 요약
DocType: Assessment Result,Total Score,총 점수
@ -5452,7 +5457,7 @@ DocType: Batch,Source Document Type,원본 문서 유형
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,다음 코스 일정이 작성되었습니다.
DocType: Journal Entry,Total Debit,총 직불
DocType: Manufacturing Settings,Default Finished Goods Warehouse,기본 완제품 창고
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,영업 사원
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,영업 사원
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,예산 및 비용 센터
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,여러 기본 결제 방법이 허용되지 않습니다.
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,
@ -5628,7 +5633,7 @@ DocType: Program,Program Name,프로그램 이름
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,세금이나 요금에 대한 고려
DocType: Driver,Driving License Category,운전 면허증 카테고리
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,실제 수량은 필수입니다
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0}에는 현재 {1} 공급 업체 성과표가 있으며이 공급 업체에 대한 구매 주문은 신중하게 발행해야합니다.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.",{0}에는 현재 {1} 공급 업체 성과표가 있으며이 공급 업체에 대한 구매 주문은 신중하게 발행해야합니다.
DocType: Asset Maintenance Team,Asset Maintenance Team,자산 관리팀
DocType: Employee Loan,Loan Type,대출 유형
DocType: Scheduling Tool,Scheduling Tool,예약 도구

Can't render this file because it is too large.

View File

@ -88,7 +88,7 @@ DocType: Lab Prescription,Lab Prescription,Lab prescription
apps/erpnext/erpnext/hub_node/page/hub/hub.js +185,Sort by Price,Bi bihayê bihayê
,Delay Days,Dereng Rojan
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +26,Service Expense,Expense Service
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +893,Serial Number: {0} is already referenced in Sales Invoice: {1},Hejmara Serial: {0} jixwe li Sales bi fatûreyên referans: {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +886,Serial Number: {0} is already referenced in Sales Invoice: {1},Hejmara Serial: {0} jixwe li Sales bi fatûreyên referans: {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +878,Invoice,Biha
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +109,Make Retention Stock Entry,Entry Stock Hire
DocType: Purchase Invoice Item,Item Weight Details,Pirtûka giran
@ -139,7 +139,7 @@ DocType: Packed Item,Parent Detail docname,docname Detail dê û bav
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py +69,"Reference: {0}, Item Code: {1} and Customer: {2}","World: Kurdî: {0}, Code babet: {1} û Mişterî: {2}"
apps/erpnext/erpnext/utilities/user_progress.py +143,Kg,kg
apps/erpnext/erpnext/config/hr.py +45,Opening for a Job.,Vekirina ji bo Job.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +104,BOM is not specified for subcontracting item {0} at row {1},BOM ne ji bo veguhestina pelê {0} li ser row {1}
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +110,BOM is not specified for subcontracting item {0} at row {1},BOM ne ji bo veguhestina pelê {0} li ser row {1}
DocType: Item Attribute,Increment,Increment
apps/erpnext/erpnext/utilities/page/leaderboard/leaderboard.js +61,Timespan,Timespan
apps/erpnext/erpnext/public/js/stock_analytics.js +61,Select Warehouse...,Select Warehouse ...
@ -149,7 +149,7 @@ DocType: Patient,Married,Zewicî
apps/erpnext/erpnext/accounts/party.py +44,Not permitted for {0},ji bo destûr ne {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +593,Get items from,Get tomar ji
DocType: Price List,Price Not UOM Dependant,Bersaziya UOM Dependent
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +461,Stock cannot be updated against Delivery Note {0},Stock dikare li hember Delivery Têbînî ne bê ewe {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +454,Stock cannot be updated against Delivery Note {0},Stock dikare li hember Delivery Têbînî ne bê ewe {0}
apps/erpnext/erpnext/templates/pages/home.py +25,Product {0},Product {0}
apps/erpnext/erpnext/templates/generators/item_group.html +43,No items listed,No tomar di lîsteyê de
DocType: Asset Repair,Error Description,Çewtiya çewtiyê
@ -157,7 +157,7 @@ DocType: Payment Reconciliation,Reconcile,li hev
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +30,Grocery,torpîl
DocType: Quality Inspection Reading,Reading 1,Reading 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +40,Pension Funds,kalîyê
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date cannot be before Purchase Date,Next Date Farhad. Nikarim li ber Date Purchase be
apps/erpnext/erpnext/assets/doctype/asset/asset.py +91,Next Depreciation Date cannot be before Purchase Date,Next Date Farhad. Nikarim li ber Date Purchase be
DocType: Crop,Perennial,Perennial
DocType: Consultation,Consultation Date,Dîroka Şêwirmendiyê
apps/erpnext/erpnext/hub_node/page/hub/hub.js +131,Product listing and discovery for ERPNext users,Pirtûka hilber û lêgerînê ji bo bikarhênerên ERPNext
@ -172,7 +172,7 @@ DocType: POS Profile,Write Off Cost Center,Hewe Off Navenda Cost
apps/erpnext/erpnext/public/js/setup_wizard.js +117,"e.g. ""Primary School"" or ""University""",eg &quot;Dibistana Seretayî&quot; an &quot;University&quot;
apps/erpnext/erpnext/config/stock.py +28,Stock Reports,Reports Stock
DocType: Warehouse,Warehouse Detail,Detail warehouse
apps/erpnext/erpnext/selling/doctype/customer/customer.py +192,Credit limit has been crossed for customer {0} {1}/{2},limit Credit hatiye dîtin ji bo mişterî re derbas {0} {1} / {2}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +193,Credit limit has been crossed for customer {0} {1}/{2},limit Credit hatiye dîtin ji bo mişterî re derbas {0} {1} / {2}
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py +33,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,The Date Term End ne dikarin paşê ji Date Sal End of the Year (Ekadîmî) ji bo ku di dema girêdayî be (Year (Ekadîmî) {}). Ji kerema xwe re li rojên bike û careke din biceribîne.
apps/erpnext/erpnext/stock/doctype/item/item.py +258,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","&quot;Ma Asset Fixed&quot; nikare bibe nedixwest, wek record Asset li dijî babete heye"
DocType: Delivery Trip,Departure Time,Wextê Demjimêr
@ -192,7 +192,7 @@ DocType: Student Log,Student Log,Têkeve Student
DocType: Quality Inspection,Get Specification Details,Get Specification Details
apps/erpnext/erpnext/config/buying.py +165,Templates of supplier standings.,Templates of stander supplier.
DocType: Lead,Interested,bala
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +226,Opening,Dergeh
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +191,Opening,Dergeh
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +30,From {0} to {1},Ji {0} ji bo {1}
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +50,Failed to setup taxes,Ji bo bacê saz kirin
DocType: Item,Copy From Item Group,Copy Ji babetî Pula
@ -364,7 +364,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +224,Only
apps/erpnext/erpnext/hr/doctype/employee/employee.py +121,Relieving Date must be greater than Date of Joining,Destkêşana Date divê mezintir Date of bizaveka be
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +238,Leaves per Year,Dihêle per Sal
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +128,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,Row {0}: Hêvîye &#39;de venêrî Is Advance&#39; li dijî Account {1} eger ev an entry pêşwext e.
apps/erpnext/erpnext/stock/utils.py +217,Warehouse {0} does not belong to company {1},Warehouse {0} nayê ji şîrketa girêdayî ne {1}
apps/erpnext/erpnext/stock/utils.py +216,Warehouse {0} does not belong to company {1},Warehouse {0} nayê ji şîrketa girêdayî ne {1}
DocType: Email Digest,Profit & Loss,Qezencê &amp; Loss
apps/erpnext/erpnext/utilities/user_progress.py +144,Litre,Litre
DocType: Task,Total Costing Amount (via Time Sheet),Bi tevahî bi qurûşekî jî Mîqdar (via Time Sheet)
@ -456,6 +456,7 @@ DocType: BOM Item,Rate & Amount,Nirxandin û Nirxandinê
apps/erpnext/erpnext/setup/doctype/company/company_dashboard.py +6,This is based on transactions against this Company. See timeline below for details,Ev li ser vê kompaniyê veguherîn li ser veguhestinê ye. Ji bo agahdariyên jêrîn binêrin
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Notify by Email li ser çêkirina Daxwaza Material otomatîk
apps/erpnext/erpnext/healthcare/setup.py +259,Resistant,Berxwedana
apps/erpnext/erpnext/config/desktop.py +309,Consultationt,Şêwirmendî
DocType: Journal Entry,Multi Currency,Multi Exchange
DocType: Opening Invoice Creation Tool,Invoice Type,bi fatûreyên Type
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +933,Delivery Note,Delivery Note
@ -531,7 +532,6 @@ DocType: Email Digest,Credit Balance,Balance Credit
DocType: Employee,Widowed,
DocType: Request for Quotation,Request for Quotation,Daxwaza ji bo Quotation
DocType: Healthcare Settings,Require Lab Test Approval,Pêwîstiya Tîma Tîpa Lêdanê ye
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Kodê Asayîş&gt; Tîpa Group&gt; Brand
DocType: Salary Slip Timesheet,Working Hours,dema xebatê
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html +10,Total Outstanding,Tiştek Berbiçav
DocType: Naming Series,Change the starting / current sequence number of an existing series.,Guhertina Guherandinên / hejmara cihekê niha ya series heyî.
@ -560,7 +560,7 @@ DocType: Subscription,Yearly,Hit
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +230,Please enter Cost Center,Ji kerema xwe ve Navenda Cost binivîse
DocType: Drug Prescription,Dosage,Pîvanîk
DocType: Journal Entry Account,Sales Order,Sales Order
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Selling Rate,Avg. Rate firotin
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +69,Avg. Selling Rate,Avg. Rate firotin
DocType: Assessment Plan,Examiner Name,Navê sehkerê
DocType: Lab Test Template,No Result,No Result
DocType: Purchase Invoice Item,Quantity and Rate,Quantity û Rate
@ -610,6 +610,7 @@ DocType: Employee,Health Concerns,Gûman Health
DocType: Payroll Entry,Select Payroll Period,Select payroll Period
DocType: Purchase Invoice,Unpaid,Unpaid
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +49,Reserved for sale,Reserved for sale
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Ji kerema xwe veguhastina Sîstema Sîstema Navnetewî di Çavkaniya Mirovan&gt; HR Set
DocType: Packing Slip,From Package No.,Ji No. Package
DocType: Item Attribute,To Range,to range
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +29,Securities and Deposits,Birûmet û meden
@ -634,11 +635,11 @@ DocType: Pricing Rule,Valid Upto,derbasdar Upto
DocType: Training Event,Workshop,Kargeh
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,Biryarên kirînê bikujin
apps/erpnext/erpnext/utilities/user_progress.py +64,List a few of your customers. They could be organizations or individuals.,"Lîsteya çend ji mişterîyên xwe. Ew dikarin bibin rêxistin, yan jî kesên."
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +21,Enough Parts to Build,Parts bes ji bo Build
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +23,Enough Parts to Build,Parts bes ji bo Build
DocType: POS Profile User,POS Profile User,POS Profîl User
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +128,Direct Income,Dahata rasterast
DocType: Patient Appointment,Date TIme,Dîroka TIme
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Account, if grouped by Account","Dikarin li ser Account ne filter bingeha, eger destê Account komkirin"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +41,"Can not filter based on Account, if grouped by Account","Dikarin li ser Account ne filter bingeha, eger destê Account komkirin"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +130,Administrative Officer,Berpirsê kargêrî
apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +39,Setting up company and taxes,Kompan û bacê saz bikin
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +22,Please select Course,Tikaye Kurs hilbijêre
@ -649,7 +650,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +350,Please
DocType: Stock Entry Detail,Difference Account,Account Cudahiya
DocType: Purchase Invoice,Supplier GSTIN,Supplier GSTIN
apps/erpnext/erpnext/projects/doctype/task/task.py +47,Cannot close task as its dependant task {0} is not closed.,Can karê nêzîkî wek karekî girêdayî wê {0} e girtî ne ne.
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +433,Please enter Warehouse for which Material Request will be raised,Ji kerema xwe ve Warehouse ji bo ku Daxwaza Material wê werin zindî binivîse
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +435,Please enter Warehouse for which Material Request will be raised,Ji kerema xwe ve Warehouse ji bo ku Daxwaza Material wê werin zindî binivîse
DocType: Production Order,Additional Operating Cost,Cost Operating Additional
DocType: Lab Test Template,Lab Routine,Lîwaya Labê
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +20,Cosmetics,Cosmetics
@ -820,7 +821,7 @@ DocType: Employee,Passport Number,Nimareya pasaportê
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +60,Relation with Guardian2,Peywendiya bi Guardian2
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +124,Manager,Rêvebir
DocType: Payment Entry,Payment From / To,Payment From / To
apps/erpnext/erpnext/selling/doctype/customer/customer.py +155,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},limit credit New kêmtir ji yê mayî niha ji bo mişterî e. limit Credit heye Hindîstan be {0}
apps/erpnext/erpnext/selling/doctype/customer/customer.py +156,New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0},limit credit New kêmtir ji yê mayî niha ji bo mişterî e. limit Credit heye Hindîstan be {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +428,Please set account in Warehouse {0},Ji kerema xwe li Warehouse hesab bike. {0}
apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,&#39;Li ser&#39; û &#39;Koma By&#39; nikare bibe heman
DocType: Sales Person,Sales Person Targets,Armanc Person Sales
@ -831,7 +832,7 @@ DocType: Lab Test Template,Compound,Çand
DocType: Student Batch Name,Batch Name,Navê batch
DocType: Fee Validity,Max number of visit,Hejmareke zêde ya serdana
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +339,Timesheet created:,Timesheet tên afirandin:
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +920,Please set default Cash or Bank account in Mode of Payment {0},Ji kerema xwe ve Cash default an account Bank set li Mode of Payment {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +913,Please set default Cash or Bank account in Mode of Payment {0},Ji kerema xwe ve Cash default an account Bank set li Mode of Payment {0}
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.js +24,Enroll,Nivîsîn
DocType: GST Settings,GST Settings,Settings gst
DocType: Selling Settings,Customer Naming By,Qada Mişterî By
@ -958,7 +959,7 @@ DocType: Delivery Note,Customer's Purchase Order No,Buy Mişterî ya Order No
DocType: Budget,Budget Against,budceya dijî
DocType: Employee,Cell Number,Hejmara Cell
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +445,There's no employee for the given criteria. Check that Salary Slips have not already been created.,Ji bo pîvanên nirxdar tune tune. Vê kontrol bikin ku hejmarên meaşan nehatibû afirandin.
apps/erpnext/erpnext/stock/reorder_item.py +190,Auto Material Requests Generated,Daxwazên Auto Material Generated
apps/erpnext/erpnext/stock/reorder_item.py +194,Auto Material Requests Generated,Daxwazên Auto Material Generated
apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,Windabû
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +150,You can not enter current voucher in 'Against Journal Entry' column,Tu dikarî bi fîşeke niha li nakeve &#39;li dijî Peyam Journal&#39; column
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js +50,Reserved for manufacturing,Reserved bo febrîkayan
@ -966,7 +967,7 @@ DocType: Soil Texture,Sand,Qûm
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +25,Energy,Înercî
DocType: Opportunity,Opportunity From,derfet ji
apps/erpnext/erpnext/config/hr.py +98,Monthly salary statement.,daxuyaniyê de meaşê mehane.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +881,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Row {0}: {1} Hejmarên Serial Ji bo {2} Pêdivî ye. Te destnîşan kir {3}.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +874,Row {0}: {1} Serial numbers required for Item {2}. You have provided {3}.,Row {0}: {1} Hejmarên Serial Ji bo {2} Pêdivî ye. Te destnîşan kir {3}.
apps/erpnext/erpnext/restaurant/doctype/restaurant_order_entry/restaurant_order_entry.py +79,Please select a table,Ji kerema xwe sifrê hilbijêrin
DocType: BOM,Website Specifications,Specifications Website
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py +78,{0} is an invalid email address in 'Recipients',{0} Navnîşa e-nameyek e ku li &#39;Recipients&#39;
@ -1034,7 +1035,7 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +764,No Per
apps/erpnext/erpnext/hub_node/page/hub/hub.js +438,Quote Requested,Gotinê
DocType: Vital Signs,Heart Rate / Pulse,Dilê Dil / Pulse
DocType: Company,Default Bank Account,Account Bank Default
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +50,"To filter based on Party, select Party Type first","Fîltre li ser bingeha Partîya, Partîya select yekem Type"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +55,"To filter based on Party, select Party Type first","Fîltre li ser bingeha Partîya, Partîya select yekem Type"
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},"&#39;Update Stock&#39; nikarin werin kontrolkirin, ji ber tumar bi via teslîmî ne {0}"
DocType: Vehicle,Acquisition Date,Derheqê Date
apps/erpnext/erpnext/utilities/user_progress.py +143,Nos,nos
@ -1059,7 +1060,7 @@ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +111,{0} {1}: Cost Ce
apps/erpnext/erpnext/utilities/user_progress.py +89,Upload your letter head (Keep it web friendly as 900px by 100px),Serê nameya xwe barkirin (Ji hêla 900px bi 100px re hevalbikin heval bikin)
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +88,{0} {1}: Account {2} cannot be a Group,{0} {1}: Account {2} dikarin bi a Group
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {idx}: {doctype} {docname} does not exist in above '{doctype}' table,Babetê Row {IDX}: {doctype} {docname} nayê li jor de tune ne &#39;{doctype}&#39; sifrê
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +291,Timesheet {0} is already completed or cancelled,Timesheet {0} ji xwe temam an jî betalkirin
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +284,Timesheet {0} is already completed or cancelled,Timesheet {0} ji xwe temam an jî betalkirin
apps/erpnext/erpnext/templates/pages/projects.html +42,No tasks,No erkên
DocType: Item Variant Settings,Copy Fields to Variant,Keviyên Kopî Variant
DocType: Asset,Opening Accumulated Depreciation,Vekirina Farhad. Accumulated
@ -1171,9 +1172,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py
DocType: Production Order,Plan material for sub-assemblies,maddî Plan ji bo sub-meclîsên
apps/erpnext/erpnext/config/selling.py +97,Sales Partners and Territory,Partners Sales û Herêmê
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +585,BOM {0} must be active,BOM {0} divê çalak be
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +228,Closing (Opening + Total),Pevçûn
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +193,Closing (Opening + Total),Pevçûn
DocType: Journal Entry,Depreciation Entry,Peyam Farhad.
apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Ji kerema xwe re ji cureyê pelgeyê hilbijêre
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +111,Print in Account Currency,Print Currency Account
apps/erpnext/erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Betal Serdan Material {0} berî betalkirinê ev Maintenance Visit
DocType: Crop Cycle,ISO 8016 standard,ISO 8016 standard
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} does not belong to Item {1},Serial No {0} nayê to Babetê girêdayî ne {1}
@ -1199,7 +1201,7 @@ DocType: Purchase Receipt,Range,Dirêjahî
DocType: Supplier,Default Payable Accounts,Default Accounts cîhde
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +49,Employee {0} is not active or does not exist,Xebatkarê {0} e çalak ne an tune ne
DocType: Fee Structure,Components,Components
apps/erpnext/erpnext/assets/doctype/asset/asset.py +272,Please enter Asset Category in Item {0},Ji kerema xwe ve Asset Category li babet binivîse {0}
apps/erpnext/erpnext/assets/doctype/asset/asset.py +276,Please enter Asset Category in Item {0},Ji kerema xwe ve Asset Category li babet binivîse {0}
apps/erpnext/erpnext/stock/doctype/item/item.py +634,Item Variants {0} updated,Babetê Variants {0} ve
DocType: Quality Inspection Reading,Reading 6,Reading 6
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +9,"to be generated. If delayed, you will have to manually change the ""Repeat on Day of Month"" field
@ -1251,6 +1253,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
,Company Name,Navê Company
DocType: SMS Center,Total Message(s),Total Message (s)
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +917,Select Item for Transfer,Hilbijêre babet ji bo transfera
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Ji kerema xwe veşartî ji bo {0} bi Sîstema Setup&gt; Settings&gt; Naming Series
DocType: Purchase Invoice,Additional Discount Percentage,Rêjeya Discount Additional
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,View lîsteya hemû videos alîkarî
DocType: Agriculture Analysis Criteria,Soil Texture,Paqijê maqûl
@ -1279,7 +1282,7 @@ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14
DocType: BOM Website Item,BOM Website Item,BOM babet Website
apps/erpnext/erpnext/public/js/setup_wizard.js +52,Upload your letter head and logo. (you can edit them later).,Upload nameya serokê û logo xwe. (Tu ji wan paşê biguherîne).
DocType: Timesheet Detail,Bill,Hesab
apps/erpnext/erpnext/assets/doctype/asset/asset.py +85,Next Depreciation Date is entered as past date,Next Date Farhad wek date borî ketin
apps/erpnext/erpnext/assets/doctype/asset/asset.py +88,Next Depreciation Date is entered as past date,Next Date Farhad wek date borî ketin
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +208,White,Spî
DocType: SMS Center,All Lead (Open),Hemû Lead (Open)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +253,Row {0}: Qty not available for {4} in warehouse {1} at posting time of the entry ({2} {3}),Row {0}: Qty ji bo amade ne {4} li warehouse {1} hate dem bi mesaj û ji entry ({2} {3})
@ -1296,7 +1299,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +129,Order Type must be o
DocType: Lead,Next Contact Date,Next Contact Date
apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Opening Qty,vekirina Qty
DocType: Healthcare Settings,Appointment Reminder,Reminder Reminder
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +472,Please enter Account for Change Amount,Ji kerema xwe ve Account ji bo Guhertina Mîqdar binivîse
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +465,Please enter Account for Change Amount,Ji kerema xwe ve Account ji bo Guhertina Mîqdar binivîse
DocType: Program Enrollment Tool Student,Student Batch Name,Xwendekarên Name Batch
DocType: Consultation,Doctor,Pizişk
DocType: Holiday List,Holiday List Name,Navê Lîsteya Holiday
@ -1312,6 +1315,7 @@ DocType: Patient,Patient Relation,Têkiliya Nexweş
apps/erpnext/erpnext/config/hr.py +80,Leave Allocation Tool,Dev ji Tool Kodek
DocType: Item,Hub Category to Publish,Kategorî Weşanê
DocType: Leave Block List,Leave Block List Dates,Dev ji Lîsteya Block Kurdî Nexşe
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Ji kerema xwe veşartina nimûne ji bo Tevlêbûnê ya Setup&gt; Pirtûka Nimûne
DocType: Sales Invoice,Billing Address GSTIN,Navnîşana GSTIN
DocType: Assessment Plan,Evaluate,Bihadanîn
DocType: Workstation,Net Hour Rate,Rate Saet Net
@ -1346,7 +1350,7 @@ DocType: Landed Cost Item,Purchase Receipt Item,Buy babet Meqbûz
DocType: Purchase Receipt,PREC-RET-,Prec-direvin
DocType: POS Profile,Sales Invoice Payment,Sales bi fatûreyên Payment
DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,Warehouse Reserved li Sales Order / Qediya Goods Warehouse
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Selling Amount,Şêwaz firotin
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Selling Amount,Şêwaz firotin
DocType: Repayment Schedule,Interest Amount,Şêwaz Interest
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +120,You are the Expense Approver for this record. Please Update the 'Status' and Save,Tu Approver Expense ji bo vê qeyda. Ji kerema xwe ve ya &#39;status&#39; û Save baştir bike
DocType: Serial No,Creation Document No,Creation dokumênt No
@ -1439,7 +1443,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +421,Finished Item
apps/erpnext/erpnext/config/learn.py +87,Opening Accounting Balance,Vekirina Balance Accounting
,GST Sales Register,Gst Sales Register
DocType: Sales Invoice Advance,Sales Invoice Advance,Sales bi fatûreyên Advance
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Nothing to request,Tu tişt ji bo daxwazkirina
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +552,Nothing to request,Tu tişt ji bo daxwazkirina
apps/erpnext/erpnext/public/js/setup_wizard.js +18,Select your Domains,Domainên xwe hilbijêrin
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +34,Another Budget record '{0}' already exists against {1} '{2}' for fiscal year {3},Din record Budget &#39;{0}&#39; jixwe li dijî heye {1} &#39;{2}&#39; ji bo sala diravî ya {3}
DocType: Item Variant Settings,Fields will be copied over only at time of creation.,Heya dê di dema demê de çêbirin dê kopî bibin.
@ -1449,11 +1453,11 @@ DocType: Cheque Print Template,Payer Settings,Settings Jaaniya
DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","Ev dê ji qanûna Babetê ji guhertoya bendên. Ji bo nimûne, eger kurtenivîsên SYR ji we &quot;SM&quot;, e û code babete de ye &quot;T-SHIRT&quot;, code babete ji yên ku guhertoya wê bibe &quot;T-SHIRT-SM&quot;"
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,Pay Net (di peyvên) xuya wê carekê hûn Slip Salary li xilas bike.
DocType: Purchase Invoice,Is Return,e Return
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Caution,Baldaynî
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,Caution,Baldaynî
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +813,Return / Debit Note,Return / Debit Têbînî
DocType: Price List Country,Price List Country,List Price Country
DocType: Item,UOMs,UOMs
apps/erpnext/erpnext/stock/utils.py +210,{0} valid serial nos for Item {1},{0} nos serial derbasdar e ji bo vî babetî {1}
apps/erpnext/erpnext/stock/utils.py +209,{0} valid serial nos for Item {1},{0} nos serial derbasdar e ji bo vî babetî {1}
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Code babete dikarin ji bo No. Serial ne bê guhertin
DocType: Purchase Invoice Item,UOM Conversion Factor,Factor Converter UOM
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +40,Please enter Item Code to get Batch Number,Tikaye kodî babet bikeve to get Hejmara Batch
@ -1559,7 +1563,7 @@ DocType: Journal Entry,Get Outstanding Invoices,Get Outstanding hisab
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +84,Sales Order {0} is not valid,Sales Order {0} ne derbasdar e
DocType: Supplier Scorecard,Warn for new Request for Quotations,Ji bo Quotations ji bo daxwaza nû ya hişyar bikin
apps/erpnext/erpnext/utilities/activation.py +91,Purchase orders help you plan and follow up on your purchases,emir kirînê alîkariya we û plankirina û li pey xwe li ser kirînên te
apps/erpnext/erpnext/setup/doctype/company/company.py +222,"Sorry, companies cannot be merged","Mixabin, şîrketên bi yek bên"
apps/erpnext/erpnext/setup/doctype/company/company.py +228,"Sorry, companies cannot be merged","Mixabin, şîrketên bi yek bên"
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +151,Lab Test Prescriptions,Lab Test Prescriptions
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +162,"The total Issue / Transfer quantity {0} in Material Request {1} \
cannot be greater than requested quantity {2} for Item {3}","Bi giştî dikele, Doza / Transfer {0} li Daxwaza Material {1} \ ne dikarin bibin mezintir dorpêçê de xwestin {2} ji bo babet {3}"
@ -1597,7 +1601,6 @@ DocType: Vehicle,Fuel UOM,UOM mazotê
DocType: Warehouse,Warehouse Contact Info,Warehouse Têkilî
DocType: Payment Entry,Write Off Difference Amount,Hewe Off Mîqdar Cudahiya
DocType: Volunteer,Volunteer Name,Navê Dilxwaz
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Ji kerema xwe li Sîstema Perwerdehiya Perwerdehiya Navneteweyî ya Mamosteyê sazkirinê saz bikin
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +434,"{0}: Employee email not found, hence email not sent","{0}: email Employee dîtin ne, yanî email şandin ne"
apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +85,Shipping rule not applicable for country {0},Destûra Rêveçûnê ne ji bo welatê {0}
DocType: Item,Foreign Trade Details,Details Bazirganiya Derve
@ -1610,7 +1613,7 @@ DocType: Student Group Student,Group Roll Number,Pol Hejmara Roll
DocType: Student Group Student,Group Roll Number,Pol Hejmara Roll
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +143,"For {0}, only credit accounts can be linked against another debit entry","Ji bo {0}, tenê bikarhênerên credit dikare li dijî entry debit din ve girêdayî"
apps/erpnext/erpnext/projects/doctype/project/project.py +80,Total of all task weights should be 1. Please adjust weights of all Project tasks accordingly,Bi tevahî ji hemû pîvan Erka divê bê nîşandan 1. kerema xwe pîvan ji hemû erkên Project eyar bikin li gorî
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +582,Delivery Note {0} is not submitted,Delivery Têbînî {0} tê şandin ne
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +575,Delivery Note {0} is not submitted,Delivery Têbînî {0} tê şandin ne
apps/erpnext/erpnext/stock/get_item_details.py +146,Item {0} must be a Sub-contracted Item,"Babetê {0}, divê babete-bînrawe bi peyman be"
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +43,Capital Equipments,Teçxîzatên hatiye capital
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +33,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Rule Pricing is yekem li ser esasê hilbijartin &#39;Bisepîne Li ser&#39; qada, ku dikare bê Babetê, Babetê Pol an Brand."
@ -1635,7 +1638,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +27,Note: This
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +54,Child warehouse exists for this warehouse. You can not delete this warehouse.,warehouse zarok ji bo vê warehouse heye. Tu dikarî vê warehouse jêbirin.
DocType: Item,Website Item Groups,Groups babet Website
DocType: Purchase Invoice,Total (Company Currency),Total (Company Exchange)
apps/erpnext/erpnext/stock/utils.py +205,Serial number {0} entered more than once,"hejmara Serial {0} ketin, ji carekê zêdetir"
apps/erpnext/erpnext/stock/utils.py +204,Serial number {0} entered more than once,"hejmara Serial {0} ketin, ji carekê zêdetir"
DocType: Journal Entry,Journal Entry,Peyam di Journal
DocType: Expense Claim Advance,Unclaimed amount,Heqê nenaskirî
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +148,{0} items in progress,{0} tomar di pêşketina
@ -1732,7 +1735,7 @@ DocType: Email Digest,For Company,ji bo Company
apps/erpnext/erpnext/config/support.py +17,Communication log.,log-Ragihandin a.
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +193,"Request for Quotation is disabled to access from portal, for more check portal settings.","Daxwaza ji bo Quotation ji bo gihiştina ji portal hate qedexekirin, ji bo zêdetir settings portal check."
DocType: Supplier Scorecard Scoring Variable,Supplier Scorecard Scoring Variable,Supplier Scorecard Variable Scoring
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +73,Buying Amount,Asta kirîn
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Buying Amount,Asta kirîn
DocType: Sales Invoice,Shipping Address Name,Shipping Name Address
DocType: Material Request,Terms and Conditions Content,Şert û mercan Content
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +18,There were errors creating Course Schedule,Gelek şaş bûne çêbikin
@ -1994,7 +1997,7 @@ DocType: Expense Claim,Total Amount Reimbursed,Total qasa dayîna
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle_dashboard.py +5,This is based on logs against this Vehicle. See timeline below for details,Ev li ser têketin li dijî vê Vehicle bingeha. Dîtina cedwela li jêr bo hûragahiyan
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +90,Against Supplier Invoice {0} dated {1},Li dijî Supplier bi fatûreyên {0} dîroka {1}
DocType: Customer,Default Price List,Default List Price
apps/erpnext/erpnext/assets/doctype/asset/asset.py +265,Asset Movement record {0} created,record Tevgera Asset {0} tên afirandin
apps/erpnext/erpnext/assets/doctype/asset/asset.py +269,Asset Movement record {0} created,record Tevgera Asset {0} tên afirandin
apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +51,You cannot delete Fiscal Year {0}. Fiscal Year {0} is set as default in Global Settings,Tu nikarî bibî Fiscal Sal {0}. Sal malî {0} wek default li Settings Global danîn
apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.py +20,A customer with the same name already exists,Pêwendiyek bi heman navî heye
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.js +183,This will submit Salary Slips and create accrual Journal Entry. Do you want to proceed?,Ew ê ji bo salary slips pêşkêş dikin û navnîşa rojnameya rojnamegeriyê biafirînin. Ma hûn dixwazin pêşniyar bikin?
@ -2008,6 +2011,7 @@ apps/erpnext/erpnext/config/accounts.py +140,Update bank payment dates with jour
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py +21,Pricing,Pricing
DocType: Quotation,Term Details,Details term
apps/erpnext/erpnext/education/doctype/student_group/student_group.py +30,Cannot enroll more than {0} students for this student group.,ne dikarin zêdetir ji {0} xwendekar ji bo vê koma xwendekaran kul.
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total (Without Tax),Tiştek Bacê
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,View Lead
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +17,Lead Count,View Lead
apps/erpnext/erpnext/assets/doctype/asset_category/asset_category.py +15,{0} must be greater than 0,{0} divê mezintir 0 be
@ -2028,7 +2032,6 @@ DocType: Lab Test,Technician Name,Nûnerê Teknîkî
DocType: Accounts Settings,Unlink Payment on Cancellation of Invoice,Unlink Payment li ser komcivîna me ya bi fatûreyên
apps/erpnext/erpnext/hr/doctype/vehicle_log/vehicle_log.py +16,Current Odometer reading entered should be greater than initial Vehicle Odometer {0},xwendina Green niha ketin divê mezintir destpêkê Vehicle Green be {0}
DocType: Restaurant Reservation,No Show,Pêşanî tune
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +201,Please set Naming Series for {0} via Setup &gt; Settings &gt; Naming Series,Ji kerema xwe veşartî ji bo {0} bi Sîstema Setup&gt; Settings&gt; Naming Series
DocType: Shipping Rule Country,Shipping Rule Country,Shipping Rule Country
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py +10,Leave and Attendance,Dev û Beşdariyê
DocType: Maintenance Visit,Partially Completed,Qismen Qediya
@ -2121,7 +2124,7 @@ DocType: Student Group Instructor,Student Group Instructor,Instructor Student Gr
DocType: Student Group Instructor,Student Group Instructor,Instructor Student Group
DocType: Grant Application,Assessment Mark (Out of 10),Nirxandina Mark (Ji ji 10)
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py +61,Guardian2 Mobile No,Guardian2 Mobile No
apps/erpnext/erpnext/setup/doctype/company/company.py +201,Main,Ser
apps/erpnext/erpnext/setup/doctype/company/company.py +207,Main,Ser
apps/erpnext/erpnext/stock/doctype/item/item.js +72,Variant,variant
DocType: Naming Series,Set prefix for numbering series on your transactions,Set prefix ji bo ku hijmara series li ser danûstandinên xwe
DocType: Employee Attendance Tool,Employees HTML,karmendên HTML
@ -2171,7 +2174,7 @@ DocType: Crop,Crop Spacing,Crop Spacing
DocType: Course,Course Abbreviation,Abbreviation Kurs
DocType: Student Leave Application,Student Leave Application,Xwendekarên Leave Application
DocType: Item,Will also apply for variants,jî wê ji bo Guhertoyên serî
apps/erpnext/erpnext/assets/doctype/asset/asset.py +160,"Asset cannot be cancelled, as it is already {0}","Sermaye ne bi dikarin bên îptal kirin, wekî ku ji niha ve {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +164,"Asset cannot be cancelled, as it is already {0}","Sermaye ne bi dikarin bên îptal kirin, wekî ku ji niha ve {0}"
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} on Half day on {1},Xebatkarê {0} roja Half li ser {1}
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +42,Total working hours should not be greater than max working hours {0},"Total dema xebatê ne, divê ji bilî dema xebatê max be mezintir {0}"
apps/erpnext/erpnext/templates/pages/task_info.html +90,On,Li
@ -2358,9 +2361,10 @@ apps/erpnext/erpnext/assets/doctype/asset/depreciation.py +193,Please set 'Asset
DocType: Task,Actual End Date (via Time Sheet),Rastî End Date (via Time Sheet)
DocType: Soil Texture,Soil Type,Cureyê mîrata
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +374,Amount {0} {1} against {2} {3},Şêwaz {0} {1} dijî {2} {3}
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +318,New Message,Peyama Nû
,Quotation Trends,Trends quotation
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +159,Item Group not mentioned in item master for item {0},Babetê Pol di master babete bo em babete behsa ne {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +362,Debit To account must be a Receivable account,"Debit To account, divê hesabekî teleb be"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +355,Debit To account must be a Receivable account,"Debit To account, divê hesabekî teleb be"
DocType: Shipping Rule,Shipping Amount,Şêwaz Shipping
DocType: Supplier Scorecard Period,Period Score,Dawîn Score
apps/erpnext/erpnext/utilities/user_progress.py +63,Add Customers,lê zêde muşteriyan
@ -2371,7 +2375,7 @@ DocType: Purchase Order,Delivered,teslîmî
,Vehicle Expenses,Mesref Vehicle
DocType: Serial No,Invoice Details,Details bi fatûreyên
DocType: Grant Application,Show on Website,Li ser Malperê nîşan bide
apps/erpnext/erpnext/assets/doctype/asset/asset.py +155,Expected value after useful life must be greater than or equal to {0},"nirxa hêvîkirin ku piştî jiyana kêrhatî, divê mezintir an wekhev bin {0}"
apps/erpnext/erpnext/assets/doctype/asset/asset.py +159,Expected value after useful life must be greater than or equal to {0},"nirxa hêvîkirin ku piştî jiyana kêrhatî, divê mezintir an wekhev bin {0}"
apps/erpnext/erpnext/education/doctype/student_admission/templates/student_admission.html +29,Start on,Destpê bike
DocType: Hub Category,Hub Category,Kategorî
DocType: Purchase Invoice,SEZ,SEZ
@ -2403,7 +2407,7 @@ DocType: Patient,Patient Details,Agahdariya nexweşan
DocType: Patient,B Positive,B Positive
apps/erpnext/erpnext/controllers/accounts_controller.py +595,"Row #{0}: Qty must be 1, as item is a fixed asset. Please use separate row for multiple qty.","Row # {0}: Qty divê 1 be, wek babete a hebûnê sabît e. Ji kerema xwe ve row cuda ji bo QTY multiple bi kar tînin."
DocType: Leave Block List Allow,Leave Block List Allow,Dev ji Lîsteya Block Destûrê bide
apps/erpnext/erpnext/setup/doctype/company/company.py +302,Abbr can not be blank or space,Kurte nikare bibe vala an space
apps/erpnext/erpnext/setup/doctype/company/company.py +310,Abbr can not be blank or space,Kurte nikare bibe vala an space
DocType: Patient Medical Record,Patient Medical Record,Radyoya Tenduristî
apps/erpnext/erpnext/accounts/doctype/account/account.js +68,Group to Non-Group,Pol to non-Group
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py +50,Sports,Sports
@ -2454,6 +2458,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +913,Quotat
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +982,Cannot set a received RFQ to No Quote,Nikarî raketek RFQ qebûl nabe
DocType: Quotation,QTN-,QTN-
DocType: Salary Slip,Total Deduction,Total dabirîna
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +15,Select an account to print in account currency,Hesabek hilbijêre ku ji bo kaxeza hesabê çap bike
,Production Analytics,Analytics Production
apps/erpnext/erpnext/healthcare/doctype/patient/patient_dashboard.py +6,This is based on transactions against this Patient. See timeline below for details,Ev li ser nexweşiya li ser veguhestinê ye. Ji bo agahdariyên jêrîn binêrin
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +201,Cost Updated,cost Demê
@ -2509,7 +2514,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +105,Item Variant Settings,Pelda
apps/erpnext/erpnext/manufacturing/page/production_analytics/production_analytics.js +39,Select Company...,Select Company ...
DocType: Leave Control Panel,Leave blank if considered for all departments,"Vala bihêlin, eger ji bo hemû beşên nirxandin"
apps/erpnext/erpnext/config/hr.py +228,"Types of employment (permanent, contract, intern etc.).","Cure yên kar (daîmî, peymana, û hwd. Intern)."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +428,{0} is mandatory for Item {1},{0} ji bo babet wêneke e {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +421,{0} is mandatory for Item {1},{0} ji bo babet wêneke e {1}
DocType: Payroll Entry,Fortnightly,Livînê
DocType: Currency Exchange,From Currency,ji Exchange
DocType: Vital Signs,Weight (In Kilogram),Weight (Kilogram)
@ -2586,7 +2591,7 @@ DocType: BOM Scrap Item,Basic Amount (Company Currency),Şêwaz bingehîn (Compa
DocType: Student,Guardians,serperişt
DocType: Shopping Cart Settings,Prices will not be shown if Price List is not set,Bihayê wê li banî tê ne bê eger List Price is set ne
DocType: Stock Entry,Total Incoming Value,Total Nirx Incoming
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +356,Debit To is required,Debit To pêwîst e
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +349,Debit To is required,Debit To pêwîst e
apps/erpnext/erpnext/utilities/activation.py +109,"Timesheets help keep track of time, cost and billing for activites done by your team","Timesheets alîkariya şopandibe, dem, mesrefa û fatûre ji bo activites kirin ji aliyê ekîba xwe"
apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,Purchase Price List,Buy List Price
apps/erpnext/erpnext/config/buying.py +155,Templates of supplier scorecard variables.,Templates of supplier variables variables.
@ -2688,7 +2693,7 @@ apps/erpnext/erpnext/crm/doctype/lead/lead.py +51,Next Contact Date cannot be in
DocType: Company,For Reference Only.,For Reference Only.
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js +99,Physician {0} not available on {1},Bijîşk {0} ne li ser {1}
apps/erpnext/erpnext/accounts/page/pos/pos.js +2539,Select Batch No,Hilbijêre Batch No
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +52,Invalid {0}: {1},Invalid {0}: {1}
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +57,Invalid {0}: {1},Invalid {0}: {1}
,GSTR-1,GSTR-1
DocType: Purchase Invoice,PINV-RET-,PINV-direvin
DocType: Fee Validity,Reference Inv,Reference Inv
@ -2725,8 +2730,8 @@ DocType: Fees,Send Payment Request,Request Payment Send
DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Hên operasyonên, mesrefa xebatê û bide Operation yekane no ji bo operasyonên xwe."
DocType: Water Analysis,Origin,Reh
apps/erpnext/erpnext/controllers/status_updater.py +201,This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,Ev belge li ser sînor ji aliyê {0} {1} ji bo em babete {4}. Ma tu ji yekî din {3} li dijî heman {2}?
apps/erpnext/erpnext/public/js/controllers/transaction.js +1139,Please set recurring after saving,Ji kerema xwe ve set dubare piştî tomarkirinê
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +763,Select change amount account,Hilbijêre guhertina account mîqdara
apps/erpnext/erpnext/public/js/controllers/transaction.js +1142,Please set recurring after saving,Ji kerema xwe ve set dubare piştî tomarkirinê
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +756,Select change amount account,Hilbijêre guhertina account mîqdara
DocType: Purchase Invoice,Price List Currency,List Price Exchange
DocType: Naming Series,User must always select,Bikarhêner her tim divê hilbijêre
DocType: Stock Settings,Allow Negative Stock,Destûrê bide Stock Negative
@ -2782,7 +2787,7 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,Detail Cedwela
DocType: Supplier Scorecard,Warn for new Purchase Orders,Wergirtina navendên nû yên nû bikişînin
DocType: Quality Inspection Reading,Reading 9,Reading 9
DocType: Supplier,Is Frozen,e Frozen
apps/erpnext/erpnext/stock/utils.py +222,Group node warehouse is not allowed to select for transactions,warehouse node Pol nayê ne bi destûr ji bo muameleyên hilbijêre
apps/erpnext/erpnext/stock/utils.py +221,Group node warehouse is not allowed to select for transactions,warehouse node Pol nayê ne bi destûr ji bo muameleyên hilbijêre
DocType: Buying Settings,Buying Settings,Settings kirîn
DocType: Stock Entry Detail,BOM No. for a Finished Good Item,No. BOM ji bo babet baş Qediya
DocType: Upload Attendance,Attendance To Date,Amadebûna To Date
@ -2797,6 +2802,7 @@ DocType: Grant Application,Organization,Sazûman
DocType: Grant Application,Organization,Sazûman
DocType: BOM Update Tool,BOM Update Tool,Tool Tool BOM
DocType: SG Creation Tool Course,Student Group Name,Navê Komeleya Xwendekarên
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.js +17,Show exploded view,Çavdêriya teqawîtiyê nîşan bide
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule_list.js +7,Creating Fees,Pargîdanî
apps/erpnext/erpnext/setup/doctype/company/company.js +91,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.,Kerema xwe binêre ka tu bi rastî dixwazî jê bibî hemû muamele û ji bo vê şirketê. Daneyên axayê te dê pevê wekî xwe ye. Ev çalakî nayê vegerandin.
DocType: Room,Room Number,Hejmara room
@ -2807,7 +2813,7 @@ DocType: Journal Entry Account,Payroll Entry,Entry Payroll
apps/erpnext/erpnext/setup/doctype/company/company.js +35,Make Tax Template,Şablon
apps/erpnext/erpnext/public/js/conf.js +28,User Forum,Forum Bikarhêner
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +308,Raw Materials cannot be blank.,Madeyên xav nikare bibe vala.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +492,"Could not update stock, invoice contains drop shipping item.","Gelo stock update ne, fatûra dihewîne drop babete shipping."
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,"Could not update stock, invoice contains drop shipping item.","Gelo stock update ne, fatûra dihewîne drop babete shipping."
DocType: Lab Test Sample,Lab Test Sample,Sample Lab Lab
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +492,Quick Journal Entry,Peyam di Journal Quick
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +200,You can not change rate if BOM mentioned agianst any item,"Tu dikarî rêjeya nayê guhertin, eger BOM agianst tu babete behsa"
@ -2878,7 +2884,7 @@ apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.
DocType: Membership,USD,USD
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js +28,Make Invoice,Invoice Make
DocType: Selling Settings,Auto close Opportunity after 15 days,Auto Opportunity nêzîkî piştî 15 rojan de
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +76,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Birêvebirina kirînê ji ber ku {1} stand scorecard ji {0} ne têne destnîşankirin.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,Purchase Orders are not allowed for {0} due to a scorecard standing of {1}.,Birêvebirina kirînê ji ber ku {1} stand scorecard ji {0} ne têne destnîşankirin.
apps/erpnext/erpnext/public/js/financial_statements.js +83,End Year,End Sal
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Quot / Lead%
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +23,Quot/Lead %,Quot / Lead%
@ -2970,7 +2976,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +64,90-Above,90-Li jorê
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +241,Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher,Row # {0}: Journal Peyam {1} nayê Hesabê te nîne {2} an ji niha ve bi rêk û pêk li dijî fîşeke din
DocType: Supplier Scorecard Criteria,Criteria Weight,Nirxên giran
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Supplier&gt; Supplier Type
DocType: Buying Settings,Default Buying Price List,Default Lîsteya Buying Price
DocType: Payroll Entry,Salary Slip Based on Timesheet,Slip meaş Li ser timesheet
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py +43,Buying Rate,Rêjeya Kirînê
@ -3060,7 +3065,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +17,"If selec
apps/erpnext/erpnext/config/selling.py +174,Track Leads by Industry Type.,Track Leads by Type Industry.
apps/erpnext/erpnext/utilities/user_progress.py +98,Go to Letterheads,Biçe Letterheads
DocType: Item Supplier,Item Supplier,Supplier babetî
apps/erpnext/erpnext/public/js/controllers/transaction.js +1240,Please enter Item Code to get batch no,Tikaye kodî babet bikeve ji bo hevîrê tune
apps/erpnext/erpnext/public/js/controllers/transaction.js +1243,Please enter Item Code to get batch no,Tikaye kodî babet bikeve ji bo hevîrê tune
apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +874,Please select a value for {0} quotation_to {1},Ji kerema xwe re nirx ji bo {0} quotation_to hilbijêre {1}
apps/erpnext/erpnext/config/selling.py +46,All Addresses.,Hemû Navnîşan.
DocType: Company,Stock Settings,Settings Stock
@ -3238,6 +3243,7 @@ DocType: Employee Loan,Loan Details,deyn Details
DocType: Company,Default Inventory Account,Account Inventory Default
apps/erpnext/erpnext/projects/doctype/timesheet/timesheet.py +124,Row {0}: Completed Qty must be greater than zero.,Row {0}: Qediya Qty divê ji sifirê mezintir be.
DocType: Antibiotic,Antibiotic Name,Navê Antibiotic
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +48,Item Code &gt; Item Group &gt; Brand,Kodê Asayîş&gt; Tîpa Group&gt; Brand
DocType: Purchase Invoice,Apply Additional Discount On,Apply Additional li ser navnîshana
apps/erpnext/erpnext/healthcare/page/appointment_analytic/appointment_analytic.js +69,Select Type...,Tîpa Hilbijêre ...
DocType: Crop Cycle,A link to all the Land Units in which the Crop is growing,Zanyariyek ji bo Yekîneyên Yekbûyî yên ku di Cropê de zêde dibe
@ -3433,6 +3439,7 @@ DocType: Guardian Student,Guardian Student,Guardian Student
DocType: Supplier,Credit Limit,Sînora Credit
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py +70,Avg. Selling Price List Rate,Avg. Lîsteya bihayê bihayê firotinê
DocType: Production Plan Sales Order,Salse Order Date,Salse Order Date
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +54,Supplier &gt; Supplier Type,Supplier&gt; Supplier Type
DocType: Salary Component,Salary Component,meaş Component
apps/erpnext/erpnext/accounts/utils.py +495,Payment Entries {0} are un-linked,Arşîva Payment {0} un-girêdayî ne
DocType: GL Entry,Voucher No,fîşeke No
@ -3442,7 +3449,7 @@ apps/erpnext/erpnext/hub_node/page/hub/hub.js +195,Most Popular,Gelek Popular
DocType: Leave Allocation,Leave Allocation,Dev ji mûçeyan
DocType: Payment Request,Recipient Message And Payment Details,Recipient Message Û Details Payment
DocType: Training Event,Trainer Email,Trainer Email
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +548,Material Requests {0} created,Daxwazên maddî {0} tên afirandin
apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +550,Material Requests {0} created,Daxwazên maddî {0} tên afirandin
DocType: Restaurant Reservation,No of People,Nabe Gel
DocType: Production Planning Tool,Include sub-contracted raw materials,Usa jî madeyên xav-sub bi peyman
apps/erpnext/erpnext/config/selling.py +164,Template of terms or contract.,Şablon ji alî an peymaneke.
@ -3508,7 +3515,7 @@ DocType: Landed Cost Item,Receipt Document,Dokumentê wergirtina
DocType: Production Planning Tool,Create Material Requests,Create Requests Material
DocType: Employee Education,School/University,School / Zanîngeha
DocType: Payment Request,Reference Details,Details Reference
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Expected Value After Useful Life must be less than Gross Purchase Amount,Nirx a bende Piştî Jiyana gerek kêmtir ji Gross Purchase Mîqdar be
apps/erpnext/erpnext/assets/doctype/asset/asset.py +56,Expected Value After Useful Life must be less than Gross Purchase Amount,Nirx a bende Piştî Jiyana gerek kêmtir ji Gross Purchase Mîqdar be
DocType: Sales Invoice Item,Available Qty at Warehouse,Available Qty li Warehouse
apps/erpnext/erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py +20,Billed Amount,Şêwaz billed
DocType: Asset,Double Declining Balance,Double Balance Îro
@ -3520,7 +3527,7 @@ DocType: Attendance,On Leave,li ser Leave
apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +7,Get Updates,Get rojanekirî
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +96,{0} {1}: Account {2} does not belong to Company {3},{0} {1}: Account {2} ne ji Company girêdayî ne {3}
apps/erpnext/erpnext/stock/doctype/item/item.js +366,Select at least one value from each of the attributes.,Ji hêla her taybetmendiyên herî kêm nirxek hilbijêre.
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +156,Material Request {0} is cancelled or stopped,Daxwaza maddî {0} betal e an sekinî
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +162,Material Request {0} is cancelled or stopped,Daxwaza maddî {0} betal e an sekinî
apps/erpnext/erpnext/config/hr.py +310,Leave Management,Dev ji Management
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +106,Group by Account,Pol destê Account
DocType: Sales Order,Fully Delivered,bi temamî Çiyan
@ -3531,14 +3538,13 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +107,Disbursed Amount cannot be greater than Loan Amount {0},Şêwaz dandin de ne dikarin bibin mezintir Loan Mîqdar {0}
apps/erpnext/erpnext/utilities/user_progress.py +173,Go to Programs,Herin bernameyan
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +219,Row {0}# Allocated amount {1} cannot be greater than unclaimed amount {2},Row {0} # Hejmara nirxên vekirî {1} ji bila hejmarê nerazîkirî {2}
apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +88,Please setup numbering series for Attendance via Setup &gt; Numbering Series,Ji kerema xwe veşartina nimûne ji bo Tevlêbûnê ya Setup&gt; Pirtûka Nimûne
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +89,Purchase Order number required for Item {0},Bikirin siparîşê pêwîst ji bo vî babetî {0}
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +943,Production Order not created,Production Order tên afirandin ne
apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',&#39;Ji Date&#39; Divê piştî &#39;To Date&#39; be
apps/erpnext/erpnext/education/doctype/student_applicant/student_applicant.py +39,Cannot change status as student {0} is linked with student application {1},Dikare biguhere status wek xwendekarê bi {0} bi serlêdana xwendekaran ve girêdayî {1}
DocType: Asset,Fully Depreciated,bi temamî bicūkkirin
,Stock Projected Qty,Stock projeya Qty
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +438,Customer {0} does not belong to project {1},Mişterî {0} ne aîdî raxe {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +431,Customer {0} does not belong to project {1},Mişterî {0} ne aîdî raxe {1}
DocType: Employee Attendance Tool,Marked Attendance HTML,Beşdariyê nîşankirin HTML
apps/erpnext/erpnext/utilities/activation.py +73,"Quotations are proposals, bids you have sent to your customers","Quotations pêşniyarên in, bids ku hûn û mişterîyên xwe şandin"
DocType: Sales Order,Customer's Purchase Order,Mişterî ya Purchase Order
@ -3623,7 +3629,7 @@ DocType: Salary Slip,Hour Rate,Saet Rate
DocType: Stock Settings,Item Naming By,Babetê Bidin By
apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +46,Another Period Closing Entry {0} has been made after {1},"Din jî dema despêka Girtina {0} hatiye dîtin, piştî {1}"
DocType: Production Order,Material Transferred for Manufacturing,Maddî Transferred bo Manufacturing
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +32,Account {0} does not exists,Account {0} nayê heye ne
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +37,Account {0} does not exists,Account {0} nayê heye ne
DocType: Project,Project Type,Type Project
apps/erpnext/erpnext/projects/doctype/task/task.py +142,Child Task exists for this Task. You can not delete this Task.,Taskek Zarok ji bo vê Taskê heye. Hûn nikarin vê Taskê nadeve.
apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,An QTY hedef an target mîqdara bivênevê ye.
@ -3727,11 +3733,11 @@ DocType: C-Form,I,ez
DocType: Company,Asset Depreciation Cost Center,Asset Navenda Farhad. Cost
DocType: Sales Order Item,Sales Order Date,Sales Order Date
DocType: Sales Invoice Item,Delivered Qty,teslîmî Qty
apps/erpnext/erpnext/templates/print_formats/includes/total.html +4,Total Excl. Tax,Total Excl. Bac
DocType: Production Planning Tool,"If checked, all the children of each production item will be included in the Material Requests.","Eger kontrolkirin, hemû zarok ji hev babete bo hilberîna wê di Requests Material di nav de."
DocType: Assessment Plan,Assessment Plan,Plan nirxandina
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py +93,Customer {0} is created.,Têkilî {0} hatiye afirandin.
DocType: Stock Settings,Limit Percent,Sedî Sînora
apps/erpnext/erpnext/education/doctype/instructor/instructor.py +15,Please setup Instructor Naming System in Education &gt; Education Settings,Ji kerema xwe li Sîstema Perwerdehiya Perwerdehiya Navneteweyî ya Mamosteyê sazkirinê saz bikin
apps/erpnext/erpnext/stock/dashboard/item_dashboard.js +82, Currently no stock available in any warehouse,Niha tu firotek li her wareyê heye
,Payment Period Based On Invoice Date,Period tezmînat li ser Date bi fatûreyên
DocType: Sample Collection,No. of print,Hejmara çapkirinê
@ -3747,12 +3753,12 @@ apps/erpnext/erpnext/hr/doctype/employee_loan/employee_loan.py +113,Please enter
apps/erpnext/erpnext/shopping_cart/cart.py +375,Debtors ({0}),Deyndarên ({0})
DocType: Pricing Rule,Margin,margin
apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +57,New Customers,muşteriyan New
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +75,Gross Profit %,Profit% Gross
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Gross Profit %,Profit% Gross
DocType: Appraisal Goal,Weightage (%),Weightage (%)
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js +496,Change POS Profile,Guhertina POS Profîla
DocType: Bank Reconciliation Detail,Clearance Date,Date clearance
apps/erpnext/erpnext/education/report/course_wise_assessment_report/course_wise_assessment_report.html +7,Assessment Report,Rapora Nirxandinê
apps/erpnext/erpnext/assets/doctype/asset/asset.py +62,Gross Purchase Amount is mandatory,Şêwaz Purchase Gross wêneke e
apps/erpnext/erpnext/assets/doctype/asset/asset.py +59,Gross Purchase Amount is mandatory,Şêwaz Purchase Gross wêneke e
DocType: Lead,Address Desc,adres Desc
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py +102,Party is mandatory,Partiya wêneke e
DocType: Journal Entry,JV-,nájv-
@ -3784,7 +3790,6 @@ DocType: Account,Accumulated Depreciation,Farhad. Accumulated
DocType: Supplier Scorecard Scoring Standing,Standing Name,Navekî Standing
DocType: Stock Entry,Customer or Supplier Details,Details Mişterî an Supplier
DocType: Employee Loan Application,Required by Date,Pêwîst ji aliyê Date
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +229,Closing Balance (Dr - Cr),Balance Closing (Dr-Cr)
DocType: Lead,Lead Owner,Xwedîyê Lead
DocType: Bin,Requested Quantity,Quantity xwestin
DocType: Patient,Marital Status,Rewşa zewacê
@ -3798,7 +3803,7 @@ apps/erpnext/erpnext/hr/doctype/employee/employee.py +118,Date Of Retirement mus
apps/erpnext/erpnext/stock/doctype/item/item.js +68,Multiple Variants,Pirrjimar Pirrjimar
DocType: Sales Invoice,Against Income Account,Li dijî Account da-
apps/erpnext/erpnext/controllers/website_list_for_contact.py +117,{0}% Delivered,{0}% Çiyan
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +97,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Babetê {0}: QTY fermana {1} nikare were kêmî ji kêm QTY da {2} (danasîn li babete).
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +103,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,Babetê {0}: QTY fermana {1} nikare were kêmî ji kêm QTY da {2} (danasîn li babete).
DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,Rêjeya Belavkariya mehane
apps/erpnext/erpnext/hub_node/page/hub/hub.js +90,Please login as another user.,Ji kerema xwe bikarhênerê din bikar bînin.
DocType: Territory,Territory Targets,Armanc axa
@ -3899,7 +3904,7 @@ DocType: Program Enrollment,School House,House School
DocType: Serial No,Out of AMC,Out of AMC
apps/erpnext/erpnext/assets/doctype/asset/asset.py +82,Number of Depreciations Booked cannot be greater than Total Number of Depreciations,Hejmara Depreciations civanan ne dikarin bibin mezintir Hejmara Depreciations
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js +47,Make Maintenance Visit,Make Maintenance Visit
apps/erpnext/erpnext/selling/doctype/customer/customer.py +198,Please contact to the user who have Sales Master Manager {0} role,Ji kerema xwe re ji bo ku bikarhêner ku Sales Manager Master {0} rola xwedî têkilî bi
apps/erpnext/erpnext/selling/doctype/customer/customer.py +199,Please contact to the user who have Sales Master Manager {0} role,Ji kerema xwe re ji bo ku bikarhêner ku Sales Manager Master {0} rola xwedî têkilî bi
DocType: Company,Default Cash Account,Account Cash Default
apps/erpnext/erpnext/config/accounts.py +62,Company (not Customer or Supplier) master.,Company (ne Mişterî an Supplier) master.
apps/erpnext/erpnext/education/doctype/student/student_dashboard.py +6,This is based on the attendance of this Student,Ev li ser amadebûna vê Xwendekarên li
@ -4051,7 +4056,6 @@ DocType: Delivery Note Item,From Warehouse,ji Warehouse
apps/erpnext/erpnext/hr/doctype/payroll_entry/payroll_entry.py +59,No employees for the mentioned criteria,Ji bo krîterên nirxên ne karmendan tune
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +944,No Items with Bill of Materials to Manufacture,No babet bi Bill ji materyalên ji bo Manufacture
DocType: Restaurant,Default Customer,Berpirsiyarê Default
apps/erpnext/erpnext/hr/doctype/employee/employee.py +24,Please setup Employee Naming System in Human Resource &gt; HR Settings,Ji kerema xwe veguhastina Sîstema Sîstema Navnetewî di Çavkaniya Mirovan&gt; HR Set
DocType: Assessment Plan,Supervisor Name,Navê Supervisor
DocType: Healthcare Settings,Do not confirm if appointment is created for the same day,Bawer bikin ku heger wê roja ku ji bo rûniştinê hate çêkirin
DocType: Program Enrollment Course,Program Enrollment Course,Program hejmartina Kurs
@ -4173,7 +4177,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +201,
DocType: BOM,Website Description,Website Description
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +42,Net Change in Equity,Change Net di Sebra min
apps/erpnext/erpnext/hub_node/page/hub/hub.js +196,Newest,Newest
apps/erpnext/erpnext/assets/doctype/asset/asset.py +163,Please cancel Purchase Invoice {0} first,Ji kerema xwe ve poşmaniya kirînê bi fatûreyên {0} pêşîn
apps/erpnext/erpnext/assets/doctype/asset/asset.py +167,Please cancel Purchase Invoice {0} first,Ji kerema xwe ve poşmaniya kirînê bi fatûreyên {0} pêşîn
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +43,"Email Address must be unique, already exists for {0}","Email Address divê yekta be, ji niha ve ji bo heye {0}"
DocType: Serial No,AMC Expiry Date,AMC Expiry Date
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +869,Receipt,Meqbûz
@ -4190,7 +4194,7 @@ apps/erpnext/erpnext/public/js/pos/pos.html +98,No Customers yet!,No muşteriyan
apps/erpnext/erpnext/public/js/financial_statements.js +56,Cash Flow Statement,Daxûyanîya Flow Cash
apps/erpnext/erpnext/hr/doctype/employee_loan_application/employee_loan_application.py +23,Loan Amount cannot exceed Maximum Loan Amount of {0},Deyn Mîqdar dikarin Maximum Mîqdar deyn ji mideyeka ne bêtir ji {0}
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py +22,License,Îcaze
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +485,Please remove this Invoice {0} from C-Form {1},Ji kerema xwe re vê bi fatûreyên {0} ji C-Form jê {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +478,Please remove this Invoice {0} from C-Form {1},Ji kerema xwe re vê bi fatûreyên {0} ji C-Form jê {1}
DocType: Leave Control Panel,Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,"Ji kerema xwe ve çêşît Forward hilbijêre, eger hûn jî dixwazin ku di nav hevsengiyê sala diravî ya berî bernadin ji bo vê sala diravî ya"
DocType: GL Entry,Against Voucher Type,Li dijî Type Vienna
DocType: Physician,Phone (R),Telefon (R)
@ -4202,7 +4206,7 @@ apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +71
DocType: Patient,B Negative,B Negative
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py +25,Maintenance Status has to be Cancelled or Completed to Submit,Rewşa Tenduristiyê divê betal bike an qedexekirinê
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +47,Account {0} does not belongs to company {1},Account {0} nayê ji şîrketa endamê ne {1}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +878,Serial Numbers in row {0} does not match with Delivery Note,Numbers Serial li row {0} nayê bi Delivery Têbînî hev nagirin
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +871,Serial Numbers in row {0} does not match with Delivery Note,Numbers Serial li row {0} nayê bi Delivery Têbînî hev nagirin
DocType: Student,Guardian Details,Guardian Details
DocType: C-Form,C-Form,C-Form
apps/erpnext/erpnext/config/hr.py +18,Mark Attendance for multiple employees,Beşdariyê Mark ji bo karmendên multiple
@ -4244,7 +4248,7 @@ DocType: Opening Invoice Creation Tool,Sales,Sales
DocType: Stock Entry Detail,Basic Amount,Şêwaz bingehîn
DocType: Training Event,Exam,Bilbilên
DocType: Complaint,Complaint,Gilî
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +456,Warehouse required for stock Item {0},Warehouse pêwîst ji bo vî babetî stock {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +449,Warehouse required for stock Item {0},Warehouse pêwîst ji bo vî babetî stock {0}
DocType: Leave Allocation,Unused leaves,pelên Unused
DocType: Patient,Alcohol Past Use,Bikaranîna Pêdivî ya Alkol
DocType: Fertilizer Content,Fertilizer Content,Naveroka Fertilizer
@ -4372,6 +4376,7 @@ apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py +66,Opening Val
DocType: Salary Detail,Formula,Formîl
apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +47,Serial #,Serial #
DocType: Lab Test Template,Lab Test Template,Template Test Lab
apps/erpnext/erpnext/setup/doctype/company/company.py +170,Sales Account,Hesabê firotanê
DocType: Purchase Invoice Item,Total Weight,Total Weight
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +94,Commission on Sales,Komîsyona li ser Sales
DocType: Offer Letter Term,Value / Description,Nirx / Description
@ -4528,7 +4533,7 @@ Updated via 'Time Log'",li Minutes Demê via &#39;Time Têkeve&#39;
DocType: Customer,From Lead,ji Lead
apps/erpnext/erpnext/config/manufacturing.py +13,Orders released for production.,Emir ji bo hilberîna berdan.
apps/erpnext/erpnext/public/js/account_tree_grid.js +66,Select Fiscal Year...,Select Fiscal Sal ...
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +561,POS Profile required to make POS Entry,POS Profile pêwîst ji bo Peyam POS
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +554,POS Profile required to make POS Entry,POS Profile pêwîst ji bo Peyam POS
DocType: Program Enrollment Tool,Enroll Students,kul Xwendekarên
DocType: Lab Test,Approved Date,Dîroka Endamê
apps/erpnext/erpnext/patches/v4_0/create_price_list_if_missing.py +21,Standard Selling,Selling Standard
@ -4605,7 +4610,7 @@ DocType: Employee,Held On,held ser
apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +36,Production Item,Babetê Production
,Employee Information,Information karker
DocType: Stock Entry Detail,Additional Cost,Cost Additional
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +39,"Can not filter based on Voucher No, if grouped by Voucher","Can filter li ser Voucher No bingeha ne, eger ji aliyê Vienna kom"
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +44,"Can not filter based on Voucher No, if grouped by Voucher","Can filter li ser Voucher No bingeha ne, eger ji aliyê Vienna kom"
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +916,Make Supplier Quotation,Make Supplier Quotation
DocType: Quality Inspection,Incoming,Incoming
apps/erpnext/erpnext/setup/doctype/company/company.js +70,Default tax templates for sales and purchase are created.,Saziyên bacê yên ji bo firotin û kirînê ji nû ve tên afirandin.
@ -4622,7 +4627,7 @@ DocType: Batch,Batch ID,ID batch
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +378,Note: {0},Têbînî: {0}
,Delivery Note Trends,Trends Delivery Note
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +112,This Week's Summary,Nasname vê hefteyê
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +20,In Stock Qty,In Stock Qty
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py +22,In Stock Qty,In Stock Qty
DocType: Delivery Trip,Calculate Estimated Arrival Times,Hilbijartina Qeydkirina Demjimêr Bêjin
apps/erpnext/erpnext/accounts/general_ledger.py +111,Account: {0} can only be updated via Stock Transactions,Account: {0} bi tenê dikare bi rêya Transactions Stock ve
DocType: Student Group Creation Tool,Get Courses,Get Kursên
@ -4638,7 +4643,7 @@ DocType: Purchase Order,To Bill,ji bo Bill
DocType: Material Request,% Ordered,% Ordered
DocType: Education Settings,"For Course based Student Group, the Course will be validated for every Student from the enrolled Courses in Program Enrollment.","Ji bo qursa li Komeleya Xwendekarên Kurdistanê, li Kurs dê ji bo her Xwendekarên ji Kursên helîna li Program hejmartina vîze."
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py +103,Piecework,Piecework
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +71,Avg. Buying Rate,Avg. Rate kirîn
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Avg. Buying Rate,Avg. Rate kirîn
DocType: Task,Actual Time (in Hours),Time rastî (di Hours)
DocType: Employee,History In Company,Dîroka Li Company
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +311,New Message from {sender},Peyama nû ji {sender}
@ -4686,7 +4691,7 @@ DocType: Asset Repair,Asset Repair,Tamîrkirin
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +140,Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},Row {0}: Exchange ji BOM # di {1} de divê ji bo pereyê hilbijartin wekhev be {2}
DocType: Journal Entry Account,Exchange Rate,Rate
DocType: Patient,Additional information regarding the patient,Agahiyên bêtir li ser nexweşiyê
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +579,Sales Order {0} is not submitted,Sales Order {0} tê şandin ne
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +572,Sales Order {0} is not submitted,Sales Order {0} tê şandin ne
DocType: Homepage,Tag Line,Line Tag
DocType: Fee Component,Fee Component,Fee Component
apps/erpnext/erpnext/config/hr.py +204,Fleet Management,Management ya Korsan
@ -4901,7 +4906,7 @@ DocType: Assessment Result Detail,Assessment Result Detail,Nirxandina Detail Enc
DocType: Employee Education,Employee Education,Perwerde karker
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +53,Duplicate item group found in the item group table,koma babete hate dîtin li ser sifrê koma babete
DocType: Land Unit,Parent Land Unit,Unit Unit
apps/erpnext/erpnext/public/js/controllers/transaction.js +1098,It is needed to fetch Item Details.,Ev pêwîst e ji bo pędivî Details Babetê.
apps/erpnext/erpnext/public/js/controllers/transaction.js +1101,It is needed to fetch Item Details.,Ev pêwîst e ji bo pędivî Details Babetê.
DocType: Fertilizer,Fertilizer Name,Navekî Fertilizer
DocType: Salary Slip,Net Pay,Pay net
DocType: Account,Account,Konto
@ -4980,7 +4985,7 @@ DocType: Stock Entry Detail,Actual Qty (at source/target),Qty rastî (di source
DocType: Item Customer Detail,Ref Code,Code Ref
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +75,Customer Group is Required in POS Profile,Giştî ya Giştî ya POS Profesor e
apps/erpnext/erpnext/config/hr.py +12,Employee records.,records Employee.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +92,Please set Next Depreciation Date,Ji kerema xwe ve set Next Date Farhad.
apps/erpnext/erpnext/assets/doctype/asset/asset.py +95,Please set Next Depreciation Date,Ji kerema xwe ve set Next Date Farhad.
DocType: HR Settings,Payroll Settings,Settings payroll
apps/erpnext/erpnext/config/accounts.py +146,Match non-linked Invoices and Payments.,Hev hisab ne-girêdayî û Payments.
DocType: POS Settings,POS Settings,POS Settings
@ -5147,7 +5152,7 @@ DocType: Item,Customer Code,Code mişterî
apps/erpnext/erpnext/hr/doctype/employee/employee.py +220,Birthday Reminder for {0},Reminder Birthday ji bo {0}
DocType: Asset Maintenance Task,Last Completion Date,Dîroka Dawîn Dawîn
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py +72,Days Since Last Order,Rojan de ji sala Last Order
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +359,Debit To account must be a Balance Sheet account,"Debit To account, divê hesabekî Bîlançoya be"
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +352,Debit To account must be a Balance Sheet account,"Debit To account, divê hesabekî Bîlançoya be"
DocType: Buying Settings,Naming Series,Series Bidin
DocType: Leave Block List,Leave Block List Name,Dev ji Lîsteya Block Name
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py +14,Insurance Start date should be less than Insurance End date,date Insurance Serî divê kêmtir ji date Insurance End be
@ -5276,6 +5281,7 @@ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +273,Installat
DocType: Bank Reconciliation,Get Payment Entries,Get berheman Payment
DocType: Quotation Item,Against Docname,li dijî Docname
DocType: SMS Center,All Employee (Active),Hemû Employee (Active)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Giştî&gt; Giştî ya Giştî&gt; Herêmî
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,View Now
DocType: BOM,Raw Material Cost,Cost Raw
DocType: Item Reorder,Re-Order Level,Re-Order Level
@ -5376,7 +5382,6 @@ apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invo
DocType: Room,Seating Capacity,þiyanên seating
DocType: Issue,ISS-,ISS-
DocType: Lab Test Groups,Lab Test Groups,Komên Lab Lab
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +51,Customer &gt; Customer Group &gt; Territory,Giştî&gt; Giştî ya Giştî&gt; Herêmî
DocType: Project,Total Expense Claim (via Expense Claims),Total mesrefan (via Îdîayên Expense)
DocType: GST Settings,GST Summary,gst Nasname
DocType: Assessment Result,Total Score,Total Score
@ -5390,7 +5395,7 @@ DocType: Batch,Source Document Type,Source Corî dokumênt
apps/erpnext/erpnext/education/doctype/course_scheduling_tool/course_scheduling_tool.js +24,Following course schedules were created,Di çarçoveyek kursên rêbazan de hatine afirandin
DocType: Journal Entry,Total Debit,Total Debit
DocType: Manufacturing Settings,Default Finished Goods Warehouse,Default QediyayîComment Goods Warehouse
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +77,Sales Person,Person Sales
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +76,Sales Person,Person Sales
apps/erpnext/erpnext/config/accounts.py +233,Budget and Cost Center,Budceya û Navenda Cost
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +65,Multiple default mode of payment is not allowed,Modeya piralî ya pêdivî ye ku pêdivî ye
apps/erpnext/erpnext/templates/emails/recurring_document_failed.html +5,for the,bo
@ -5566,7 +5571,7 @@ DocType: Program,Program Name,Navê bernameyê
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,"Binêre, Bacê an Charge ji bo"
DocType: Driver,Driving License Category,Kategorî
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,Rastî Qty wêneke e
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +82,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} niha li ser {1} Pargîdanîya Scorecard heye, û Kirêdar kirina vê pargîdaniyê divê bi hişyariyê re bêne belav kirin."
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +88,"{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution.","{0} niha li ser {1} Pargîdanîya Scorecard heye, û Kirêdar kirina vê pargîdaniyê divê bi hişyariyê re bêne belav kirin."
DocType: Asset Maintenance Team,Asset Maintenance Team,Tîmên Parastina Girtîgehê
DocType: Employee Loan,Loan Type,Type deyn
DocType: Scheduling Tool,Scheduling Tool,Amûra scheduling

Can't render this file because it is too large.

Some files were not shown because too many files have changed in this diff Show More