Email ID renamed to Email Address
This commit is contained in:
parent
ab42fc006f
commit
b7cc393eb8
@ -3343,7 +3343,7 @@
|
||||
"collapsible": 0,
|
||||
"columns": 0,
|
||||
"depends_on": "eval:doc.is_recurring==1",
|
||||
"description": "Enter email id separated by commas, invoice will be mailed automatically on particular date",
|
||||
"description": "Enter Email Address separated by commas, invoice will be mailed automatically on particular date",
|
||||
"fieldname": "notification_email_address",
|
||||
"fieldtype": "Small Text",
|
||||
"hidden": 0,
|
||||
|
@ -39,7 +39,7 @@ class RequestforQuotation(BuyingController):
|
||||
|
||||
def validate_email_id(self, args):
|
||||
if not args.email_id:
|
||||
frappe.throw(_("Row {0}: For supplier {0} email id is required to send email").format(args.idx, args.supplier))
|
||||
frappe.throw(_("Row {0}: For supplier {0} Email Address is required to send email").format(args.idx, args.supplier))
|
||||
|
||||
def on_submit(self):
|
||||
frappe.db.set(self, 'status', 'Submitted')
|
||||
|
@ -155,7 +155,7 @@
|
||||
"ignore_xss_filter": 0,
|
||||
"in_filter": 0,
|
||||
"in_list_view": 1,
|
||||
"label": "Email Id",
|
||||
"label": "Email Address",
|
||||
"length": 0,
|
||||
"no_copy": 1,
|
||||
"options": "contact.email_id",
|
||||
|
@ -10,7 +10,7 @@
|
||||
"module": "Buying",
|
||||
"name": "Supplier Addresses and Contacts",
|
||||
"owner": "Administrator",
|
||||
"query": "SELECT\n `tabSupplier`.name as \"Supplier:Link/Supplier:120\",\n\t`tabSupplier`.supplier_name as \"Supplier Name::120\",\n\t`tabSupplier`.supplier_type as \"Supplier Type:Link/Supplier Type:120\",\n\tconcat_ws(', ', \n\t\ttrim(',' from `tabAddress`.address_line1), \n\t\ttrim(',' from tabAddress.address_line2), \n\t\ttabAddress.state, tabAddress.pincode, tabAddress.country\n\t) as 'Address::180',\n concat_ws(', ', `tabContact`.first_name, `tabContact`.last_name) as \"Contact Name::180\",\n\t`tabContact`.phone as \"Phone\",\n\t`tabContact`.mobile_no as \"Mobile No\",\n\t`tabContact`.email_id as \"Email Id::120\",\n\t`tabContact`.is_primary_contact as \"Is Primary Contact::120\"\nFROM\n\t`tabSupplier`\n\tleft join `tabAddress` on (\n\t\t`tabAddress`.supplier=`tabSupplier`.name\n\t)\n\tleft join `tabContact` on (\n\t\t`tabContact`.supplier=`tabSupplier`.name\n\t)\nWHERE\n\t`tabSupplier`.docstatus<2\nORDER BY\n\t`tabSupplier`.name asc",
|
||||
"query": "SELECT\n `tabSupplier`.name as \"Supplier:Link/Supplier:120\",\n\t`tabSupplier`.supplier_name as \"Supplier Name::120\",\n\t`tabSupplier`.supplier_type as \"Supplier Type:Link/Supplier Type:120\",\n\tconcat_ws(', ', \n\t\ttrim(',' from `tabAddress`.address_line1), \n\t\ttrim(',' from tabAddress.address_line2), \n\t\ttabAddress.state, tabAddress.pincode, tabAddress.country\n\t) as 'Address::180',\n concat_ws(', ', `tabContact`.first_name, `tabContact`.last_name) as \"Contact Name::180\",\n\t`tabContact`.phone as \"Phone\",\n\t`tabContact`.mobile_no as \"Mobile No\",\n\t`tabContact`.email_id as \"Email Address::120\",\n\t`tabContact`.is_primary_contact as \"Is Primary Contact::120\"\nFROM\n\t`tabSupplier`\n\tleft join `tabAddress` on (\n\t\t`tabAddress`.supplier=`tabSupplier`.name\n\t)\n\tleft join `tabContact` on (\n\t\t`tabContact`.supplier=`tabSupplier`.name\n\t)\nWHERE\n\t`tabSupplier`.docstatus<2\nORDER BY\n\t`tabSupplier`.name asc",
|
||||
"ref_doctype": "Supplier",
|
||||
"report_name": "Supplier Addresses and Contacts",
|
||||
"report_type": "Query Report"
|
||||
|
@ -140,7 +140,7 @@
|
||||
"in_filter": 0,
|
||||
"in_list_view": 0,
|
||||
"in_standard_filter": 0,
|
||||
"label": "Email Id",
|
||||
"label": "Email Address",
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"oldfieldname": "email_id",
|
||||
|
@ -41,7 +41,7 @@ class Lead(SellingController):
|
||||
frappe.throw(_("Lead Owner cannot be same as the Lead"))
|
||||
|
||||
if self.email_id == self.contact_by:
|
||||
frappe.throw(_("Next Contact By cannot be same as the Lead Email id"))
|
||||
frappe.throw(_("Next Contact By cannot be same as the Lead Email Address"))
|
||||
|
||||
self.image = has_gravatar(self.email_id)
|
||||
|
||||
@ -67,7 +67,7 @@ class Lead(SellingController):
|
||||
where email_id=%s and name!=%s""", (self.email_id, self.name))
|
||||
|
||||
if duplicate_leads:
|
||||
frappe.throw(_("Email id must be unique, already exists for {0}")
|
||||
frappe.throw(_("Email Address must be unique, already exists for {0}")
|
||||
.format(comma_and(duplicate_leads)), frappe.DuplicateEntryError)
|
||||
|
||||
def on_trash(self):
|
||||
|
@ -9,7 +9,7 @@ very simple and easy.
|
||||
Select the list that you want to send the email to. Fill in your content in
|
||||
the message box, and send your newsletter.If you wish to test your email, to
|
||||
see how it looks to the recepient, you can use the test function. Save the
|
||||
document before testing. A test email will be sent to your email id. You can
|
||||
document before testing. A test email will be sent to your Email Address. You can
|
||||
send the email to all the intended receipients by clicking on the send button.
|
||||
|
||||
<img class="screenshot" alt="Newsletter - New" src="{{docs_base_url}}/assets/img/crm/newsletter-new.png">
|
||||
|
@ -18,7 +18,7 @@ Note: Invoice/Order currency and Payment Gateway Account currency should be same
|
||||
---
|
||||
|
||||
##### Notify Customer
|
||||
You can notify customer from Payment Request with print format. If customer contact email is mentioned, it will automatically fetch email. If not so you can set email id on Payment Request.
|
||||
You can notify customer from Payment Request with print format. If customer contact email is mentioned, it will automatically fetch email. If not so you can set Email Address on Payment Request.
|
||||
|
||||
<img class="screenshot" alt="Payment Request" src="{{docs_base_url}}/assets/img/accounts/pr-details-2.png">
|
||||
|
||||
|
@ -28,6 +28,6 @@ Option to set document as recurring will be visible only after submission. Recur
|
||||
|
||||
In a situation where recurring invoice is not created successfully, user with System Manager role is notified about it via email. Also the document on which recurring event failed, "Is Recurring" field is unchecked for it. This means system doesn't try creating recurring invoice for that document again.
|
||||
|
||||
Failure in creation of recurring invoice could be due to multiple reasons like wrong email id mentioned in the Email Notification field in Recurring section etc.
|
||||
Failure in creation of recurring invoice could be due to multiple reasons like wrong Email Address mentioned in the Email Notification field in Recurring section etc.
|
||||
|
||||
On receipt of notification, if cause of failure is fixed (like correcting email id) within 24 hours, then recurring invoice will be generated automatically. If issue is not fixed within the said time, then document should be created for that month/year manually.
|
||||
On receipt of notification, if cause of failure is fixed (like correcting Email Address) within 24 hours, then recurring invoice will be generated automatically. If issue is not fixed within the said time, then document should be created for that month/year manually.
|
@ -51,7 +51,7 @@ monthly, quarterly, half-yearly or annual basis, you can check the “Recurring
|
||||
Invoice” box. Here you can fill in the details of how frequently you want to
|
||||
bill this Invoice and the period for which the contract is valid.
|
||||
|
||||
ERPNext will automatically create new Invoices and mail it to the email ids
|
||||
ERPNext will automatically create new Invoices and mail it to the Email Addresses
|
||||
you set.
|
||||
|
||||
#### POS Invoices
|
||||
|
@ -24,7 +24,7 @@ __Step 3:__ System will open the supplier quotation, user has to enter the rate
|
||||
|
||||
#### For Supplier
|
||||
|
||||
__Step 1:__ User has to create contact or enter email id against the supplier on request for quotation.
|
||||
__Step 1:__ User has to create contact or enter Email Address against the supplier on request for quotation.
|
||||
|
||||
![Request For Quotation]({{docs_base_url}}/assets/img/buying/set-email-id.png)
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
To login into the customer account, the customer has to use his email id and
|
||||
To login into the customer account, the customer has to use his Email Address and
|
||||
the password sent by ERPNext; generated through the sign-up process.
|
||||
|
||||
![Login]({{docs_base_url}}/assets/old_images/erpnext/customer-portal-login.png)
|
||||
|
@ -16,7 +16,7 @@ Customers have to log-in to the Company Website, and sign-up as a customer.
|
||||
|
||||
![Sign Up]({{docs_base_url}}/assets/old_images/erpnext/customer-portal-sign-up-3.png)
|
||||
|
||||
After the sign up process, a mail will be sent to the customers email id with
|
||||
After the sign up process, a mail will be sent to the customers Email Address with
|
||||
the password details.
|
||||
|
||||
{next}
|
||||
|
@ -16,7 +16,7 @@ system shall create a New Job Applicant against each email received on the mailb
|
||||
|
||||
> Setup > Email Account > New
|
||||
|
||||
* Enter the email id and the password, and select 'Enable Incoming'
|
||||
* Enter the Email Address and the password, and select 'Enable Incoming'
|
||||
|
||||
* In 'Append To' select 'Job Applicant'
|
||||
|
||||
|
@ -80,7 +80,7 @@ Here you can fill in the details like; of how frequently you want to generate an
|
||||
|
||||
On updating the Sales Order, a Recurring ID will be generated which will be same for all recurring orders generated from this particular Sales Order.
|
||||
|
||||
ERPNext will automatically create new Order and mail a notification to the email IDs you set in the 'Notification Email Address'field.
|
||||
ERPNext will automatically create new Order and mail a notification to the Email Addresses you set in the 'Notification Email Address'field.
|
||||
|
||||
<img class="screenshot" alt="Reccuring Sales Order" src="{{docs_base_url}}/assets/img/selling/recurring-sales-order.png">
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
#Rename User
|
||||
|
||||
Renaming functionality allows you to edit id of specific record. User is saved with person's email id. Only User with System Manager's role will be able to rename User IDs.
|
||||
Renaming functionality allows you to edit id of specific record. User is saved with person's Email Address. Only User with System Manager's role will be able to rename User IDs.
|
||||
|
||||
Following are the steps to rename user id.
|
||||
|
||||
@ -18,7 +18,7 @@ From Menu, select Rename.
|
||||
|
||||
#### Step 3: Update
|
||||
|
||||
Enter valid email id and click on Rename.
|
||||
Enter valid Email Address and click on Rename.
|
||||
|
||||
<img alt="Update" class="screenshot" src="{{docs_base_url}}/assets/img/articles/rename-user-2.png">
|
||||
|
||||
|
@ -28,7 +28,7 @@ To setup an incoming Email Account, check on **Enable Incoming** and set your PO
|
||||
|
||||
### How ERPNext handles replies
|
||||
|
||||
In ERPNext when you send an email to a contact like a customer, the sender will be the user who sent the email. In the **Reply-To** property, the email id will be of the default incoming account (like `replies@yourcompany.com`). ERPNext will automatically extract these emails from the incoming account and tag it to the relvant communication
|
||||
In ERPNext when you send an email to a contact like a customer, the sender will be the user who sent the email. In the **Reply-To** property, the Email Address will be of the default incoming account (like `replies@yourcompany.com`). ERPNext will automatically extract these emails from the incoming account and tag it to the relvant communication
|
||||
|
||||
### Notification for unreplied messages
|
||||
|
||||
|
@ -25,7 +25,7 @@ To setup an Email Alert:
|
||||
3. Value Change: When a particular value in the selected type changes.
|
||||
4. Days Before / Days After: Trigger this alert a few days before or after the **Reference Date.** To set the days, set **Days Before or After**. This can be useful in reminding you of upcoming due dates or reminding you to follow up on certain leads of quotations.
|
||||
3. Set additional conditions if you want.
|
||||
4. Set the recipients of this alert. The recipient could either be a field of the document or a list of fixed email ids.
|
||||
4. Set the recipients of this alert. The recipient could either be a field of the document or a list of fixed Email Addresses.
|
||||
5. Compose the message
|
||||
|
||||
|
||||
|
@ -12,7 +12,7 @@ Or just type "Auto Email Report" on the Search bar.
|
||||
|
||||
#### Step 1
|
||||
|
||||
Select the Report, the user for which you want to create this report (permissions will apply for this user), the email ids where you want this report emailed and the frequency of the report.
|
||||
Select the Report, the user for which you want to create this report (permissions will apply for this user), the Email Addresses where you want this report emailed and the frequency of the report.
|
||||
|
||||
<img class="screenshot" alt="Make Auto Email Report" src="{{docs_base_url}}/assets/img/setup/email/auto-email-1.png">
|
||||
|
||||
|
@ -2,7 +2,7 @@ Issue is an incoming query from your Customer, usually via email or
|
||||
from the “Contact” section of your website. (To fully integrate the Support
|
||||
Ticket to email, see the Email Settings section).
|
||||
|
||||
> Tip: A dedicated support email id is a good way to integrate incoming
|
||||
> Tip: A dedicated support Email Address is a good way to integrate incoming
|
||||
queries via email. For example, you can send support queries to ERPNext at
|
||||
support@erpnext.com and it will automatically create a Issue in the
|
||||
Frappe system.
|
||||
|
@ -6,4 +6,4 @@
|
||||
|
||||
A newsletter is a short written report that tells about the recent activities of an organization. It is generally sent to members of the organization, potential clients, customers or potential leads.
|
||||
|
||||
This video walks you through managing Newsletter List, master containing email id's to whom Newsletter will be sent. You can compose Newsletter using rich text editor, and also in HTML editor.
|
||||
This video walks you through managing Newsletter List, master containing Email Address's to whom Newsletter will be sent. You can compose Newsletter using rich text editor, and also in HTML editor.
|
||||
|
@ -797,7 +797,7 @@
|
||||
"bold": 0,
|
||||
"collapsible": 0,
|
||||
"columns": 0,
|
||||
"description": "Provide email id registered in company",
|
||||
"description": "Provide Email Address registered in company",
|
||||
"fieldname": "company_email",
|
||||
"fieldtype": "Data",
|
||||
"hidden": 0,
|
||||
|
@ -613,7 +613,7 @@
|
||||
"in_filter": 0,
|
||||
"in_list_view": 0,
|
||||
"in_standard_filter": 0,
|
||||
"label": "Employees Email Id",
|
||||
"label": "Employees Email Address",
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"oldfieldname": "email_id",
|
||||
|
@ -53,7 +53,7 @@
|
||||
"in_filter": 0,
|
||||
"in_list_view": 0,
|
||||
"in_standard_filter": 0,
|
||||
"label": "Email Id",
|
||||
"label": "Email Address",
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"options": "Email",
|
||||
|
@ -39,5 +39,5 @@ class JobApplicant(Document):
|
||||
where email_id=%s and name!=%s""", (self.email_id, self.name))
|
||||
|
||||
if names:
|
||||
frappe.throw(_("Email id must be unique, already exists for {0}").format(comma_and(names)), frappe.DuplicateEntryError)
|
||||
frappe.throw(_("Email Address must be unique, already exists for {0}").format(comma_and(names)), frappe.DuplicateEntryError)
|
||||
|
||||
|
@ -180,7 +180,7 @@ class ProcessPayroll(Document):
|
||||
log += """
|
||||
Possible reasons: <br>\
|
||||
1. Net pay is less than 0 <br>
|
||||
2. Company email id specified in employee master is not valid. <br>
|
||||
2. Company Email Address specified in employee master is not valid. <br>
|
||||
"""
|
||||
return log
|
||||
|
||||
|
@ -55,7 +55,7 @@
|
||||
"fieldname": "email_id",
|
||||
"fieldtype": "Data",
|
||||
"hidden": 0,
|
||||
"label": "Email Id",
|
||||
"label": "Email Address",
|
||||
"max_length": 0,
|
||||
"max_value": 0,
|
||||
"options": "Email",
|
||||
|
@ -192,7 +192,7 @@ function load_erpnext_slides() {
|
||||
{fieldtype:"Data", fieldname:"user_fullname_"+ i,
|
||||
label:__("Full Name")},
|
||||
{fieldtype:"Data", fieldname:"user_email_" + i,
|
||||
label:__("Email ID"), placeholder:__("user@example.com"),
|
||||
label:__("Email Address"), placeholder:__("user@example.com"),
|
||||
options: "Email"},
|
||||
{fieldtype:"Column Break"},
|
||||
{fieldtype: "Check", fieldname: "user_sales_" + i,
|
||||
|
@ -22,7 +22,7 @@
|
||||
{%= __("Mobile No.") %}: {%= contact_list[i].mobile_no %}<br>
|
||||
{% } %}
|
||||
{% if(contact_list[i].email_id) { %}
|
||||
{%= __("Email ID") %}: {%= contact_list[i].email_id %}
|
||||
{%= __("Email Address") %}: {%= contact_list[i].email_id %}
|
||||
{% } %}
|
||||
</p>
|
||||
</div>
|
||||
|
@ -165,7 +165,7 @@
|
||||
"in_filter": 0,
|
||||
"in_list_view": 0,
|
||||
"in_standard_filter": 0,
|
||||
"label": "Student Email ID",
|
||||
"label": "Student Email Address",
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"permlevel": 0,
|
||||
|
@ -511,7 +511,7 @@
|
||||
"in_filter": 0,
|
||||
"in_list_view": 0,
|
||||
"in_standard_filter": 0,
|
||||
"label": "Student Email ID",
|
||||
"label": "Student Email Address",
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"permlevel": 0,
|
||||
|
@ -42,7 +42,7 @@ def get_columns(filters):
|
||||
_("Student") + ":Link/Student:90",
|
||||
_("Student Name") + "::150",
|
||||
_("Student Batch") + "::180",
|
||||
_("Student Email ID") + "::180",
|
||||
_("Student Email Address") + "::180",
|
||||
_("Student Mobile No.") + "::150",
|
||||
]
|
||||
return columns
|
||||
|
@ -92,7 +92,7 @@
|
||||
"fieldname": "student_email_id",
|
||||
"fieldtype": "Data",
|
||||
"hidden": 0,
|
||||
"label": "Student Email ID",
|
||||
"label": "Student Email Address",
|
||||
"read_only": 0,
|
||||
"reqd": 0
|
||||
},
|
||||
|
@ -12,7 +12,7 @@
|
||||
"module": "Selling",
|
||||
"name": "Customer Addresses And Contacts",
|
||||
"owner": "Administrator",
|
||||
"query": "SELECT\n\t`tabCustomer`.name as \"Customer ID:Link/Customer\",\n\t`tabCustomer`.customer_name as \"Customer Name\",\n\t`tabCustomer`.customer_group as \"Customer Group:Link/Customer Group\",\n\t`tabAddress`.address_line1 as \"Address Line 1\",\n\t`tabAddress`.address_line2 as \"Address Line 2\",\n\t`tabAddress`.city as \"City\",\n\t`tabAddress`.state as \"State\",\n\t`tabAddress`.pincode as \"Postal Code\",\n\t`tabAddress`.country as \"Country\",\n\t`tabAddress`.is_primary_address as \"Is Primary Address:Check\", \n\t`tabContact`.first_name as \"First Name\",\n\t`tabContact`.last_name as \"Last Name\",\n\t`tabContact`.phone as \"Phone\",\n\t`tabContact`.mobile_no as \"Mobile No\",\n\t`tabContact`.email_id as \"Email Id\",\n\t`tabContact`.is_primary_contact as \"Is Primary Contact:Check\"\nFROM\n\t`tabCustomer`\n\tleft join `tabAddress` on (\n\t\t`tabAddress`.customer=`tabCustomer`.name\n\t)\n\tleft join `tabContact` on (\n\t\t`tabContact`.customer=`tabCustomer`.name\n\t)\nWHERE\n\t`tabCustomer`.docstatus<2\nORDER BY\n\t`tabCustomer`.name asc",
|
||||
"query": "SELECT\n\t`tabCustomer`.name as \"Customer ID:Link/Customer\",\n\t`tabCustomer`.customer_name as \"Customer Name\",\n\t`tabCustomer`.customer_group as \"Customer Group:Link/Customer Group\",\n\t`tabAddress`.address_line1 as \"Address Line 1\",\n\t`tabAddress`.address_line2 as \"Address Line 2\",\n\t`tabAddress`.city as \"City\",\n\t`tabAddress`.state as \"State\",\n\t`tabAddress`.pincode as \"Postal Code\",\n\t`tabAddress`.country as \"Country\",\n\t`tabAddress`.is_primary_address as \"Is Primary Address:Check\", \n\t`tabContact`.first_name as \"First Name\",\n\t`tabContact`.last_name as \"Last Name\",\n\t`tabContact`.phone as \"Phone\",\n\t`tabContact`.mobile_no as \"Mobile No\",\n\t`tabContact`.email_id as \"Email Address\",\n\t`tabContact`.is_primary_contact as \"Is Primary Contact:Check\"\nFROM\n\t`tabCustomer`\n\tleft join `tabAddress` on (\n\t\t`tabAddress`.customer=`tabCustomer`.name\n\t)\n\tleft join `tabContact` on (\n\t\t`tabContact`.customer=`tabCustomer`.name\n\t)\nWHERE\n\t`tabCustomer`.docstatus<2\nORDER BY\n\t`tabCustomer`.name asc",
|
||||
"ref_doctype": "Customer",
|
||||
"report_name": "Customer Addresses And Contacts",
|
||||
"report_type": "Query Report"
|
||||
|
@ -10,7 +10,7 @@
|
||||
"module": "Selling",
|
||||
"name": "Lead Details",
|
||||
"owner": "Administrator",
|
||||
"query": "SELECT\n `tabLead`.name as \"Lead Id:Link/Lead:120\",\n `tabLead`.lead_name as \"Lead Name::120\",\n\t`tabLead`.company_name as \"Company Name::120\",\n\t`tabLead`.status as \"Status::120\",\n\tconcat_ws(', ', \n\t\ttrim(',' from `tabAddress`.address_line1), \n\t\ttrim(',' from tabAddress.address_line2)\n\t) as 'Address::180',\n\t`tabAddress`.state as \"State::100\",\n\t`tabAddress`.pincode as \"Pincode::70\",\n\t`tabAddress`.country as \"Country::100\",\n\t`tabLead`.phone as \"Phone::100\",\n\t`tabLead`.mobile_no as \"Mobile No::100\",\n\t`tabLead`.email_id as \"Email Id::120\",\n\t`tabLead`.lead_owner as \"Lead Owner::120\",\n\t`tabLead`.source as \"Source::120\",\n\t`tabLead`.territory as \"Territory::120\",\n `tabLead`.owner as \"Owner:Link/User:120\"\nFROM\n\t`tabLead`\n\tleft join `tabAddress` on (\n\t\t`tabAddress`.lead=`tabLead`.name\n\t)\nWHERE\n\t`tabLead`.docstatus<2\nORDER BY\n\t`tabLead`.name asc",
|
||||
"query": "SELECT\n `tabLead`.name as \"Lead Id:Link/Lead:120\",\n `tabLead`.lead_name as \"Lead Name::120\",\n\t`tabLead`.company_name as \"Company Name::120\",\n\t`tabLead`.status as \"Status::120\",\n\tconcat_ws(', ', \n\t\ttrim(',' from `tabAddress`.address_line1), \n\t\ttrim(',' from tabAddress.address_line2)\n\t) as 'Address::180',\n\t`tabAddress`.state as \"State::100\",\n\t`tabAddress`.pincode as \"Pincode::70\",\n\t`tabAddress`.country as \"Country::100\",\n\t`tabLead`.phone as \"Phone::100\",\n\t`tabLead`.mobile_no as \"Mobile No::100\",\n\t`tabLead`.email_id as \"Email Address::120\",\n\t`tabLead`.lead_owner as \"Lead Owner::120\",\n\t`tabLead`.source as \"Source::120\",\n\t`tabLead`.territory as \"Territory::120\",\n `tabLead`.owner as \"Owner:Link/User:120\"\nFROM\n\t`tabLead`\n\tleft join `tabAddress` on (\n\t\t`tabAddress`.lead=`tabLead`.name\n\t)\nWHERE\n\t`tabLead`.docstatus<2\nORDER BY\n\t`tabLead`.name asc",
|
||||
"ref_doctype": "Lead",
|
||||
"report_name": "Lead Details",
|
||||
"report_type": "Query Report"
|
||||
|
@ -253,7 +253,7 @@
|
||||
"in_filter": 0,
|
||||
"in_list_view": 0,
|
||||
"in_standard_filter": 0,
|
||||
"label": "Email Id",
|
||||
"label": "Email Address",
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"oldfieldname": "email_id",
|
||||
|
@ -1,7 +1,7 @@
|
||||
<h2>Recurring {{ type }} Failed</h2>
|
||||
|
||||
<p>An error occured while creating recurring {{ type }} <b>{{ name }}</b> for <b>{{ party }}</b>.</p>
|
||||
<p>This could be because of some invalid email ids in the {{ type }}.</p>
|
||||
<p>This could be because of some invalid Email Addresses in the {{ type }}.</p>
|
||||
<p>To stop sending repetitive error notifications from the system, we have unchecked
|
||||
"Convert into Recurring" field in the {{ type }} {{ name }}.</p>
|
||||
<p><b>Please correct the {{ type }} and make the {{ type }} recurring again.</b></p>
|
||||
|
@ -55,7 +55,7 @@ $(document).ready(function() {
|
||||
<h1>ERPNext Demo</h1>
|
||||
<p style="margin-top: 60px;">
|
||||
<input id="lead-email" type="email"
|
||||
class="form-control" placeholder="Your Email Id (optional)"
|
||||
class="form-control" placeholder="Your Email Address (optional)"
|
||||
style="width: 75%; max-width: 400px; margin: auto;">
|
||||
</p>
|
||||
|
||||
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,የቤት ኪራይ ወጪ
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,መጠን መቀነስ በኋላ
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,መጪ የቀን መቁጠሪያ ክስተቶች
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,ወር እና ዓመት ይምረጡ
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","በኮማ የተለዩ ያስገቡ የኢሜይል መታወቂያ, መጠየቂያ የተወሰነ ቀን ላይ በራስ-ሰር በፖስታ ቤት ይሆናል"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","በኮማ የተለዩ ያስገቡ የኢሜይል መታወቂያ, መጠየቂያ የተወሰነ ቀን ላይ በራስ-ሰር በፖስታ ቤት ይሆናል"
|
||||
DocType: Employee,Company Email,የኩባንያ ኢሜይል
|
||||
DocType: GL Entry,Debit Amount in Account Currency,መለያ ምንዛሬ ውስጥ ዴት መጠን
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,ፓርቲ ላይ ወይም የውስጥ ለማስተላለፍ ባንክ / ጥሬ ገንዘብ ግብይቶች
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,ቅድመ-የቀጣሪ
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,መለያ {0} በርካታ ጊዜ ገብቷል ታይቷል
|
||||
DocType: Account,Expenses Included In Valuation,ወጪዎች ግምቱ ውስጥ ተካቷል
|
||||
DocType: Employee,Provide email id registered in company,ኩባንያ ውስጥ የተመዘገበ የኢሜይል መታወቂያ መስጠት
|
||||
DocType: Employee,Provide Email Address registered in company,ኩባንያ ውስጥ የተመዘገበ የኢሜይል መታወቂያ መስጠት
|
||||
DocType: Hub Settings,Seller City,ሻጭ ከተማ
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,አንድ ተማሪ ቡድን እባክዎ ይምረጡ
|
||||
,Absent Student Report,ብርቅ የተማሪ ሪፖርት
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,ሰማያዊ
|
||||
DocType: Purchase Invoice,Is Return,መመለሻ ነው
|
||||
DocType: Price List Country,Price List Country,የዋጋ ዝርዝር አገር
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,የኢሜይል መታወቂያ ማዘጋጀት እባክዎ
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,የኢሜይል መታወቂያ ማዘጋጀት እባክዎ
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,ንጥል ኮድ መለያ ቁጥር ሊቀየር አይችልም
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,ዓመት መጨረሻ ቀን
|
||||
DocType: Task Depends On,Task Depends On,ተግባር ላይ ይመረኮዛል
|
||||
DocType: Supplier Quotation,Opportunity,ዕድል
|
||||
,Completed Production Orders,ተጠናቋል የምርት ትዕዛዞች
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,ረድፍ {0}: አቅራቢ ለማግኘት {0} የኢሜይል መታወቂያ ኢሜይል መላክ ያስፈልጋል
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,ረድፍ {0}: አቅራቢ ለማግኘት {0} የኢሜይል መታወቂያ ኢሜይል መላክ ያስፈልጋል
|
||||
DocType: Operation,Default Workstation,ነባሪ ከገቢር
|
||||
DocType: Notification Control,Expense Claim Approved Message,ወጪ የይገባኛል ጥያቄ ፀድቋል መልዕክት
|
||||
DocType: Payment Entry,Deductions or Loss,ቅናሽ ወይም ማጣት
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,የ Exchange ቅሰም አዘጋ
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,የመተግበሪያ ክፍለ ጊዜ ሁለት alocation መዝገቦች ላይ መሆን አይችልም
|
||||
DocType: Item Group,Default Expense Account,ነባሪ የወጪ መለያ
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,የተማሪ ባች ወይም የትምህርት ፕሮግራም የግዴታ ነው
|
||||
DocType: Student,Student Email ID,የተማሪ የኢሜይል መታወቂያ
|
||||
DocType: Student,Student Email Address,የተማሪ የኢሜይል መታወቂያ
|
||||
DocType: Employee,Notice (days),ማስታወቂያ (ቀናት)
|
||||
DocType: Tax Rule,Sales Tax Template,የሽያጭ ግብር አብነት
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,ወደ መጠየቂያ ለማስቀመጥ ንጥሎችን ምረጥ
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,አ
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,ይመልከቱ እርሳሶች
|
||||
DocType: Program Enrollment Tool,New Program,አዲስ ፕሮግራም
|
||||
DocType: Item Attribute Value,Attribute Value,ዋጋ ይስጡ
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","የኢሜይል መታወቂያ አስቀድሞ ስለ አለ, ልዩ መሆን አለበት {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","የኢሜይል መታወቂያ አስቀድሞ ስለ አለ, ልዩ መሆን አለበት {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise አስይዝ ደረጃ የሚመከር
|
||||
DocType: Salary Detail,Salary Detail,ደመወዝ ዝርዝር
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,በመጀመሪያ {0} እባክዎ ይምረጡ
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,የፕሮጀክት እንቅስቃሴ / ተግባር.
|
||||
DocType: Vehicle Log,Refuelling Details,Refuelling ዝርዝሮች
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,ደመወዝ ቡቃያ አመንጭ
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,ቀጣይ የእውቂያ በ ቀዳሚ የኢሜይል መታወቂያ ጋር ተመሳሳይ ሊሆን አይችልም
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,ቀጣይ የእውቂያ በ ቀዳሚ የኢሜይል መታወቂያ ጋር ተመሳሳይ ሊሆን አይችልም
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","የሚመለከታቸው ያህል ሆኖ ተመርጧል ከሆነ መግዛትና, ምልክት መደረግ አለበት {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,ቅናሽ ከ 100 መሆን አለበት
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,የመጨረሻው የግዢ መጠን አልተገኘም
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,የቅድሚያ ክፍያ የሚከፈል
|
||||
DocType: Item,Item Tax,ንጥል ግብር
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,አቅራቢው ቁሳዊ
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,ኤክሳይስ ደረሰኝ
|
||||
DocType: Expense Claim,Employees Email Id,ሰራተኞች ኢሜይል መታወቂያ
|
||||
DocType: Expense Claim,Employees Email Address,ሰራተኞች ኢሜይል መታወቂያ
|
||||
DocType: Employee Attendance Tool,Marked Attendance,ምልክት ተደርጎበታል ክትትል
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,የቅርብ ግዜ አዳ
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,የመገናኛ ኤስ የእርስዎን እውቂያዎች ላክ
|
||||
|
Can't render this file because it is too large.
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,الإيجار التكلفة
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,المبلغ بعد الاستهلاك
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,الأحداث القادمة
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,الرجاء اختيار الشهر والسنة
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date",أدخل البريد الإلكتروني معرف مفصولة بفواصل، سوف ترسل الفاتورة تلقائيا على تاريخ معين
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date",أدخل البريد الإلكتروني معرف مفصولة بفواصل، سوف ترسل الفاتورة تلقائيا على تاريخ معين
|
||||
DocType: Employee,Company Email,شركة البريد الإلكتروني
|
||||
DocType: GL Entry,Debit Amount in Account Currency,مقدار الخصم في حساب العملات
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,المعاملات المصرفية / النقدية ضد طرف أو لنقل الداخلي
|
||||
@ -685,7 +685,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,معاينة زلة الراتب
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,الحساب {0} تم إدخاله عدة مرات
|
||||
DocType: Account,Expenses Included In Valuation,النفقات المشملة في التقييم
|
||||
DocType: Employee,Provide email id registered in company,توفير معرف البريد الإلكتروني المسجلة في الشركة
|
||||
DocType: Employee,Provide Email Address registered in company,توفير معرف البريد الإلكتروني المسجلة في الشركة
|
||||
DocType: Hub Settings,Seller City,مدينة البائع
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,الرجاء اختيار المجموعة الطلابية
|
||||
,Absent Student Report,تقرير الطالب غائب
|
||||
@ -1129,7 +1129,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,أزرق
|
||||
DocType: Purchase Invoice,Is Return,هو العائد
|
||||
DocType: Price List Country,Price List Country,قائمة الأسعار البلد
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,الرجاء تعيين ID البريد الإلكتروني
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,الرجاء تعيين ID البريد الإلكتروني
|
||||
DocType: Item,UOMs,وحدات القياس
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,لا يمكن تغيير رمز المدينة لل رقم التسلسلي
|
||||
@ -2220,7 +2220,7 @@ DocType: Fiscal Year,Year End Date,تاريخ نهاية العام
|
||||
DocType: Task Depends On,Task Depends On,المهمة تعتمد على
|
||||
DocType: Supplier Quotation,Opportunity,فرصة
|
||||
,Completed Production Orders,أوامر الإنتاج المنتهية
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,صف {0}: بالنسبة للمورد مطلوب {0} معرف البريد الإلكتروني لإرسال البريد الإلكتروني
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,صف {0}: بالنسبة للمورد مطلوب {0} معرف البريد الإلكتروني لإرسال البريد الإلكتروني
|
||||
DocType: Operation,Default Workstation,محطة العمل الافتراضية
|
||||
DocType: Notification Control,Expense Claim Approved Message,المطالبة حساب المعتمدة رسالة
|
||||
DocType: Payment Entry,Deductions or Loss,الخصومات أو الخسارة
|
||||
@ -3700,7 +3700,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,تعيين كسب تبادل /
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,فترة التطبيق لا يمكن أن يكون عبر اثنين من السجلات alocation
|
||||
DocType: Item Group,Default Expense Account,حساب النفقات الإفتراضي
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,دفعة الطالب أو الجدول الدراسي إلزامي
|
||||
DocType: Student,Student Email ID,طالب معرف البريد الإلكتروني
|
||||
DocType: Student,Student Email Address,طالب معرف البريد الإلكتروني
|
||||
DocType: Employee,Notice (days),إشعار (أيام )
|
||||
DocType: Tax Rule,Sales Tax Template,قالب ضريبة المبيعات
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,تحديد عناصر لحفظ الفاتورة
|
||||
@ -3851,7 +3851,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,د
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,مشاهدة العروض
|
||||
DocType: Program Enrollment Tool,New Program,برنامج جديد
|
||||
DocType: Item Attribute Value,Attribute Value,السمة القيمة
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}",يجب أن يكون البريد الإلكتروني معرف فريد ، موجود بالفعل ل {0}
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}",يجب أن يكون البريد الإلكتروني معرف فريد ، موجود بالفعل ل {0}
|
||||
,Itemwise Recommended Reorder Level,يوصى به Itemwise إعادة ترتيب مستوى
|
||||
DocType: Salary Detail,Salary Detail,تفاصيل الراتب
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,الرجاء اختيار {0} الأولى
|
||||
@ -4053,7 +4053,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,مشروع النشاط / المهمة.
|
||||
DocType: Vehicle Log,Refuelling Details,تفاصيل إعادة التزود بالوقود
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,إنشاء زلات الراتب
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,التالي اتصل بنا عن طريق لا يمكن أن يكون نفس معرف البريد الإلكتروني الرصاص
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,التالي اتصل بنا عن طريق لا يمكن أن يكون نفس معرف البريد الإلكتروني الرصاص
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}",يجب أن يتم التحقق الشراء، إذا تم تحديد مطبق للك {0}
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,يجب أن يكون الخصم أقل من 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,آخر سعر شراء لم يتم العثور على
|
||||
@ -4349,7 +4349,7 @@ DocType: Purchase Order,Advance Paid,مسبقا المدفوعة
|
||||
DocType: Item,Item Tax,البند الضرائب
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,المواد للمورد ل
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,المكوس الفاتورة
|
||||
DocType: Expense Claim,Employees Email Id,موظف البريد الإلكتروني معرف
|
||||
DocType: Expense Claim,Employees Email Address,موظف البريد الإلكتروني معرف
|
||||
DocType: Employee Attendance Tool,Marked Attendance,الحضور ملحوظ
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,الخصوم الحالية
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,إرسال SMS الشامل لجهات الاتصال الخاصة بك
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,Rent Cost
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Сума след амортизация
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Предстоящи Календар на събитията
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,"Моля, изберете месец и година"
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Въведете имейл ID разделени със запетаи, фактура ще бъде изпратено автоматично на определена дата"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Въведете имейл ID разделени със запетаи, фактура ще бъде изпратено автоматично на определена дата"
|
||||
DocType: Employee,Company Email,Фирма Email
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Debit Сума в Account валути
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Bank / Касови операции срещу партия или за вътрешно прехвърляне
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Преглед Заплата Slip
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Сметка {0} е била въведена на няколко пъти
|
||||
DocType: Account,Expenses Included In Valuation,"Разходи, включени в остойностяване"
|
||||
DocType: Employee,Provide email id registered in company,Осигуряване на имейл ID регистриран в компания
|
||||
DocType: Employee,Provide Email Address registered in company,Осигуряване на имейл ID регистриран в компания
|
||||
DocType: Hub Settings,Seller City,Продавач City
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,"Моля, изберете Student Group"
|
||||
,Absent Student Report,Отсъства Student Доклад
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Син
|
||||
DocType: Purchase Invoice,Is Return,Дали Return
|
||||
DocType: Price List Country,Price List Country,Ценоразпис Country
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,"Моля, задайте Email ID"
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,"Моля, задайте Email Address"
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,Код не може да се променя за Serial No.
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,Година Крайна дата
|
||||
DocType: Task Depends On,Task Depends On,Task зависи от
|
||||
DocType: Supplier Quotation,Opportunity,Opportunity
|
||||
,Completed Production Orders,Изпълнени поръчки
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Row {0}: За доставчика {0} имейл ID е необходимо да изпратите имейл
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Row {0}: За доставчика {0} имейл ID е необходимо да изпратите имейл
|
||||
DocType: Operation,Default Workstation,Default Workstation
|
||||
DocType: Notification Control,Expense Claim Approved Message,Expense претенция Одобрен Message
|
||||
DocType: Payment Entry,Deductions or Loss,Удръжки или загуба
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Определете Exchange П
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Срок за кандидатстване не може да бъде в два alocation записи
|
||||
DocType: Item Group,Default Expense Account,Default Expense Account
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Student Batch или Course График е задължително
|
||||
DocType: Student,Student Email ID,Student Email ID
|
||||
DocType: Student,Student Email Address,Student Email Address
|
||||
DocType: Employee,Notice (days),Известие (дни)
|
||||
DocType: Tax Rule,Sales Tax Template,Данъка върху продажбите Template
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,"Изберете, за да пести фактурата"
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Г
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Вижте Leads
|
||||
DocType: Program Enrollment Tool,New Program,Нова програма
|
||||
DocType: Item Attribute Value,Attribute Value,Атрибут Стойност
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Email ID трябва да бъде уникален, вече съществува за {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Email Address трябва да бъде уникален, вече съществува за {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise Препоръчано Пренареждане Level
|
||||
DocType: Salary Detail,Salary Detail,Заплата Подробности
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Моля изберете {0} първия
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Дейността на проект / задача.
|
||||
DocType: Vehicle Log,Refuelling Details,зареждане с гориво Детайли
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Генериране на заплатите фишове
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Следваща Контакт не може да бъде същата като на Водещия Email ID
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Следваща Контакт не може да бъде същата като на Водещия Email Address
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Изкупуването трябва да се провери, ако има такива се избира като {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Отстъпка трябва да е по-малко от 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Последно процент покупка не е намерен
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,Авансово изплатени сум
|
||||
DocType: Item,Item Tax,Позиция Tax
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Материал на доставчик
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Акцизите Invoice
|
||||
DocType: Expense Claim,Employees Email Id,Служители Email Id
|
||||
DocType: Expense Claim,Employees Email Address,Служители Email Address
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Маркирана Присъствие
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Текущи задължения
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Изпратете маса SMS към вашите контакти
|
||||
|
Can't render this file because it is too large.
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,ভাড়া খরচ
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,পরিমাণ অবচয় পর
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,আসন্ন ক্যালেন্ডার ইভেন্টস
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,মাস এবং বছর নির্বাচন করুন
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","কমা দ্বারা পৃথকীকৃত লিখুন ইমেইল আইডি, চালান নির্দিষ্ট তারিখে স্বয়ংক্রিয়ভাবে পাঠানো হবে"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","কমা দ্বারা পৃথকীকৃত লিখুন ইমেইল আইডি, চালান নির্দিষ্ট তারিখে স্বয়ংক্রিয়ভাবে পাঠানো হবে"
|
||||
DocType: Employee,Company Email,কোম্পানি ইমেইল
|
||||
DocType: GL Entry,Debit Amount in Account Currency,অ্যাকাউন্টের মুদ্রা ডেবিট পরিমাণ
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,ব্যাংক / ক্যাশ দলের বিরুদ্ধে বা অভ্যন্তরীণ স্থানান্তরের জন্য লেনদেন
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,প্রি বেতন স্লিপ
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,অ্যাকাউন্ট {0} একাধিক বার প্রবেশ করানো হয়েছে
|
||||
DocType: Account,Expenses Included In Valuation,খরচ মূল্যনির্ধারণ অন্তর্ভুক্ত
|
||||
DocType: Employee,Provide email id registered in company,কোম্পানি নিবন্ধিত ইমেইল আইডি প্রদান
|
||||
DocType: Employee,Provide Email Address registered in company,কোম্পানি নিবন্ধিত ইমেইল আইডি প্রদান
|
||||
DocType: Hub Settings,Seller City,বিক্রেতা সিটি
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,একটি শিক্ষার্থীর গ্রুপ নির্বাচন করুন
|
||||
,Absent Student Report,অনুপস্থিত শিক্ষার্থীর প্রতিবেদন
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,নীল
|
||||
DocType: Purchase Invoice,Is Return,ফিরে যেতে হবে
|
||||
DocType: Price List Country,Price List Country,মূল্যতালিকা দেশ
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,ইমেইল আইডি সেট করুন
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,ইমেইল আইডি সেট করুন
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,আইটেম কোড সিরিয়াল নং জন্য পরিবর্তন করা যাবে না
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,বছর শেষ তারিখ
|
||||
DocType: Task Depends On,Task Depends On,কাজের উপর নির্ভর করে
|
||||
DocType: Supplier Quotation,Opportunity,সুযোগ
|
||||
,Completed Production Orders,সম্পূর্ণ উৎপাদন আদেশ
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,সারি {0}: সরবরাহকারী জন্য {0} ইমেইল আইডি ইমেল পাঠাতে প্রয়োজন বোধ করা হয়
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,সারি {0}: সরবরাহকারী জন্য {0} ইমেইল আইডি ইমেল পাঠাতে প্রয়োজন বোধ করা হয়
|
||||
DocType: Operation,Default Workstation,ডিফল্ট ওয়ার্কস্টেশন
|
||||
DocType: Notification Control,Expense Claim Approved Message,ব্যয় দাবি অনুমোদিত পাঠান
|
||||
DocType: Payment Entry,Deductions or Loss,Deductions বা হ্রাস
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,সেট এক্সচেঞ
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,আবেদনের সময় দুই alocation রেকর্ড জুড়ে হতে পারে না
|
||||
DocType: Item Group,Default Expense Account,ডিফল্ট ব্যায়ের অ্যাকাউন্ট
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,ছাত্র ব্যাচ বা কোর্সের সময়সূচী বাধ্যতামূলক
|
||||
DocType: Student,Student Email ID,স্টুডেন্ট ইমেইল আইডি
|
||||
DocType: Student,Student Email Address,স্টুডেন্ট ইমেইল আইডি
|
||||
DocType: Employee,Notice (days),নোটিশ (দিন)
|
||||
DocType: Tax Rule,Sales Tax Template,সেলস ট্যাক্স টেমপ্লেট
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,চালান সংরক্ষণ আইটেম নির্বাচন করুন
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,জ
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,দেখুন বাড়ে
|
||||
DocType: Program Enrollment Tool,New Program,নতুন প্রোগ্রাম
|
||||
DocType: Item Attribute Value,Attribute Value,মূল্য গুন
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","ইমেইল আইডি ইতিমধ্যে বিদ্যমান নেই, অনন্য হওয়া আবশ্যক {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","ইমেইল আইডি ইতিমধ্যে বিদ্যমান নেই, অনন্য হওয়া আবশ্যক {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise রেকর্ডার শ্রেনী প্রস্তাবিত
|
||||
DocType: Salary Detail,Salary Detail,বেতন বিস্তারিত
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,প্রথম {0} দয়া করে নির্বাচন করুন
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,প্রকল্পের কার্যকলাপ / টাস্ক.
|
||||
DocType: Vehicle Log,Refuelling Details,ফুয়েলিং বিস্তারিত
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,বেতন Slips নির্মাণ
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,পরবর্তী সংস্পর্শের মাধ্যমে লিড ইমেল আইডি একই হতে পারে না
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,পরবর্তী সংস্পর্শের মাধ্যমে লিড ইমেল আইডি একই হতে পারে না
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","প্রযোজ্য হিসাবে নির্বাচিত করা হয় তাহলে কেনার, চেক করা আবশ্যক {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,বাট্টা কম 100 হতে হবে
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,সর্বশেষ ক্রয় হার পাওয়া যায়নি
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,অগ্রিম প্রদত্ত
|
||||
DocType: Item,Item Tax,আইটেমটি ট্যাক্স
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,সরবরাহকারী উপাদান
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,আবগারি চালান
|
||||
DocType: Expense Claim,Employees Email Id,এমপ্লয়িজ ইমেইল আইডি
|
||||
DocType: Expense Claim,Employees Email Address,এমপ্লয়িজ ইমেইল আইডি
|
||||
DocType: Employee Attendance Tool,Marked Attendance,চিহ্নিত এ্যাটেনডেন্স
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,বর্তমান দায়
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,ভর এসএমএস আপনার পরিচিতি পাঠান
|
||||
|
Can't render this file because it is too large.
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,Rent cost
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Iznos nakon Amortizacija
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Najave Kalendar događanja
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Molimo odaberite mjesec i godinu
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Unesite e-mail ID odvojena zarezima, račun će automatski biti poslan na određeni datum"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Unesite e-mail ID odvojena zarezima, račun će automatski biti poslan na određeni datum"
|
||||
DocType: Employee,Company Email,Zvanični e-mail
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Debit Iznos u računu valuta
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,transakcije protiv stranke ili za internu Transakcija / Cash
|
||||
@ -685,7 +685,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Preview Plaća Slip
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Račun {0} je ušao više puta
|
||||
DocType: Account,Expenses Included In Valuation,Troškovi uključeni u vrednovanje
|
||||
DocType: Employee,Provide email id registered in company,Osigurati e id registriran u tvrtki
|
||||
DocType: Employee,Provide Email Address registered in company,Osigurati e id registriran u tvrtki
|
||||
DocType: Hub Settings,Seller City,Prodavač City
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Molimo odaberite Student Group
|
||||
,Absent Student Report,Odsutan Student Report
|
||||
@ -1128,7 +1128,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Plava boja
|
||||
DocType: Purchase Invoice,Is Return,Je li povratak
|
||||
DocType: Price List Country,Price List Country,Cijena Lista država
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Molimo podesite mail ID
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Molimo podesite mail ID
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.
|
||||
@ -2219,7 +2219,7 @@ DocType: Fiscal Year,Year End Date,Završni datum godine
|
||||
DocType: Task Depends On,Task Depends On,Zadatak ovisi o
|
||||
DocType: Supplier Quotation,Opportunity,Prilika (Opportunity)
|
||||
,Completed Production Orders,Završeni Radni nalozi
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Red {0}: Za dobavljač {0} email id je potrebna za slanje e-mail
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Red {0}: Za dobavljač {0} Email Address je potrebna za slanje e-mail
|
||||
DocType: Operation,Default Workstation,Uobičajeno Workstation
|
||||
DocType: Notification Control,Expense Claim Approved Message,Rashodi Zahtjev Odobren poruku
|
||||
DocType: Payment Entry,Deductions or Loss,Smanjenja ili gubitak
|
||||
@ -3698,7 +3698,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Set Exchange dobitak / gubitak
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Period aplikacija ne može biti na dva alocation Records
|
||||
DocType: Item Group,Default Expense Account,Zadani račun rashoda
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Student Batch ili Terminski plan je obavezno
|
||||
DocType: Student,Student Email ID,Student-mail ID
|
||||
DocType: Student,Student Email Address,Student-mail ID
|
||||
DocType: Employee,Notice (days),Obavijest (dani )
|
||||
DocType: Tax Rule,Sales Tax Template,Porez na promet Template
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Odaberite stavke za spremanje fakture
|
||||
@ -3849,7 +3849,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Gla
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Pogledaj potencijalne kupce
|
||||
DocType: Program Enrollment Tool,New Program,novi program
|
||||
DocType: Item Attribute Value,Attribute Value,Vrijednost atributa
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Email ID mora biti jedinstven , već postoji za {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Email Address mora biti jedinstven , već postoji za {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise Preporučio redoslijeda Level
|
||||
DocType: Salary Detail,Salary Detail,Plaća Detail
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Odaberite {0} Prvi
|
||||
@ -4051,7 +4051,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Projektna aktivnost / zadatak.
|
||||
DocType: Vehicle Log,Refuelling Details,Dopuna goriva Detalji
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Generiranje plaće gaćice
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Sljedeća kontaktirati putem ne može biti isti kao Lead-mail id
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Sljedeća kontaktirati putem ne može biti isti kao Lead-mail id
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Kupnja treba provjeriti, ako je primjenjivo za odabrano kao {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Rabatt mora biti manji od 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Zadnje kupovinu stopa nije pronađen
|
||||
@ -4347,7 +4347,7 @@ DocType: Purchase Order,Advance Paid,Advance Paid
|
||||
DocType: Item,Item Tax,Porez artikla
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Materijal dobavljaču
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Akcizama Račun
|
||||
DocType: Expense Claim,Employees Email Id,Zaposlenici Email ID
|
||||
DocType: Expense Claim,Employees Email Address,Zaposlenici Email Address
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Označena Posjeta
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Kratkoročne obveze
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Pošalji masovne SMS poruke svojim kontaktima
|
||||
|
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,Cost de lloguer
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Després quantitat Depreciació
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Calendari d'Esdeveniments Pròxims
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Selecciona el mes i l'any
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Introduïu correu electrònic d'identificació separades per comes, la factura serà enviada automàticament en particular, la data"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Introduïu correu electrònic d'identificació separades per comes, la factura serà enviada automàticament en particular, la data"
|
||||
DocType: Employee,Company Email,Email de l'empresa
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Suma Dèbit en Compte moneda
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Operacions bancàries / efectiu contra la part que pertanyin a
|
||||
@ -685,7 +685,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Salari vista prèvia de lliscament
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Compte {0} s'ha introduït diverses vegades
|
||||
DocType: Account,Expenses Included In Valuation,Despeses incloses en la valoració
|
||||
DocType: Employee,Provide email id registered in company,Provide email id registered in company
|
||||
DocType: Employee,Provide Email Address registered in company,Provide Email Address registered in company
|
||||
DocType: Hub Settings,Seller City,Ciutat del venedor
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Seleccioneu un grup d'alumnes
|
||||
,Absent Student Report,Informe de l'alumne absent
|
||||
@ -1128,7 +1128,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Blau
|
||||
DocType: Purchase Invoice,Is Return,És la tornada
|
||||
DocType: Price List Country,Price List Country,Preu de llista País
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Si us plau ajust ID de correu electrònic
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Si us plau ajust ID de correu electrònic
|
||||
DocType: Item,UOMs,UOMS
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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
|
||||
@ -2219,7 +2219,7 @@ DocType: Fiscal Year,Year End Date,Any Data de finalització
|
||||
DocType: Task Depends On,Task Depends On,Tasca Depèn de
|
||||
DocType: Supplier Quotation,Opportunity,Oportunitat
|
||||
,Completed Production Orders,Ordres de fabricació completades
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Fila {0}: Per proveïdor es requereix {0} id de correu electrònic per enviar correu electrònic
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Fila {0}: Per proveïdor es requereix {0} id de correu electrònic per enviar correu electrònic
|
||||
DocType: Operation,Default Workstation,Per defecte l'estació de treball
|
||||
DocType: Notification Control,Expense Claim Approved Message,Missatge Reclamació d'aprovació de Despeses
|
||||
DocType: Payment Entry,Deductions or Loss,Deduccions o Pèrdua
|
||||
@ -3699,7 +3699,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Ajust de guany de l'intercan
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Període d'aplicació no pot ser a través de dos registres alocation
|
||||
DocType: Item Group,Default Expense Account,Compte de Despeses predeterminat
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Lot estudiant o Horari del curs és obligatòria
|
||||
DocType: Student,Student Email ID,Estudiant ID de correu electrònic
|
||||
DocType: Student,Student Email Address,Estudiant ID de correu electrònic
|
||||
DocType: Employee,Notice (days),Avís (dies)
|
||||
DocType: Tax Rule,Sales Tax Template,Plantilla d'Impost a les Vendes
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Seleccioneu articles per estalviar la factura
|
||||
@ -3850,7 +3850,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Com
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Veure ofertes
|
||||
DocType: Program Enrollment Tool,New Program,nou Programa
|
||||
DocType: Item Attribute Value,Attribute Value,Atribut Valor
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","L'adreça de correu electrònic ha de ser única, ja existeix per {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","L'adreça de correu electrònic ha de ser única, ja existeix per {0}"
|
||||
,Itemwise Recommended Reorder Level,Nivell d'articles recomanat per a tornar a passar comanda
|
||||
DocType: Salary Detail,Salary Detail,Detall de sous
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Seleccioneu {0} primer
|
||||
@ -4052,7 +4052,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Activitat del projecte / tasca.
|
||||
DocType: Vehicle Log,Refuelling Details,Detalls de repostatge
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Generar Salari Slips
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Per següent Contacte no pot ser la mateixa que la de plom correu electrònic d'identificació
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Per següent Contacte no pot ser la mateixa que la de plom correu electrònic d'identificació
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Compra de comprovar, si es selecciona aplicable Perquè {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Descompte ha de ser inferior a 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,taxa de compra d'última no trobat
|
||||
@ -4348,7 +4348,7 @@ DocType: Purchase Order,Advance Paid,Bestreta pagada
|
||||
DocType: Item,Item Tax,Impost d'article
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Materials de Proveïdor
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Impostos Especials Factura
|
||||
DocType: Expense Claim,Employees Email Id,Empleats Identificació de l'email
|
||||
DocType: Expense Claim,Employees Email Address,Empleats Identificació de l'email
|
||||
DocType: Employee Attendance Tool,Marked Attendance,assistència marcada
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Passiu exigible
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Enviar SMS massiu als seus contactes
|
||||
|
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,Rent Cost
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Částka po odpisech
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Nadcházející Události v kalendáři
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Vyberte měsíc a rok
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Zadejte e-mail id odděleny čárkami, bude faktura bude zaslán automaticky na určité datum"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Zadejte e-mail id odděleny čárkami, bude faktura bude zaslán automaticky na určité datum"
|
||||
DocType: Employee,Company Email,Společnost E-mail
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Debetní Částka v měně účtu
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Banka / Hotovostní operace proti osobě nebo pro interní převod
|
||||
@ -685,7 +685,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Preview výplatní pásce
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Účet {0} byl zadán vícekrát
|
||||
DocType: Account,Expenses Included In Valuation,Náklady ceně oceňování
|
||||
DocType: Employee,Provide email id registered in company,Poskytnout e-mail id zapsané ve firmě
|
||||
DocType: Employee,Provide Email Address registered in company,Poskytnout e-mail id zapsané ve firmě
|
||||
DocType: Hub Settings,Seller City,Prodejce City
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,"Prosím, vyberte si studentská skupina"
|
||||
,Absent Student Report,Absent Student Report
|
||||
@ -1128,7 +1128,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Modrý
|
||||
DocType: Purchase Invoice,Is Return,Je Return
|
||||
DocType: Price List Country,Price List Country,Ceník Země
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Prosím nastavte e-mail ID
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Prosím nastavte e-mail ID
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.
|
||||
@ -2219,7 +2219,7 @@ DocType: Fiscal Year,Year End Date,Datum Konce Roku
|
||||
DocType: Task Depends On,Task Depends On,Úkol je závislá na
|
||||
DocType: Supplier Quotation,Opportunity,Příležitost
|
||||
,Completed Production Orders,Dokončené Výrobní zakázky
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Řádek {0}: Pro dodavatele je zapotřebí {0} e-mail id poslat e-mail
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Řádek {0}: Pro dodavatele je zapotřebí {0} e-mail id poslat e-mail
|
||||
DocType: Operation,Default Workstation,Výchozí Workstation
|
||||
DocType: Notification Control,Expense Claim Approved Message,Zpráva o schválení úhrady výdajů
|
||||
DocType: Payment Entry,Deductions or Loss,Odpočty nebo ztráta
|
||||
@ -3698,7 +3698,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Set Exchange zisk / ztráta
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Období pro podávání žádostí nemůže být na dvou alokace záznamy
|
||||
DocType: Item Group,Default Expense Account,Výchozí výdajového účtu
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Student Batch nebo rozvrh je povinné
|
||||
DocType: Student,Student Email ID,Student ID e-mailu
|
||||
DocType: Student,Student Email Address,Student ID e-mailu
|
||||
DocType: Employee,Notice (days),Oznámení (dny)
|
||||
DocType: Tax Rule,Sales Tax Template,Daň z prodeje Template
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,"Vyberte položky, které chcete uložit fakturu"
|
||||
@ -3849,7 +3849,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Hla
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Zobrazit Vodítka
|
||||
DocType: Program Enrollment Tool,New Program,nový program
|
||||
DocType: Item Attribute Value,Attribute Value,Hodnota atributu
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","E-mail id musí být jedinečný, již existuje {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","E-mail id musí být jedinečný, již existuje {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise Doporučené Změna pořadí Level
|
||||
DocType: Salary Detail,Salary Detail,plat Detail
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,"Prosím, nejprve vyberte {0}"
|
||||
@ -4051,7 +4051,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Projektová činnost / úkol.
|
||||
DocType: Vehicle Log,Refuelling Details,Tankovací Podrobnosti
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Generování výplatních páskách
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Následující Kontakt Tím nemůže být stejná jako Lead ID e-mailu
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Následující Kontakt Tím nemůže být stejná jako Lead ID e-mailu
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Nákup musí být zkontrolováno, v případě potřeby pro vybrán jako {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Sleva musí být menší než 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Poslední cena při platbě nebyl nalezen
|
||||
@ -4347,7 +4347,7 @@ DocType: Purchase Order,Advance Paid,Vyplacené zálohy
|
||||
DocType: Item,Item Tax,Daň Položky
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Materiál Dodavateli
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Spotřební Faktura
|
||||
DocType: Expense Claim,Employees Email Id,Zaměstnanci Email Id
|
||||
DocType: Expense Claim,Employees Email Address,Zaměstnanci Email Address
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Výrazná Návštěvnost
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Krátkodobé závazky
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Posílat hromadné SMS vašim kontaktům
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,Leje Omkostninger
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Beløb efter afskrivninger
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Kommende Kalender Events
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Vælg måned og år
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Indtast email id adskilt af kommaer, vil faktura blive sendt automatisk på bestemt dato"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Indtast Email Address adskilt af kommaer, vil faktura blive sendt automatisk på bestemt dato"
|
||||
DocType: Employee,Company Email,Firma Email
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Debet Beløb i Konto Valuta
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Bank / Cash transaktioner mod fest eller til intern overførsel
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Eksempel lønseddel
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Konto {0} er indtastet flere gange
|
||||
DocType: Account,Expenses Included In Valuation,Udgifter inkluderet i Værdiansættelse
|
||||
DocType: Employee,Provide email id registered in company,Giv email id er registreret i selskab
|
||||
DocType: Employee,Provide Email Address registered in company,Giv Email Address er registreret i selskab
|
||||
DocType: Hub Settings,Seller City,Sælger By
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Vælg Student Group
|
||||
,Absent Student Report,Fraværende Student Report
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Blå
|
||||
DocType: Purchase Invoice,Is Return,Er Return
|
||||
DocType: Price List Country,Price List Country,Prisliste Land
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Venligst sæt E-mail-id
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Venligst sæt E-mail-id
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{0} valid serial nos for Item {1},{0} gyldige løbenr for vare {1}
|
||||
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Item Code kan ikke ændres for Serial No.
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,År Slutdato
|
||||
DocType: Task Depends On,Task Depends On,Task Afhænger On
|
||||
DocType: Supplier Quotation,Opportunity,Mulighed
|
||||
,Completed Production Orders,Afsluttede produktionsordrer
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Række {0}: For leverandør {0} email id er påkrævet for at sende e-mail
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Række {0}: For leverandør {0} Email Address er påkrævet for at sende e-mail
|
||||
DocType: Operation,Default Workstation,Standard Workstation
|
||||
DocType: Notification Control,Expense Claim Approved Message,Expense krav Godkendt Message
|
||||
DocType: Payment Entry,Deductions or Loss,Fradrag eller Tab
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Sæt Exchange Gevinst / Tab
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Ansøgningsperiode kan ikke være på tværs af to alocation optegnelser
|
||||
DocType: Item Group,Default Expense Account,Standard udgiftskonto
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Student Batch eller kursusplan er obligatorisk
|
||||
DocType: Student,Student Email ID,Student Email ID
|
||||
DocType: Student,Student Email Address,Student Email Address
|
||||
DocType: Employee,Notice (days),Varsel (dage)
|
||||
DocType: Tax Rule,Sales Tax Template,Sales Tax Skabelon
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Vælg elementer for at gemme fakturaen
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Gen
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Se Leads
|
||||
DocType: Program Enrollment Tool,New Program,nyt Program
|
||||
DocType: Item Attribute Value,Attribute Value,Attribut Værdi
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Email id skal være unikt, der allerede eksisterer for {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Email Address skal være unikt, der allerede eksisterer for {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise Anbefalet genbestillings Level
|
||||
DocType: Salary Detail,Salary Detail,Løn Detail
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Vælg {0} først
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Projektaktivitet / opgave.
|
||||
DocType: Vehicle Log,Refuelling Details,Brændstofpåfyldningsforbindelser Detaljer
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Generer lønsedler
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Næste Kontakt By kan ikke være det samme som Lead Email id
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Næste Kontakt By kan ikke være det samme som Lead Email Address
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Opkøb skal kontrolleres, om nødvendigt er valgt som {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Rabat skal være mindre end 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Sidste købskurs ikke fundet
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,Advance Betalt
|
||||
DocType: Item,Item Tax,Item Skat
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Materiale til leverandøren
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Skattestyrelsen Faktura
|
||||
DocType: Expense Claim,Employees Email Id,Medarbejdere Email Id
|
||||
DocType: Expense Claim,Employees Email Address,Medarbejdere Email Address
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Markant Deltagelse
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Kortfristede forpligtelser
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Send masse SMS til dine kontakter
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,Mietkosten
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Betrag nach Abschreibungen
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Die nächsten Kalender Ereignisse
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Bitte Monat und Jahr auswählen
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date",E-Mail-IDs durch Kommas getrennt eingeben; Rechnung wird automatisch an einem bestimmten Rechnungsdatum abgeschickt
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date",E-Mail-IDs durch Kommas getrennt eingeben; Rechnung wird automatisch an einem bestimmten Rechnungsdatum abgeschickt
|
||||
DocType: Employee,Company Email,Email-Adresse der Firma
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Soll-Betrag in Kontowährung
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Bank / Geldgeschäfte gegen Partei oder für die interne Übertragung
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Vorschau Gehaltsabrechnung
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Konto {0} wurde mehrmals eingegeben
|
||||
DocType: Account,Expenses Included In Valuation,In der Bewertung enthaltene Aufwendungen
|
||||
DocType: Employee,Provide email id registered in company,Geben Sie die in der Firma registrierte E-Mail-ID an
|
||||
DocType: Employee,Provide Email Address registered in company,Geben Sie die in der Firma registrierte E-Mail-ID an
|
||||
DocType: Hub Settings,Seller City,Stadt des Verkäufers
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Bitte wählen Sie ein Student Group
|
||||
,Absent Student Report,Abwesend Student Report
|
||||
@ -1126,7 +1126,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Blau
|
||||
DocType: Purchase Invoice,Is Return,Ist Rückgabe
|
||||
DocType: Price List Country,Price List Country,Preisliste Land
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Bitte E-Mail-ID eingeben
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Bitte E-Mail-ID eingeben
|
||||
DocType: Item,UOMs,Maßeinheiten
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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
|
||||
@ -2215,7 +2215,7 @@ DocType: Fiscal Year,Year End Date,Enddatum des Geschäftsjahres
|
||||
DocType: Task Depends On,Task Depends On,Aufgabe hängt davon ab
|
||||
DocType: Supplier Quotation,Opportunity,Chance
|
||||
,Completed Production Orders,Abgeschlossene Fertigungsaufträge
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Row {0}: Für Anbieter {0} E-Mail-ID ist erforderlich E-Mail senden
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Row {0}: Für Anbieter {0} E-Mail-ID ist erforderlich E-Mail senden
|
||||
DocType: Operation,Default Workstation,Standard-Arbeitsplatz
|
||||
DocType: Notification Control,Expense Claim Approved Message,Benachrichtigung über genehmigte Aufwandsabrechnung
|
||||
DocType: Payment Entry,Deductions or Loss,Abzüge oder Verlust
|
||||
@ -3692,7 +3692,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Stellen Sie Exchange-Gewinn / Ve
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Beantragter Zeitraum kann sich nicht über zwei Antragsdatensätze erstrecken
|
||||
DocType: Item Group,Default Expense Account,Standardaufwandskonto
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Student Batch oder Kursplan ist obligatorisch
|
||||
DocType: Student,Student Email ID,Studenten E-Mail-ID
|
||||
DocType: Student,Student Email Address,Studenten E-Mail-ID
|
||||
DocType: Employee,Notice (days),Meldung(s)(-Tage)
|
||||
DocType: Tax Rule,Sales Tax Template,Umsatzsteuer-Vorlage
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,"Wählen Sie Elemente, um die Rechnung zu speichern"
|
||||
@ -3843,7 +3843,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Hau
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Leads anzeigen
|
||||
DocType: Program Enrollment Tool,New Program,Neues Programm
|
||||
DocType: Item Attribute Value,Attribute Value,Attributwert
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}",E-Mail-ID muss einmalig sein; diese E-Mail-ID existiert bereits für {0}
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}",E-Mail-ID muss einmalig sein; diese E-Mail-ID existiert bereits für {0}
|
||||
,Itemwise Recommended Reorder Level,Empfohlener artikelbezogener Meldebestand
|
||||
DocType: Salary Detail,Salary Detail,Gehalt Details
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Bitte zuerst {0} auswählen
|
||||
@ -4045,7 +4045,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Projektaktivität/Aufgabe
|
||||
DocType: Vehicle Log,Refuelling Details,Betankungs Einzelheiten
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Gehaltsabrechnungen generieren
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Weiter Kontakt Durch nicht als Lead E-Mail-ID gleich sein
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Weiter Kontakt Durch nicht als Lead E-Mail-ID gleich sein
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Einkauf muss ausgewählt sein, wenn ""Anwenden auf"" auf {0} gesetzt wurde"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Discount muss kleiner als 100 sein
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Zuletzt Kaufrate nicht gefunden
|
||||
@ -4341,7 +4341,7 @@ DocType: Purchase Order,Advance Paid,Angezahlt
|
||||
DocType: Item,Item Tax,Artikelsteuer
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Material an den Lieferanten
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Verbrauch Rechnung
|
||||
DocType: Expense Claim,Employees Email Id,E-Mail-ID des Mitarbeiters
|
||||
DocType: Expense Claim,Employees Email Address,E-Mail-ID des Mitarbeiters
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Marked Teilnahme
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Kurzfristige Verbindlichkeiten
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Massen-SMS an Kontakte versenden
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,Κόστος ενοικίασης
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Ποσό μετά την απόσβεση
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Επερχόμενες Ημερολόγιο Εκδηλώσεων
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Παρακαλώ επιλέξτε μήνα και έτος
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Πληκτρολογήστε το αναγνωριστικό email, διαχωρισμένο με κόμματα, το τιμολόγιο θα αποσταλεί αυτόματα την συγκεκριμένη ημερομηνία"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Πληκτρολογήστε το αναγνωριστικό email, διαχωρισμένο με κόμματα, το τιμολόγιο θα αποσταλεί αυτόματα την συγκεκριμένη ημερομηνία"
|
||||
DocType: Employee,Company Email,Email εταιρείας
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Χρεωστικό ποσό στο λογαριασμό Νόμισμα
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Τράπεζα / Ταμειακές συναλλαγές κατά μέρος ή για εσωτερική μεταφορά
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Preview Μισθός Slip
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Ο λογαριασμός {0} έχει τεθεί πολλές φορές
|
||||
DocType: Account,Expenses Included In Valuation,Δαπάνες που περιλαμβάνονται στην αποτίμηση
|
||||
DocType: Employee,Provide email id registered in company,Παρέχετε ένα email ID εγγεγραμμένο στην εταιρεία
|
||||
DocType: Employee,Provide Email Address registered in company,Παρέχετε ένα Email Address εγγεγραμμένο στην εταιρεία
|
||||
DocType: Hub Settings,Seller City,Πόλη πωλητή
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Επιλέξτε μια Ομάδα Φοιτητών
|
||||
,Absent Student Report,Απών Έκθεση Φοιτητών
|
||||
@ -1126,7 +1126,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Μπλε
|
||||
DocType: Purchase Invoice,Is Return,Είναι η επιστροφή
|
||||
DocType: Price List Country,Price List Country,Τιμοκατάλογος Χώρα
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Παρακαλούμε να ορίσετε ID Email
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Παρακαλούμε να ορίσετε ID Email
|
||||
DocType: Item,UOMs,Μ.Μ.
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,Ο κωδικός είδους δεν μπορεί να αλλάξει για τον σειριακό αριθμό
|
||||
@ -2215,7 +2215,7 @@ DocType: Fiscal Year,Year End Date,Ημερομηνία λήξης έτους
|
||||
DocType: Task Depends On,Task Depends On,Εργασία Εξαρτάται από
|
||||
DocType: Supplier Quotation,Opportunity,Ευκαιρία
|
||||
,Completed Production Orders,Ολοκλήρωση εντολών παραγωγής
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Σειρά {0}: Για τον προμηθευτή {0} ταυτότητα ηλεκτρονικού ταχυδρομείου είναι απαραίτητη για την αποστολή e-mail
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Σειρά {0}: Για τον προμηθευτή {0} ταυτότητα ηλεκτρονικού ταχυδρομείου είναι απαραίτητη για την αποστολή e-mail
|
||||
DocType: Operation,Default Workstation,Προεπιλογμένος σταθμός εργασίας
|
||||
DocType: Notification Control,Expense Claim Approved Message,Μήνυμα έγκρισης αξίωσης δαπανών
|
||||
DocType: Payment Entry,Deductions or Loss,Μειώσεις ή Ζημία
|
||||
@ -3693,7 +3693,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Ορίστε Χρηματιστ
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Περίοδος υποβολής των αιτήσεων δεν μπορεί να είναι σε δύο εγγραφές alocation
|
||||
DocType: Item Group,Default Expense Account,Προεπιλεγμένος λογαριασμός δαπανών
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Μαζική φοιτητής ή Πρόγραμμα μαθημάτων είναι υποχρεωτική
|
||||
DocType: Student,Student Email ID,Φοιτητής Email ID
|
||||
DocType: Student,Student Email Address,Φοιτητής Email Address
|
||||
DocType: Employee,Notice (days),Ειδοποίηση (ημέρες)
|
||||
DocType: Tax Rule,Sales Tax Template,Φόρος επί των πωλήσεων Πρότυπο
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Επιλέξτε αντικείμενα για να σώσει το τιμολόγιο
|
||||
@ -3844,7 +3844,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Γ
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Δείτε τις απαγωγές
|
||||
DocType: Program Enrollment Tool,New Program,νέο Πρόγραμμα
|
||||
DocType: Item Attribute Value,Attribute Value,Χαρακτηριστικό αξία
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Email ID, όπου ένας υποψήφιος θα αποστείλει email π.Χ. 'jobs@example.Com'"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Email Address, όπου ένας υποψήφιος θα αποστείλει email π.Χ. 'jobs@example.Com'"
|
||||
,Itemwise Recommended Reorder Level,Προτεινόμενο επίπεδο επαναπαραγγελίας ανά είδος
|
||||
DocType: Salary Detail,Salary Detail,μισθός Λεπτομέρειες
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Παρακαλώ επιλέξτε {0} πρώτα
|
||||
@ -4046,7 +4046,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Δραστηριότητες / εργασίες έργου
|
||||
DocType: Vehicle Log,Refuelling Details,Λεπτομέρειες ανεφοδιασμού
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Δημιουργία βεβαιώσεων αποδοχών
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Επόμενο Επικοινωνία Με το να μην μπορεί να είναι ίδιο με το Lead id Email
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Επόμενο Επικοινωνία Με το να μην μπορεί να είναι ίδιο με το Lead id Email
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}",Η επιλογή αγορά πρέπει να οριστεί αν είναι επιλεγμένο το πεδίο 'εφαρμοστέο σε' ως {0}
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Η έκπτωση πρέπει να είναι μικρότερη από 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Τελευταία ποσοστό αγορά δεν βρέθηκε
|
||||
@ -4341,7 +4341,7 @@ DocType: Purchase Order,Advance Paid,Προκαταβολή που καταβλ
|
||||
DocType: Item,Item Tax,Φόρος είδους
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Υλικό Προμηθευτή
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Των ειδικών φόρων κατανάλωσης Τιμολόγιο
|
||||
DocType: Expense Claim,Employees Email Id,Email ID υπαλλήλων
|
||||
DocType: Expense Claim,Employees Email Address,Email Address υπαλλήλων
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Αισθητή Συμμετοχή
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Βραχυπρόθεσμες υποχρεώσεις
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Αποστολή μαζικών SMS στις επαφές σας
|
||||
|
Can't render this file because it is too large.
|
@ -97,7 +97,7 @@ DocType: Stock Settings,Notify by Email on creation of automatic Material Reques
|
||||
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +831,Delivery Note,Notas de Entrega
|
||||
apps/erpnext/erpnext/stock/doctype/item/item.py +445,{0} entered twice in Item Tax,{0} ingresado dos veces en el Impuesto del producto
|
||||
DocType: Workstation,Rent Cost,Renta Costo
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Introduzca ID de correo electrónico separados por comas, la factura será enviada automáticamente en una fecha determinada"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Introduzca ID de correo electrónico separados por comas, la factura será enviada automáticamente en una fecha determinada"
|
||||
DocType: Employee,Company Email,Correo de la compañía
|
||||
apps/erpnext/erpnext/stock/doctype/item/item.js +51,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,Este artículo es una plantilla y no se puede utilizar en las transacciones. Atributos artículo se copiarán en las variantes menos que se establece 'No Copy'
|
||||
apps/erpnext/erpnext/config/hr.py +197,"Employee designation (e.g. CEO, Director etc.).","Cargo del empleado ( por ejemplo, director general, director , etc.)"
|
||||
@ -175,7 +175,7 @@ DocType: BOM Item,Basic Rate (Company Currency),Precio Base (Moneda Local)
|
||||
DocType: Purchase Receipt,Other Details,Otros Datos
|
||||
DocType: Account,Accounts,Contabilidad
|
||||
DocType: Account,Expenses Included In Valuation,Gastos dentro de la valoración
|
||||
DocType: Employee,Provide email id registered in company,Proporcionar correo electrónico de identificación registrado en la compañía
|
||||
DocType: Employee,Provide Email Address registered in company,Proporcionar correo electrónico de identificación registrado en la compañía
|
||||
DocType: Hub Settings,Seller City,Ciudad del vendedor
|
||||
DocType: Email Digest,Next email will be sent on:,Siguiente correo electrónico será enviado el:
|
||||
DocType: Offer Letter Term,Offer Letter Term,Término de carta de oferta
|
||||
@ -1024,7 +1024,7 @@ apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +58,Expected Del
|
||||
DocType: Maintenance Visit Purpose,Maintenance Visit Purpose,Propósito de la Visita de Mantenimiento
|
||||
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Libro Mayor
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Ver ofertas
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Identificación del E-mail debe ser único , ya existe para {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Identificación del E-mail debe ser único , ya existe para {0}"
|
||||
,Itemwise Recommended Reorder Level,Nivel recomendado de re-ordenamiento de producto
|
||||
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +93,Warehouse not found in the system,Almacén no se encuentra en el sistema
|
||||
DocType: Quality Inspection Reading,Quality Inspection Reading,Lectura de Inspección de Calidad
|
||||
@ -1159,7 +1159,7 @@ DocType: Purchase Taxes and Charges,On Previous Row Amount,En la Fila Anterior d
|
||||
DocType: POS Profile,POS Profile,Perfiles POS
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +31,Net pay cannot be negative,Salario neto no puede ser negativo
|
||||
DocType: Item,Item Tax,Impuesto del artículo
|
||||
DocType: Expense Claim,Employees Email Id,Empleados Email Id
|
||||
DocType: Expense Claim,Employees Email Address,Empleados Email Address
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Pasivo Corriente
|
||||
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +60,Actual Qty is mandatory,Cantidad actual es obligatoria
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +139,Credit Card,Tarjeta de Crédito
|
||||
|
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,Costo de arrendamiento
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Después cantidad Depreciación
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Calendario de Eventos Próximos
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Por favor seleccione el mes y el año
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Introduzca los IDs de correo electrónico separados por comas, la factura será enviada automáticamente en una fecha determinada"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Introduzca los IDs de correo electrónico separados por comas, la factura será enviada automáticamente en una fecha determinada"
|
||||
DocType: Employee,Company Email,Email de la compañía
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Importe debitado con la divisa
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Transacciones de Banco/Efectivo contra Empresa o transferencia interna
|
||||
@ -684,7 +684,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Salario previsualización de deslizamiento
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Cuenta {0} se ha introducido varias veces
|
||||
DocType: Account,Expenses Included In Valuation,GASTOS DE VALORACIÓN
|
||||
DocType: Employee,Provide email id registered in company,Proporcione el correo electrónico registrado en la compañía
|
||||
DocType: Employee,Provide Email Address registered in company,Proporcione el correo electrónico registrado en la compañía
|
||||
DocType: Hub Settings,Seller City,Ciudad de vendedor
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,"Por favor, seleccione un grupo de alumnos"
|
||||
,Absent Student Report,Informe del alumno ausente
|
||||
@ -1127,7 +1127,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Azul
|
||||
DocType: Purchase Invoice,Is Return,Es un retorno
|
||||
DocType: Price List Country,Price List Country,Lista de precios del país
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Por favor ajuste ID de correo electrónico
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Por favor ajuste ID de correo electrónico
|
||||
DocType: Item,UOMs,UdM
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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
|
||||
@ -2216,7 +2216,7 @@ DocType: Fiscal Year,Year End Date,Fecha de Finalización de Año
|
||||
DocType: Task Depends On,Task Depends On,Tarea depende de
|
||||
DocType: Supplier Quotation,Opportunity,Oportunidad
|
||||
,Completed Production Orders,Órdenes de producción (OP) completadas
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Fila {0}: Por proveedor se requiere {0} id de correo electrónico para enviar correo electrónico
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Fila {0}: Por proveedor se requiere {0} id de correo electrónico para enviar correo electrónico
|
||||
DocType: Operation,Default Workstation,Estación de Trabajo por defecto
|
||||
DocType: Notification Control,Expense Claim Approved Message,Mensaje de reembolso de gastos
|
||||
DocType: Payment Entry,Deductions or Loss,Deducciones o Pérdida
|
||||
@ -3693,7 +3693,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Ajuste de ganancia del intercamb
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Período de aplicación no puede ser a través de dos registros alocation
|
||||
DocType: Item Group,Default Expense Account,Cuenta de gastos por defecto
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Lote estudiante o Horario del curso es obligatoria
|
||||
DocType: Student,Student Email ID,Estudiante ID de correo electrónico
|
||||
DocType: Student,Student Email Address,Estudiante ID de correo electrónico
|
||||
DocType: Employee,Notice (days),Aviso (días)
|
||||
DocType: Tax Rule,Sales Tax Template,Plantilla de impuesto sobre ventas
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Seleccione artículos para ahorrar la factura
|
||||
@ -3844,7 +3844,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Bal
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Ver iniciativas
|
||||
DocType: Program Enrollment Tool,New Program,nuevo Programa
|
||||
DocType: Item Attribute Value,Attribute Value,Valor del Atributo
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","El Email debe ser único, {0} ya existe"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","El Email debe ser único, {0} ya existe"
|
||||
,Itemwise Recommended Reorder Level,Nivel recomendado de reabastecimiento de producto
|
||||
DocType: Salary Detail,Salary Detail,Detalle de sueldos
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,"Por favor, seleccione primero {0}"
|
||||
@ -4046,7 +4046,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Actividad del proyecto / tarea.
|
||||
DocType: Vehicle Log,Refuelling Details,Detalles de repostaje
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Generar nóminas salariales
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Por siguiente Contacto no puede ser la misma que la de plomo correo electrónico de identificación
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Por siguiente Contacto no puede ser la misma que la de plomo correo electrónico de identificación
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","'Compras' debe ser seleccionada, si la opción: 'Aplicable para' esta seleccionado como {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,El descuento debe ser inferior a 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,tasa de compra de última no encontrado
|
||||
@ -4342,7 +4342,7 @@ DocType: Purchase Order,Advance Paid,Pago Anticipado
|
||||
DocType: Item,Item Tax,Impuestos del producto
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Materiales de Proveedor
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Impuestos Especiales Factura
|
||||
DocType: Expense Claim,Employees Email Id,ID de Email de empleados
|
||||
DocType: Expense Claim,Employees Email Address,ID de Email de empleados
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Asistencia Marcada
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Pasivo circulante
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Enviar mensajes SMS masivos a sus contactos
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,Üürile Cost
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Summa pärast amortisatsiooni
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Sündmuste kalender
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Palun valige kuu ja aasta
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Sisesta e-posti id komadega eraldatult, arve saadetakse automaatselt teatud kuupäeva"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Sisesta e-posti id komadega eraldatult, arve saadetakse automaatselt teatud kuupäeva"
|
||||
DocType: Employee,Company Email,Ettevõte Email
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Deebetkaart Summa konto Valuuta
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Bank / Raha vastu tehing poole või sisene ülekanne
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Eelvaade palgatõend
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Konto {0} on sisestatud mitu korda
|
||||
DocType: Account,Expenses Included In Valuation,Kulud sisalduvad Hindamine
|
||||
DocType: Employee,Provide email id registered in company,Pakkuda email id registreeritud ettevõte
|
||||
DocType: Employee,Provide Email Address registered in company,Pakkuda Email Address registreeritud ettevõte
|
||||
DocType: Hub Settings,Seller City,Müüja City
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Palun valige Student Group
|
||||
,Absent Student Report,Puudub Student Report
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Blue
|
||||
DocType: Purchase Invoice,Is Return,Kas Tagasi
|
||||
DocType: Price List Country,Price List Country,Hinnakiri Riik
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Palun määra Email ID
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Palun määra Email Address
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,Aasta lõpp kuupäev
|
||||
DocType: Task Depends On,Task Depends On,Task sõltub
|
||||
DocType: Supplier Quotation,Opportunity,Võimalus
|
||||
,Completed Production Orders,Valmistoodanguladu Tellimused
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Rida {0}: tarnija {0} e-posti id on vaja saata e-posti
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Rida {0}: tarnija {0} e-posti id on vaja saata e-posti
|
||||
DocType: Operation,Default Workstation,Vaikimisi Workstation
|
||||
DocType: Notification Control,Expense Claim Approved Message,Kuluhüvitussüsteeme Kinnitatud Message
|
||||
DocType: Payment Entry,Deductions or Loss,Mahaarvamisi või kaotus
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Määra Exchange kasum / kahjum
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Taotlemise tähtaeg ei või olla üle kahe alocation arvestust
|
||||
DocType: Item Group,Default Expense Account,Vaikimisi ärikohtumisteks
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Student Partii või Kursuse ajakava on kohustuslik
|
||||
DocType: Student,Student Email ID,Student E-ID
|
||||
DocType: Student,Student Email Address,Student E-ID
|
||||
DocType: Employee,Notice (days),Teade (päeva)
|
||||
DocType: Tax Rule,Sales Tax Template,Sales Tax Mall
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,"Valige objekt, et salvestada arve"
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Gen
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Vaata Leads
|
||||
DocType: Program Enrollment Tool,New Program,New Program
|
||||
DocType: Item Attribute Value,Attribute Value,Omadus Value
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Email id peab olema unikaalne, juba olemas {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Email Address peab olema unikaalne, juba olemas {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise Soovitatav Reorder Level
|
||||
DocType: Salary Detail,Salary Detail,palk Detail
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Palun valige {0} Esimene
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Projekti tegevus / ülesanne.
|
||||
DocType: Vehicle Log,Refuelling Details,tankimine detailid
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Loo palgalehed
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Järgmine kontakteeruda ei saa olla sama Lead E id
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Järgmine kontakteeruda ei saa olla sama Lead E id
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Ostmine tuleb kontrollida, kui need on kohaldatavad valitakse {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Soodustus peab olema väiksem kui 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Viimati ostu määr ei leitud
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,Advance Paide
|
||||
DocType: Item,Item Tax,Punkt Maksu-
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Materjal Tarnija
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Aktsiisi Arve
|
||||
DocType: Expense Claim,Employees Email Id,Töötajad Post Id
|
||||
DocType: Expense Claim,Employees Email Address,Töötajad Post Id
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Märkimisväärne osavõtt
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Lühiajalised kohustused
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Saada mass SMS oma kontaktid
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,اجاره هزینه
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,مقدار پس از استهلاک
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,تقویم رویدادهای آینده
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,لطفا ماه و سال را انتخاب کنید
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date",را وارد کنید ایمیل ID با کاما جدا شده، فاکتور به صورت خودکار در تاریخ خاص فرستاده
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date",را وارد کنید ایمیل ID با کاما جدا شده، فاکتور به صورت خودکار در تاریخ خاص فرستاده
|
||||
DocType: Employee,Company Email,شرکت پست الکترونیک
|
||||
DocType: GL Entry,Debit Amount in Account Currency,مقدار بدهی در حساب ارز
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,معاملات بانک / پول نقد در برابر حزب و یا برای انتقال داخلی
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,پیش نمایش لغزش حقوق
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,حساب {0} وارد شده است چندین بار
|
||||
DocType: Account,Expenses Included In Valuation,هزینه های موجود در ارزش گذاری
|
||||
DocType: Employee,Provide email id registered in company,ارائه ایمیل شناسه ثبت شده در شرکت
|
||||
DocType: Employee,Provide Email Address registered in company,ارائه ایمیل شناسه ثبت شده در شرکت
|
||||
DocType: Hub Settings,Seller City,فروشنده شهر
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,لطفا یک گروه دانشجویی را انتخاب کنید
|
||||
,Absent Student Report,وجود ندارد گزارش دانشجو
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,ابی
|
||||
DocType: Purchase Invoice,Is Return,آیا بازگشت
|
||||
DocType: Price List Country,Price List Country,لیست قیمت کشور
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,لطفا ایمیل ID تنظیم
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,لطفا ایمیل ID تنظیم
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,کد مورد می تواند برای شماره سریال نمی تواند تغییر
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,سال پایان تاریخ
|
||||
DocType: Task Depends On,Task Depends On,کار بستگی به
|
||||
DocType: Supplier Quotation,Opportunity,فرصت
|
||||
,Completed Production Orders,سفارشات تولید تکمیل
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,ردیف {0}: عرضه کننده {0} شناسه ایمیل مورد نیاز برای ارسال ایمیل
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,ردیف {0}: عرضه کننده {0} شناسه ایمیل مورد نیاز برای ارسال ایمیل
|
||||
DocType: Operation,Default Workstation,به طور پیش فرض ایستگاه کاری
|
||||
DocType: Notification Control,Expense Claim Approved Message,پیام ادعای هزینه تایید
|
||||
DocType: Payment Entry,Deductions or Loss,کسر یا از دست دادن
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,تنظیم اوراق بهادا
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,دوره نرم افزار نمی تواند در سراسر دو رکورد alocation شود
|
||||
DocType: Item Group,Default Expense Account,حساب پیش فرض هزینه
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,دسته ای دانش آموز و یا برنامه های آموزشی الزامی است
|
||||
DocType: Student,Student Email ID,دانشجو ID ایمیل
|
||||
DocType: Student,Student Email Address,دانشجو ID ایمیل
|
||||
DocType: Employee,Notice (days),مقررات (روز)
|
||||
DocType: Tax Rule,Sales Tax Template,قالب مالیات بر فروش
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,انتخاب آیتم ها برای صرفه جویی در فاکتور
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,ل
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,مشخصات آگهی
|
||||
DocType: Program Enrollment Tool,New Program,برنامه جدید
|
||||
DocType: Item Attribute Value,Attribute Value,موجودیت مقدار
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}",شناسه ایمیل باید منحصر به فرد، در حال حاضر وجود دارد برای {0}
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}",شناسه ایمیل باید منحصر به فرد، در حال حاضر وجود دارد برای {0}
|
||||
,Itemwise Recommended Reorder Level,Itemwise توصیه ترتیب مجدد سطح
|
||||
DocType: Salary Detail,Salary Detail,جزئیات حقوق و دستمزد
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,لطفا انتخاب کنید {0} برای اولین بار
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,فعالیت پروژه / وظیفه.
|
||||
DocType: Vehicle Log,Refuelling Details,اطلاعات سوختگیری
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,تولید حقوق و دستمزد ورقه
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,بعد تماس با نمی تواند مانند شناسه ایمیل سرب
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,بعد تماس با نمی تواند مانند شناسه ایمیل سرب
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}",خرید باید بررسی شود، اگر قابل استفاده برای عنوان انتخاب شده {0}
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,تخفیف باید کمتر از 100 باشد
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,آخرین نرخ خرید یافت نشد
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,پیش پرداخت
|
||||
DocType: Item,Item Tax,مالیات مورد
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,مواد به کننده
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,فاکتور مالیات کالاهای داخلی
|
||||
DocType: Expense Claim,Employees Email Id,کارکنان پست الکترونیکی شناسه
|
||||
DocType: Expense Claim,Employees Email Address,کارکنان پست الکترونیکی شناسه
|
||||
DocType: Employee Attendance Tool,Marked Attendance,حضور و غیاب مشخص شده
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,بدهی های جاری
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,ارسال اس ام اس انبوه به مخاطبین خود
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,vuokrakustannukset
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Määrä jälkeen Poistot
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Tulevia kalenteritapahtumia
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Ole hyvä ja valitse kuukausi ja vuosi
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","syötä sähköpostiosoitteet pilkulla erotettuina, lasku lähetetään automaattisesti määritettynä päivänä"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","syötä sähköpostiosoitteet pilkulla erotettuina, lasku lähetetään automaattisesti määritettynä päivänä"
|
||||
DocType: Employee,Company Email,yrityksen sähköposti
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Debit Määrä tilini Valuutta
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Pankki / Cash liiketoimien vastaan osapuolelle tai sisäinen siirto
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Preview Palkka Slip
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Tili {0} on syötetty useita kertoja
|
||||
DocType: Account,Expenses Included In Valuation,"kulut, jotka sisältyy arvoon"
|
||||
DocType: Employee,Provide email id registered in company,Tarkista sähköpostitunnuksen rekisteröinti yritykselle
|
||||
DocType: Employee,Provide Email Address registered in company,Tarkista sähköpostitunnuksen rekisteröinti yritykselle
|
||||
DocType: Hub Settings,Seller City,Myyjä kaupunki
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Valitse Student Group
|
||||
,Absent Student Report,Absent Student Report
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,sininen
|
||||
DocType: Purchase Invoice,Is Return,on palautus
|
||||
DocType: Price List Country,Price List Country,Hinnasto Maa
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Aseta sähköpostiosoite
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Aseta sähköpostiosoite
|
||||
DocType: Item,UOMs,Mittayksiköt
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,Vuoden viimeinen päivä
|
||||
DocType: Task Depends On,Task Depends On,Tehtävä riippuu
|
||||
DocType: Supplier Quotation,Opportunity,Myyntimahdollisuus
|
||||
,Completed Production Orders,valmiit tuotannon tilaukset
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Rivi {0}: Sähköpostin lähettäminen toimittajalle {0} vaatii sähköpostiosoitteen
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Rivi {0}: Sähköpostin lähettäminen toimittajalle {0} vaatii sähköpostiosoitteen
|
||||
DocType: Operation,Default Workstation,oletus työpiste
|
||||
DocType: Notification Control,Expense Claim Approved Message,viesti kulukorvauksen hyväksymisestä
|
||||
DocType: Payment Entry,Deductions or Loss,Vähennykset tai Loss
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Aseta Exchange voitto / tappio
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Hakuaika ei voi yli kaksi alocation kirjaa
|
||||
DocType: Item Group,Default Expense Account,oletus kulutili
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Opiskelija Erä tai Course aikataulu on pakollinen
|
||||
DocType: Student,Student Email ID,Opiskelijan Sähköposti ID
|
||||
DocType: Student,Student Email Address,Opiskelijan Sähköposti ID
|
||||
DocType: Employee,Notice (days),Ilmoitus (päivää)
|
||||
DocType: Tax Rule,Sales Tax Template,Sales Tax Malline
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Valitse kohteita tallentaa laskun
|
||||
@ -3794,7 +3794,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Pä
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Näytä vihjeet
|
||||
DocType: Program Enrollment Tool,New Program,uusi ohjelma
|
||||
DocType: Item Attribute Value,Attribute Value,"tuntomerkki, arvo"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","sähköpostitunnus tulee olla uniikki, tunnus on jo olemassa {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","sähköpostitunnus tulee olla uniikki, tunnus on jo olemassa {0}"
|
||||
,Itemwise Recommended Reorder Level,Tuotekohtainen suositeltu täydennystilaustaso
|
||||
DocType: Salary Detail,Salary Detail,Palkka Detail
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Ole hyvä ja valitse {0} Ensimmäinen
|
||||
@ -3985,7 +3985,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Tehtävä
|
||||
DocType: Vehicle Log,Refuelling Details,Tankkaaminen tiedot
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Tuota palkkalaskelmat
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Seuraava Ota By voi olla sama kuin Lead sähköposti id
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Seuraava Ota By voi olla sama kuin Lead sähköposti id
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}",osto tulee täpätä mikälisovellus on valittu {0}:na
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,alennus on oltava alle 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Viimeisin osto korko ei löytynyt
|
||||
@ -4280,7 +4280,7 @@ DocType: Purchase Order,Advance Paid,ennakkoon maksettu
|
||||
DocType: Item,Item Tax,Tuotteen vero
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Materiaalin Toimittaja
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Valmistevero Lasku
|
||||
DocType: Expense Claim,Employees Email Id,työntekijän sähköpostiosoite
|
||||
DocType: Expense Claim,Employees Email Address,työntekijän sähköpostiosoite
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Merkitty Läsnäolo
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,lyhytaikaiset vastattavat
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Lähetä massatekstiviesti yhteystiedoillesi
|
||||
|
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,Coût Location
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Montant Après amortissement
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Prochains événements de calendrier
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,S'il vous plaît sélectionner le mois et l'année
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Entrez Identifiant courriels séparé par des virgules, la facture sera envoyée automatiquement à la date particulière"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Entrez Identifiant courriels séparé par des virgules, la facture sera envoyée automatiquement à la date particulière"
|
||||
DocType: Employee,Company Email,E-mail société
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Montant de débit en compte Devises
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,transactions Banque / Trésorerie contre partie ou pour le transfert interne
|
||||
@ -685,7 +685,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Aperçu Salaire Slip
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Le compte {0} a été entré plusieurs fois
|
||||
DocType: Account,Expenses Included In Valuation,Frais inclus dans la valorisation
|
||||
DocType: Employee,Provide email id registered in company,Fournir E-mail enregistrée dans la société
|
||||
DocType: Employee,Provide Email Address registered in company,Fournir E-mail enregistrée dans la société
|
||||
DocType: Hub Settings,Seller City,Ville du vendeur
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,S'il vous plaît sélectionner un groupe d'étudiants
|
||||
,Absent Student Report,Absent Rapport étudiant
|
||||
@ -1128,7 +1128,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Bleu
|
||||
DocType: Purchase Invoice,Is Return,Est de retour
|
||||
DocType: Price List Country,Price List Country,Pays de la Liste des Prix
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,S'il vous plaît définissez ID Email
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,S'il vous plaît définissez ID Email
|
||||
DocType: Item,UOMs,Unités de mesure
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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
|
||||
@ -2219,7 +2219,7 @@ DocType: Fiscal Year,Year End Date,Date de Fin de l'exercice
|
||||
DocType: Task Depends On,Task Depends On,Tâches dépendent de
|
||||
DocType: Supplier Quotation,Opportunity,Occasion
|
||||
,Completed Production Orders,Ordre de production terminés
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Row {0}: Pour le fournisseur {0} email id est nécessaire pour envoyer un courriel
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Row {0}: Pour le fournisseur {0} Email Address est nécessaire pour envoyer un courriel
|
||||
DocType: Operation,Default Workstation,Station de travail par défaut
|
||||
DocType: Notification Control,Expense Claim Approved Message,Note de Frais Approuvée message
|
||||
DocType: Payment Entry,Deductions or Loss,Déductions ou perte
|
||||
@ -3698,7 +3698,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Set de change Gain / Perte
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Période d'application ne peut pas être sur deux dossiers de alocation
|
||||
DocType: Item Group,Default Expense Account,Compte de dépenses
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Batch étudiant ou Horaire de cours est obligatoire
|
||||
DocType: Student,Student Email ID,Étudiant Email ID
|
||||
DocType: Student,Student Email Address,Étudiant Email Address
|
||||
DocType: Employee,Notice (days),Avis ( jours )
|
||||
DocType: Tax Rule,Sales Tax Template,Modèle de la taxe de vente
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Sélectionnez les articles pour sauvegarder la facture
|
||||
@ -3849,7 +3849,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Gra
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Voir Prospects
|
||||
DocType: Program Enrollment Tool,New Program,Nouveau programme
|
||||
DocType: Item Attribute Value,Attribute Value,Attribut Valeur
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","ID E-mail doit être unique , existe déjà pour {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","ID E-mail doit être unique , existe déjà pour {0}"
|
||||
,Itemwise Recommended Reorder Level,Seuil de renouvellement des commandes (par Article)
|
||||
DocType: Salary Detail,Salary Detail,Salaire Détail
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,S'il vous plaît sélectionnez {0} en premier
|
||||
@ -4051,7 +4051,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Activité du projet / tâche.
|
||||
DocType: Vehicle Log,Refuelling Details,Refuelling Détails
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Générer les bulletins de salaire
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Suivant Contactez En ne peut pas être le même que le plomb Email id
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Suivant Contactez En ne peut pas être le même que le plomb Email Address
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Achat doit être vérifiée, si pour Applicable est sélectionné comme {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,La remise doit être inférieure à 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Dernier Taux d'achat introuvable
|
||||
@ -4347,7 +4347,7 @@ DocType: Purchase Order,Advance Paid,Acompte payée
|
||||
DocType: Item,Item Tax,Taxe sur l'Article
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Matériel au fournisseur
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Accise facture
|
||||
DocType: Expense Claim,Employees Email Id,Identifiants E-mail des employés
|
||||
DocType: Expense Claim,Employees Email Address,Identifiants E-mail des employés
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Présence marquée
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Dette courante
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Envoyer un SMS en masse à vos contacts
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,ભાડું ખર્ચ
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,રકમ અવમૂલ્યન પછી
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,આગામી કેલેન્ડર ઘટનાઓ
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,મહિનો અને વર્ષ પસંદ કરો
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","અલ્પવિરામ દ્વારા અલગ દાખલ ઇમેઇલ ને, ભરતિયું ચોક્કસ તારીખ પર આપોઆપ મોકલવામાં આવશે"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","અલ્પવિરામ દ્વારા અલગ દાખલ ઇમેઇલ ને, ભરતિયું ચોક્કસ તારીખ પર આપોઆપ મોકલવામાં આવશે"
|
||||
DocType: Employee,Company Email,કંપની ઇમેઇલ
|
||||
DocType: GL Entry,Debit Amount in Account Currency,એકાઉન્ટ કરન્સી ડેબિટ રકમ
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,બેન્ક / રોકડ પક્ષ સામે અથવા આંતરિક ટ્રાન્સફર માટે વ્યવહારો
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,પૂર્વદર્શન પગાર કાપલી
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,એકાઉન્ટ {0} ઘણી વખત દાખલ કરવામાં આવી છે
|
||||
DocType: Account,Expenses Included In Valuation,ખર્ચ વેલ્યુએશનમાં સમાવાયેલ
|
||||
DocType: Employee,Provide email id registered in company,કંપની રજીસ્ટર ઇમેઇલ ને પૂરી પાડો
|
||||
DocType: Employee,Provide Email Address registered in company,કંપની રજીસ્ટર ઇમેઇલ ને પૂરી પાડો
|
||||
DocType: Hub Settings,Seller City,વિક્રેતા સિટી
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,એક વિદ્યાર્થી જૂથ પસંદ કરો
|
||||
,Absent Student Report,ગેરહાજર વિદ્યાર્થી રિપોર્ટ
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,બ્લુ
|
||||
DocType: Purchase Invoice,Is Return,વળતર છે
|
||||
DocType: Price List Country,Price List Country,ભાવ યાદી દેશ
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,ઇમેઇલ ને સુયોજિત કરો
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,ઇમેઇલ ને સુયોજિત કરો
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,વસ્તુ કોડ સીરીયલ નંબર માટે બદલી શકાતું નથી
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,વર્ષ અંતે તારીખ
|
||||
DocType: Task Depends On,Task Depends On,કાર્ય પર આધાર રાખે છે
|
||||
DocType: Supplier Quotation,Opportunity,તક
|
||||
,Completed Production Orders,પૂર્ણ ઉત્પાદન ઓર્ડર્સ
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,રો {0}: સપ્લાયર માટે {0} ઇમેઇલ ID ને ઇમેઇલ મોકલવા માટે જરૂરી છે
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,રો {0}: સપ્લાયર માટે {0} ઇમેઇલ ID ને ઇમેઇલ મોકલવા માટે જરૂરી છે
|
||||
DocType: Operation,Default Workstation,મૂળભૂત વર્કસ્ટેશન
|
||||
DocType: Notification Control,Expense Claim Approved Message,ખર્ચ દાવો મંજૂર સંદેશ
|
||||
DocType: Payment Entry,Deductions or Loss,કપાત અથવા નુકસાન
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,સેટ એક્સચેન
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,એપ્લિકેશન સમયગાળા બે alocation રેકોર્ડ તરફ ન હોઈ શકે
|
||||
DocType: Item Group,Default Expense Account,મૂળભૂત ખર્ચ એકાઉન્ટ
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,વિદ્યાર્થી બેચ અથવા કોર્સ શેડ્યૂલ ફરજિયાત છે
|
||||
DocType: Student,Student Email ID,વિદ્યાર્થી ઇમેઇલ ને
|
||||
DocType: Student,Student Email Address,વિદ્યાર્થી ઇમેઇલ ને
|
||||
DocType: Employee,Notice (days),સૂચના (દિવસ)
|
||||
DocType: Tax Rule,Sales Tax Template,સેલ્સ ટેક્સ ઢાંચો
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,ભરતિયું સેવ આઇટમ્સ પસંદ કરો
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,સ
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,જુઓ તરફ દોરી જાય છે
|
||||
DocType: Program Enrollment Tool,New Program,નવા કાર્યક્રમ
|
||||
DocType: Item Attribute Value,Attribute Value,લક્ષણની કિંમત
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","ઇમેઇલ ID ને પહેલાથી જ અસ્તિત્વમાં છે, અનન્ય હોવો જોઈએ {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","ઇમેઇલ ID ને પહેલાથી જ અસ્તિત્વમાં છે, અનન્ય હોવો જોઈએ {0}"
|
||||
,Itemwise Recommended Reorder Level,મુદ્દાવાર પુનઃક્રમાંકિત કરો સ્તર ભલામણ
|
||||
DocType: Salary Detail,Salary Detail,પગાર વિગતવાર
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,પ્રથમ {0} પસંદ કરો
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,પ્રોજેક્ટ પ્રવૃત્તિ / કાર્ય.
|
||||
DocType: Vehicle Log,Refuelling Details,Refuelling વિગતો
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,પગાર સ્લિપ બનાવો
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,આગામી સંપર્ક આગેવાની ઇમેઇલ આઈડી તરીકે જ ન હોઈ શકે
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,આગામી સંપર્ક આગેવાની ઇમેઇલ આઈડી તરીકે જ ન હોઈ શકે
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","માટે લાગુ તરીકે પસંદ કરેલ છે તે ખરીદી, ચકાસાયેલ જ હોવું જોઈએ {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,ડિસ્કાઉન્ટ કરતાં ઓછી 100 હોવી જ જોઈએ
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,છેલ્લા ખરીદી દર મળી નથી
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,આગોતરી ચુકવણી
|
||||
DocType: Item,Item Tax,વસ્તુ ટેક્સ
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,સપ્લાયર સામગ્રી
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,એક્સાઇઝ ભરતિયું
|
||||
DocType: Expense Claim,Employees Email Id,કર્મચારીઓ ઇમેઇલ આઈડી
|
||||
DocType: Expense Claim,Employees Email Address,કર્મચારીઓ ઇમેઇલ આઈડી
|
||||
DocType: Employee Attendance Tool,Marked Attendance,માર્કડ એટેન્ડન્સ
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,વર્તમાન જવાબદારીઓ
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,સામૂહિક એસએમએસ તમારા સંપર્કો મોકલો
|
||||
|
Can't render this file because it is too large.
|
@ -330,7 +330,7 @@ DocType: Student Applicant,Admitted,רישיון
|
||||
DocType: Workstation,Rent Cost,עלות השכרה
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,הסכום לאחר פחת
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,אנא בחר חודש והשנה
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","id הדוא""ל של הזן מופרד על ידי פסיקים, חשבונית תישלח באופן אוטומטי על תאריך מסוים"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","id הדוא""ל של הזן מופרד על ידי פסיקים, חשבונית תישלח באופן אוטומטי על תאריך מסוים"
|
||||
DocType: Employee,Company Email,"חברת דוא""ל"
|
||||
DocType: GL Entry,Debit Amount in Account Currency,סכום חיוב במטבע חשבון
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,עסקות בנק / מזומנים נגד מפלגה או עבור העברה פנימית
|
||||
@ -621,7 +621,7 @@ DocType: Purchase Receipt Item Supplied,Current Stock,מלאי נוכחי
|
||||
apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1} does not linked to Item {2},# שורה {0}: Asset {1} אינו קשור פריט {2}
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,חשבון {0} הוזן מספר פעמים
|
||||
DocType: Account,Expenses Included In Valuation,הוצאות שנכללו בהערכת שווי
|
||||
DocType: Employee,Provide email id registered in company,"לספק id הדוא""ל רשום בחברה"
|
||||
DocType: Employee,Provide Email Address registered in company,"לספק id הדוא""ל רשום בחברה"
|
||||
DocType: Hub Settings,Seller City,מוכר עיר
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,בחר סטודנטי קבוצה
|
||||
DocType: Email Digest,Next email will be sent on:,"הדוא""ל הבא יישלח על:"
|
||||
@ -1011,7 +1011,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,כחול
|
||||
DocType: Purchase Invoice,Is Return,האם חזרה
|
||||
DocType: Price List Country,Price List Country,מחיר מחירון מדינה
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,אנא הגדר מזהה דוא"ל
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,אנא הגדר מזהה דוא"ל
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,קוד פריט לא ניתן לשנות למס 'סידורי
|
||||
@ -2005,7 +2005,7 @@ DocType: Fiscal Year,Year End Date,תאריך סיום שנה
|
||||
DocType: Task Depends On,Task Depends On,המשימה תלויה ב
|
||||
DocType: Supplier Quotation,Opportunity,הזדמנות
|
||||
,Completed Production Orders,הזמנות ייצור שהושלמו
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,שורת {0}: לקבלת ספק {0} id הדוא"ל נדרש כדי לשלוח דואר אלקטרוני
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,שורת {0}: לקבלת ספק {0} id הדוא"ל נדרש כדי לשלוח דואר אלקטרוני
|
||||
DocType: Operation,Default Workstation,Workstation ברירת המחדל
|
||||
DocType: Notification Control,Expense Claim Approved Message,הודעת תביעת הוצאות שאושרה
|
||||
DocType: Payment Entry,Deductions or Loss,ניכויים או הפסד
|
||||
@ -3327,7 +3327,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,הגדר Exchange רווח / ה
|
||||
,Cash Flow,תזרים מזומנים
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,תקופת יישום לא יכולה להיות על פני שתי רשומות alocation
|
||||
DocType: Item Group,Default Expense Account,חשבון הוצאות ברירת המחדל
|
||||
DocType: Student,Student Email ID,מזהה אימייל סטודנטים
|
||||
DocType: Student,Student Email Address,מזהה אימייל סטודנטים
|
||||
DocType: Employee,Notice (days),הודעה (ימים)
|
||||
DocType: Tax Rule,Sales Tax Template,תבנית מס מכירות
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,בחר פריטים כדי לשמור את החשבונית
|
||||
@ -3463,7 +3463,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,ב
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,צפייה בלידים
|
||||
DocType: Program Enrollment Tool,New Program,תוכנית חדשה
|
||||
DocType: Item Attribute Value,Attribute Value,תכונה ערך
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","id דוא""ל חייב להיות ייחודי, כבר קיים עבור {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","id דוא""ל חייב להיות ייחודי, כבר קיים עבור {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise מומלץ להזמנה חוזרת רמה
|
||||
DocType: Salary Detail,Salary Detail,פרטי שכר
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,אנא בחר {0} ראשון
|
||||
@ -3907,7 +3907,7 @@ DocType: Purchase Order,Advance Paid,מראש בתשלום
|
||||
DocType: Item,Item Tax,מס פריט
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,חומר לספקים
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,בלו חשבונית
|
||||
DocType: Expense Claim,Employees Email Id,"דוא""ל עובדי זיהוי"
|
||||
DocType: Expense Claim,Employees Email Address,"דוא""ל עובדי זיהוי"
|
||||
DocType: Employee Attendance Tool,Marked Attendance,נוכחות בולטת
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,התחייבויות שוטפות
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,שלח SMS המוני לאנשי הקשר שלך
|
||||
|
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,बाइक किराए मूल्य
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,राशि मूल्यह्रास के बाद
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,आगामी कैलेंडर घटनाओं
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,माह और वर्ष का चयन करें
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","अल्पविराम के द्वारा अलग ईमेल आईडी दर्ज करें, चालान विशेष तिथि पर स्वचालित रूप से भेज दिया जाएगा"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","अल्पविराम के द्वारा अलग ईमेल आईडी दर्ज करें, चालान विशेष तिथि पर स्वचालित रूप से भेज दिया जाएगा"
|
||||
DocType: Employee,Company Email,कंपनी ईमेल
|
||||
DocType: GL Entry,Debit Amount in Account Currency,खाते की मुद्रा में डेबिट राशि
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,बैंक / नकद पार्टी के खिलाफ या आंतरिक स्थानांतरण के लिए लेनदेन
|
||||
@ -685,7 +685,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,पूर्वावलोकन वेतन पर्ची
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,खाता {0} कई बार दर्ज किया गया है
|
||||
DocType: Account,Expenses Included In Valuation,व्यय मूल्यांकन में शामिल
|
||||
DocType: Employee,Provide email id registered in company,कंपनी में पंजीकृत ईमेल आईडी प्रदान
|
||||
DocType: Employee,Provide Email Address registered in company,कंपनी में पंजीकृत ईमेल आईडी प्रदान
|
||||
DocType: Hub Settings,Seller City,विक्रेता सिटी
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,एक छात्र समूह का चयन करें
|
||||
,Absent Student Report,अनुपस्थित छात्र की रिपोर्ट
|
||||
@ -1128,7 +1128,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,नीला
|
||||
DocType: Purchase Invoice,Is Return,वापसी है
|
||||
DocType: Price List Country,Price List Country,मूल्य सूची देश
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,ईमेल आईडी सेट करें
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,ईमेल आईडी सेट करें
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,मद कोड सीरियल नंबर के लिए बदला नहीं जा सकता
|
||||
@ -2219,7 +2219,7 @@ DocType: Fiscal Year,Year End Date,वर्षांत तिथि
|
||||
DocType: Task Depends On,Task Depends On,काम पर निर्भर करता है
|
||||
DocType: Supplier Quotation,Opportunity,अवसर
|
||||
,Completed Production Orders,पूरे किए उत्पादन के आदेश
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,पंक्ति {0}: आपूर्तिकर्ता के लिए {0} ईमेल आईडी ईमेल भेजने के लिए आवश्यक है
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,पंक्ति {0}: आपूर्तिकर्ता के लिए {0} ईमेल आईडी ईमेल भेजने के लिए आवश्यक है
|
||||
DocType: Operation,Default Workstation,मूलभूत वर्कस्टेशन
|
||||
DocType: Notification Control,Expense Claim Approved Message,व्यय दावा संदेश स्वीकृत
|
||||
DocType: Payment Entry,Deductions or Loss,कटौती या घटाने
|
||||
@ -3698,7 +3698,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,सेट मुद्रा ल
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,आवेदन की अवधि दो alocation अभिलेखों के पार नहीं किया जा सकता
|
||||
DocType: Item Group,Default Expense Account,डिफ़ॉल्ट व्यय खाते
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,छात्र बैच या पाठ्यक्रम अनुसूची अनिवार्य है
|
||||
DocType: Student,Student Email ID,छात्र ईमेल आईडी
|
||||
DocType: Student,Student Email Address,छात्र ईमेल आईडी
|
||||
DocType: Employee,Notice (days),सूचना (दिन)
|
||||
DocType: Tax Rule,Sales Tax Template,सेल्स टैक्स खाका
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,चालान बचाने के लिए आइटम का चयन करें
|
||||
@ -3849,7 +3849,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,स
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,देखें बिक्रीसूत्र
|
||||
DocType: Program Enrollment Tool,New Program,नए कार्यक्रम
|
||||
DocType: Item Attribute Value,Attribute Value,मान बताइए
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","ईमेल आईडी अद्वितीय होना चाहिए , पहले से ही मौजूद है {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","ईमेल आईडी अद्वितीय होना चाहिए , पहले से ही मौजूद है {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise पुनःक्रमित स्तर की सिफारिश की
|
||||
DocType: Salary Detail,Salary Detail,वेतन विस्तार
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,पहला {0} का चयन करें
|
||||
@ -4051,7 +4051,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,परियोजना / कार्य कार्य.
|
||||
DocType: Vehicle Log,Refuelling Details,ईंधन भराई विवरण
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,वेतन स्लिप्स उत्पन्न
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,अगले संपर्क के द्वारा सीसा ईमेल आईडी के रूप में ही नहीं किया जा सकता
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,अगले संपर्क के द्वारा सीसा ईमेल आईडी के रूप में ही नहीं किया जा सकता
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","लागू करने के लिए के रूप में चुना जाता है तो खरीदना, जाँच की जानी चाहिए {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,सबसे कम से कम 100 होना चाहिए
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,अंतिम खरीद दर नहीं मिला
|
||||
@ -4347,7 +4347,7 @@ DocType: Purchase Order,Advance Paid,अग्रिम भुगतान
|
||||
DocType: Item,Item Tax,आइटम टैक्स
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,प्रदायक के लिए सामग्री
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,आबकारी चालान
|
||||
DocType: Expense Claim,Employees Email Id,ईमेल आईडी कर्मचारी
|
||||
DocType: Expense Claim,Employees Email Address,ईमेल आईडी कर्मचारी
|
||||
DocType: Employee Attendance Tool,Marked Attendance,उल्लेखनीय उपस्थिति
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,वर्तमान देयताएं
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,अपने संपर्कों के लिए बड़े पैमाने पर एसएमएस भेजें
|
||||
|
Can't render this file because it is too large.
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,Rent cost
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Iznos nakon amortizacije
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Nadolazeći Kalendar događanja
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Molimo odaberite mjesec i godinu
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Unesite e-mail ID odvojena zarezima, račun će automatski biti poslan na određeni datum"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Unesite e-mail ID odvojena zarezima, račun će automatski biti poslan na određeni datum"
|
||||
DocType: Employee,Company Email,tvrtka E-mail
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Debitna Iznos u valuti računa
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Banka / Novac transakcije protiv stranke ili za internog transfera
|
||||
@ -685,7 +685,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Pregled Plaća proklizavanja
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Račun {0} unesen više puta
|
||||
DocType: Account,Expenses Included In Valuation,Troškovi uključeni u vrednovanje
|
||||
DocType: Employee,Provide email id registered in company,Osigurati e id registriran u tvrtki
|
||||
DocType: Employee,Provide Email Address registered in company,Osigurati e id registriran u tvrtki
|
||||
DocType: Hub Settings,Seller City,Prodavač Grad
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Odaberite grupe studenata
|
||||
,Absent Student Report,Odsutni Student Report
|
||||
@ -1128,7 +1128,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Plava
|
||||
DocType: Purchase Invoice,Is Return,Je li povratak
|
||||
DocType: Price List Country,Price List Country,Država cjenika
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Molimo postavite e-ID
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Molimo postavite e-ID
|
||||
DocType: Item,UOMs,J. MJ.
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.
|
||||
@ -2219,7 +2219,7 @@ DocType: Fiscal Year,Year End Date,Završni datum godine
|
||||
DocType: Task Depends On,Task Depends On,Zadatak ovisi o
|
||||
DocType: Supplier Quotation,Opportunity,Prilika
|
||||
,Completed Production Orders,Završeni Radni nalozi
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Red {0}: Za dobavljača {0} email id potrebna za slanje e-pošte
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Red {0}: Za dobavljača {0} Email Address potrebna za slanje e-pošte
|
||||
DocType: Operation,Default Workstation,Zadana Workstation
|
||||
DocType: Notification Control,Expense Claim Approved Message,Rashodi Zahtjev Odobren poruku
|
||||
DocType: Payment Entry,Deductions or Loss,Odbitaka ili gubitak
|
||||
@ -3698,7 +3698,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Postavite Exchange dobici / gubi
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Razdoblje zahtjev ne može biti preko dva alocation zapisa
|
||||
DocType: Item Group,Default Expense Account,Zadani račun rashoda
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Studentski Batch ili kolegija Raspored je obavezno
|
||||
DocType: Student,Student Email ID,Student ID e-pošte
|
||||
DocType: Student,Student Email Address,Student ID e-pošte
|
||||
DocType: Employee,Notice (days),Obavijest (dani)
|
||||
DocType: Tax Rule,Sales Tax Template,Porez Predložak
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Odaberite stavke za spremanje račun
|
||||
@ -3849,7 +3849,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Gla
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Pogledaj vodi
|
||||
DocType: Program Enrollment Tool,New Program,Novi program
|
||||
DocType: Item Attribute Value,Attribute Value,Vrijednost atributa
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Email ID mora biti jedinstven , već postoji za {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Email Address mora biti jedinstven , već postoji za {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise - preporučena razina ponovne narudžbe
|
||||
DocType: Salary Detail,Salary Detail,Plaća Detalj
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Odaberite {0} Prvi
|
||||
@ -4051,7 +4051,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Projekt aktivnost / zadatak.
|
||||
DocType: Vehicle Log,Refuelling Details,Punjenje Detalji
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Generiranje plaće gaćice
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Sljedeća Kontakt Po ne može biti ista kao što je vodeći e-mail id
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Sljedeća Kontakt Po ne može biti ista kao što je vodeći e-mail id
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Nabava mora biti provjerena, ako je primjenjivo za odabrano kao {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Popust mora biti manji od 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Posljednja stopa kupnju nije pronađen
|
||||
@ -4347,7 +4347,7 @@ DocType: Purchase Order,Advance Paid,Unaprijed plaćeni
|
||||
DocType: Item,Item Tax,Porez proizvoda
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Materijal za dobavljača
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Trošarine Račun
|
||||
DocType: Expense Claim,Employees Email Id,Zaposlenici Email ID
|
||||
DocType: Expense Claim,Employees Email Address,Zaposlenici Email Address
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Označena posjećenost
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Kratkoročne obveze
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Pošalji grupne SMS poruke svojim kontaktima
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,Bérleti díj
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Összeg az értékcsökkenési leírás után
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Közelgő naptári események
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,"Kérjük, válasszon hónapot és évet"
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Vesszővel elválasztva kell felsorolni az emailcímeket, ahova a számla automatikusan elküldésre kerül az adott időpontban"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Vesszővel elválasztva kell felsorolni az emailcímeket, ahova a számla automatikusan elküldésre kerül az adott időpontban"
|
||||
DocType: Employee,Company Email,Vaállakozás E-mail címe
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Tartozik összeg a számla pénznemében
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Bank/készpénz tranzakciókat ügyfélfél vagy belső átutalás szerint
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Bérpapír előnézet
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,A {0} számlát már többször bevitték
|
||||
DocType: Account,Expenses Included In Valuation,Költségek beleértve a készletértékelésbe
|
||||
DocType: Employee,Provide email id registered in company,Adja meg a vállalathoz bejegyzett email id azonosítót
|
||||
DocType: Employee,Provide Email Address registered in company,Adja meg a vállalathoz bejegyzett Email Address azonosítót
|
||||
DocType: Hub Settings,Seller City,Eladó városa
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,"Kérjük, válasszon ki egy diákcsoportot"
|
||||
,Absent Student Report,Hiányzik Student Report
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Kék
|
||||
DocType: Purchase Invoice,Is Return,Ez visszárú
|
||||
DocType: Price List Country,Price List Country,Árlista Ország
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,"Kérjük, állítsa be az E-mail ID azonosítót"
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,"Kérjük, állítsa be az E-mail ID azonosítót"
|
||||
DocType: Item,UOMs,Mértékegységek
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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á
|
||||
@ -2197,7 +2197,7 @@ DocType: Fiscal Year,Year End Date,Év végi dátum
|
||||
DocType: Task Depends On,Task Depends On,A feladat ettől függ:
|
||||
DocType: Supplier Quotation,Opportunity,Lehetőség
|
||||
,Completed Production Orders,Befejezett gyártási rendelések
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,"Sor {0}: A beszállító {0} e-mail id szükséges, email küldéshez"
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,"Sor {0}: A beszállító {0} e-mail id szükséges, email küldéshez"
|
||||
DocType: Operation,Default Workstation,Alapértelmezett Munkaállomás
|
||||
DocType: Notification Control,Expense Claim Approved Message,Jóváhagyott igény indoklása
|
||||
DocType: Payment Entry,Deductions or Loss,Levonások vagy veszteségek
|
||||
@ -3642,7 +3642,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Árfolyamnyereség / veszteség
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Jelentkezési időszak nem lehet két elhelyezett bejegyzés között
|
||||
DocType: Item Group,Default Expense Account,Alapértelmezett Kiadás számla
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Student Batch vagy Course Schedule kötelező
|
||||
DocType: Student,Student Email ID,Tanuló e-mail azonosító
|
||||
DocType: Student,Student Email Address,Tanuló e-mail azonosító
|
||||
DocType: Employee,Notice (days),Felmondás (nap(ok))
|
||||
DocType: Tax Rule,Sales Tax Template,Forgalmi adó Template
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Válassza ki a tételeket a számla mentéséhez
|
||||
@ -3793,7 +3793,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Fő
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Érdeklődések megtekintése
|
||||
DocType: Program Enrollment Tool,New Program,Új program
|
||||
DocType: Item Attribute Value,Attribute Value,Jellemzők értéke
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Email id-nek egyedinek kell lennie, ez már létezik: {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Email Address-nek egyedinek kell lennie, ez már létezik: {0}"
|
||||
,Itemwise Recommended Reorder Level,Tételenkénti Ajánlott újrarendelési szint
|
||||
DocType: Salary Detail,Salary Detail,Bér részletei
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,"Kérjük, válassza ki a {0} először"
|
||||
@ -3984,7 +3984,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Projekt téma feladatok / tevékenységek.
|
||||
DocType: Vehicle Log,Refuelling Details,Tankolás Részletek
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Bérpapír generálása
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,"Tovább Kapcsolat nem lehet ugyanaz, mint a vezető E-mail azonosító"
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,"Tovább Kapcsolat nem lehet ugyanaz, mint a vezető E-mail azonosító"
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Vásárlást ellenőrizni kell, amennyiben alkalmazható erre a kiválasztottra: {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,"Kedvezménynek kisebbnek kell lennie, mint 100"
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Utolsó vételi ár nem található
|
||||
@ -4279,7 +4279,7 @@ DocType: Purchase Order,Advance Paid,A kifizetett előleg
|
||||
DocType: Item,Item Tax,Tétel adójának típusa
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Anyag beszállítóhoz
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Jövedéki számla
|
||||
DocType: Expense Claim,Employees Email Id,Alkalmazott emailcíme
|
||||
DocType: Expense Claim,Employees Email Address,Alkalmazott emailcíme
|
||||
DocType: Employee Attendance Tool,Marked Attendance,jelzett Nézőszám
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Rövid lejáratú kötelezettségek
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Küldjön tömeges SMS-t a kapcsolatainak
|
||||
|
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,Biaya Sewa
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Jumlah Setelah Penyusutan
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Mendatang Kalender Acara
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Silakan pilih bulan dan tahun
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Entrikan id email dipisahkan dengan koma, invoice akan dikirimkan secara otomatis pada tanggal tertentu"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Entrikan id email dipisahkan dengan koma, invoice akan dikirimkan secara otomatis pada tanggal tertentu"
|
||||
DocType: Employee,Company Email,Email Perusahaan
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Jumlah Debit di Akun Mata Uang
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Transaksi Bank / Cash terhadap partai atau untuk internal transfer
|
||||
@ -685,7 +685,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Slip Gaji Preview
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Akun {0} telah dimasukkan beberapa kali
|
||||
DocType: Account,Expenses Included In Valuation,Biaya Termasuk di Dalam Penilaian Barang
|
||||
DocType: Employee,Provide email id registered in company,Menyediakan email id yang terdaftar di perusahaan
|
||||
DocType: Employee,Provide Email Address registered in company,Menyediakan Email Address yang terdaftar di perusahaan
|
||||
DocType: Hub Settings,Seller City,Kota Penjual
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Silakan pilih Grup Pelajar
|
||||
,Absent Student Report,Laporan Siswa Absen
|
||||
@ -1128,7 +1128,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Biru
|
||||
DocType: Purchase Invoice,Is Return,Retur Barang
|
||||
DocType: Price List Country,Price List Country,Negara Daftar Harga
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Silahkan mengatur ID Email
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Silahkan mengatur ID Email
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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
|
||||
@ -2219,7 +2219,7 @@ DocType: Fiscal Year,Year End Date,Tanggal Akhir Tahun
|
||||
DocType: Task Depends On,Task Depends On,Tugas Tergantung Pada
|
||||
DocType: Supplier Quotation,Opportunity,Peluang
|
||||
,Completed Production Orders,Order Produksi Selesai
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Row {0}: Untuk pemasok {0} email id diperlukan untuk mengirim email
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Row {0}: Untuk pemasok {0} Email Address diperlukan untuk mengirim email
|
||||
DocType: Operation,Default Workstation,Standar Workstation
|
||||
DocType: Notification Control,Expense Claim Approved Message,Beban Klaim Disetujui Pesan
|
||||
DocType: Payment Entry,Deductions or Loss,Pemotongan atau Rugi
|
||||
@ -3698,7 +3698,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Set Efek Gain / Loss
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Periode aplikasi tidak bisa di dua catatan alokasi
|
||||
DocType: Item Group,Default Expense Account,Beban standar Akun
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Mahasiswa Batch atau Jadwal Course adalah wajib
|
||||
DocType: Student,Student Email ID,Mahasiswa ID Email
|
||||
DocType: Student,Student Email Address,Mahasiswa ID Email
|
||||
DocType: Employee,Notice (days),Notice (hari)
|
||||
DocType: Tax Rule,Sales Tax Template,Template Pajak Penjualan
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Pilih item untuk menyimpan faktur
|
||||
@ -3849,7 +3849,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Gen
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Lihat Kesempatan
|
||||
DocType: Program Enrollment Tool,New Program,Program baru
|
||||
DocType: Item Attribute Value,Attribute Value,Nilai Atribut
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Email id harus unik, sudah ada untuk {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Email Address harus unik, sudah ada untuk {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise Rekomendasi Reorder Tingkat
|
||||
DocType: Salary Detail,Salary Detail,Detil gaji
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Silahkan pilih {0} terlebih dahulu
|
||||
@ -4051,7 +4051,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Kegiatan proyek / tugas.
|
||||
DocType: Vehicle Log,Refuelling Details,Detail Pengisian
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Buat Slip Gaji
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Berikutnya Hubungi Dengan tidak bisa sama dengan Timbal Email id
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Berikutnya Hubungi Dengan tidak bisa sama dengan Timbal Email Address
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Membeli harus dicentang, jika ""Berlaku Untuk"" dipilih sebagai {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Diskon harus kurang dari 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Tingkat pembelian terakhir tidak ditemukan
|
||||
@ -4347,7 +4347,7 @@ DocType: Purchase Order,Advance Paid,Pembayaran Dimuka (Advance)
|
||||
DocType: Item,Item Tax,Pajak Stok Barang
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Bahan untuk Supplier
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Cukai Faktur
|
||||
DocType: Expense Claim,Employees Email Id,Karyawan Email Id
|
||||
DocType: Expense Claim,Employees Email Address,Karyawan Email Address
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Absensi Terdaftar
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Piutang Lancar
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Kirim SMS massal ke kontak Anda
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,Rent Kostnaður
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Upphæð Eftir Afskriftir
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Næstu Dagbókaratriði
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Vinsamlegast veldu mánuði og ár
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Sláðu email persónuskilríki aðskilin með kommum, reikningur verður sent sjálfkrafa tilteknum degi"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Sláðu email persónuskilríki aðskilin með kommum, reikningur verður sent sjálfkrafa tilteknum degi"
|
||||
DocType: Employee,Company Email,fyrirtæki Email
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Debit Upphæð í Account Gjaldmiðill
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Bank / reiðufé gagnvart aðila eða fyrir innra flytja
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Preview Laun Slip
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Reikningur {0} hefur verið slegið mörgum sinnum
|
||||
DocType: Account,Expenses Included In Valuation,Kostnaður í Verðmat
|
||||
DocType: Employee,Provide email id registered in company,Gefðu email persónuskilríki skráð í félaginu
|
||||
DocType: Employee,Provide Email Address registered in company,Gefðu email persónuskilríki skráð í félaginu
|
||||
DocType: Hub Settings,Seller City,Seljandi City
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Vinsamlegast veldu Student Group
|
||||
,Absent Student Report,Absent Student Report
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Blue
|
||||
DocType: Purchase Invoice,Is Return,er aftur
|
||||
DocType: Price List Country,Price List Country,Verðskrá Country
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Vinsamlegast settu Email ID
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Vinsamlegast settu Email Address
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,Ár Lokadagur
|
||||
DocType: Task Depends On,Task Depends On,Verkefni veltur á
|
||||
DocType: Supplier Quotation,Opportunity,tækifæri
|
||||
,Completed Production Orders,Lokið Framleiðsla Pantanir
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Row {0}: Fyrir birgja {0} email persónuskilríki er nauðsynlegt að senda tölvupóst
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Row {0}: Fyrir birgja {0} email persónuskilríki er nauðsynlegt að senda tölvupóst
|
||||
DocType: Operation,Default Workstation,Sjálfgefið Workstation
|
||||
DocType: Notification Control,Expense Claim Approved Message,Kostnað Krafa Samþykkt skilaboð
|
||||
DocType: Payment Entry,Deductions or Loss,Frádráttur eða tap
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Setja gengishagnaður / tap
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Umsókn tímabil getur ekki verið á tveimur alocation færslur
|
||||
DocType: Item Group,Default Expense Account,Sjálfgefið kostnað reiknings
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Námsmaður Hópur eða Course Dagskrá er nauðsynlegur
|
||||
DocType: Student,Student Email ID,Student Email ID
|
||||
DocType: Student,Student Email Address,Student Email Address
|
||||
DocType: Employee,Notice (days),Tilkynning (dagar)
|
||||
DocType: Tax Rule,Sales Tax Template,Söluskattur Snið
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Veldu atriði til að bjarga reikning
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Gen
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Skoða Vísbendingar
|
||||
DocType: Program Enrollment Tool,New Program,ný Program
|
||||
DocType: Item Attribute Value,Attribute Value,eigindi gildi
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Email id verður að vera einstakt, þegar til fyrir {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Email Address verður að vera einstakt, þegar til fyrir {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise Mælt Uppröðun Level
|
||||
DocType: Salary Detail,Salary Detail,laun Detail
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Vinsamlegast veldu {0} fyrst
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Project virkni / verkefni.
|
||||
DocType: Vehicle Log,Refuelling Details,Eldsneytisstöðvar Upplýsingar
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Búa Laun laumar
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Næsta Samband með getur ekki verið sama og Lead email id
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Næsta Samband með getur ekki verið sama og Lead Email Address
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Kaup verður að vera merkt, ef við á er valið sem {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Afsláttur verður að vera minna en 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Síðustu kaup hlutfall fannst ekki
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,Advance Greiddur
|
||||
DocType: Item,Item Tax,Liður Tax
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Efni til Birgir
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,vörugjöld Invoice
|
||||
DocType: Expense Claim,Employees Email Id,Starfsmenn Netfang Id
|
||||
DocType: Expense Claim,Employees Email Address,Starfsmenn Netfang Id
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Marked Aðsókn
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,núverandi Skuldir
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Senda massa SMS til þinn snerting
|
||||
|
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,Affitto Costo
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Importo Dopo ammortamento
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Prossimi eventi del calendario
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Si prega di selezionare mese e anno
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Inserisci email separate da virgola, le fatture saranno inviate automaticamente in una data particolare"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Inserisci email separate da virgola, le fatture saranno inviate automaticamente in una data particolare"
|
||||
DocType: Employee,Company Email,azienda Email
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Importo Debito Account Valuta
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Banca / Cash transazioni contro festa o per il trasferimento interno
|
||||
@ -684,7 +684,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Anteprima foglio paga
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Account {0} è stato inserito più volte
|
||||
DocType: Account,Expenses Included In Valuation,Spese incluse nella valutazione
|
||||
DocType: Employee,Provide email id registered in company,Fornire id-mail registrato in azienda
|
||||
DocType: Employee,Provide Email Address registered in company,Fornire id-mail registrato in azienda
|
||||
DocType: Hub Settings,Seller City,Città Venditore
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Si prega di selezionare un gruppo di studenti
|
||||
,Absent Student Report,Assente Student Report
|
||||
@ -1126,7 +1126,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Blu
|
||||
DocType: Purchase Invoice,Is Return,È Return
|
||||
DocType: Price List Country,Price List Country,Listino Prezzi Nazione
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Si prega di impostare ID e-mail
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Si prega di impostare ID e-mail
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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
|
||||
@ -2217,7 +2217,7 @@ DocType: Fiscal Year,Year End Date,Data di fine anno
|
||||
DocType: Task Depends On,Task Depends On,Attività dipende
|
||||
DocType: Supplier Quotation,Opportunity,Opportunità
|
||||
,Completed Production Orders,Completati gli ordini di produzione
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Riga {0}: Per il fornitore {0} id-mail è tenuto ad inviare e-mail
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Riga {0}: Per il fornitore {0} id-mail è tenuto ad inviare e-mail
|
||||
DocType: Operation,Default Workstation,Workstation predefinita
|
||||
DocType: Notification Control,Expense Claim Approved Message,Messaggio Rimborso Spese Approvato
|
||||
DocType: Payment Entry,Deductions or Loss,Deduzioni o la perdita
|
||||
@ -3695,7 +3695,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Guadagno impostato Exchange / Pe
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Periodo di applicazione non può essere tra due record alocation
|
||||
DocType: Item Group,Default Expense Account,Conto spese predefinito
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Batch studente o orario del corso è obbligatoria
|
||||
DocType: Student,Student Email ID,Student Email ID
|
||||
DocType: Student,Student Email Address,Student Email Address
|
||||
DocType: Employee,Notice (days),Avviso ( giorni )
|
||||
DocType: Tax Rule,Sales Tax Template,Sales Tax Template
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Selezionare gli elementi per salvare la fattura
|
||||
@ -3846,7 +3846,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Lib
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Visualizza Contatti
|
||||
DocType: Program Enrollment Tool,New Program,Nuovo programma
|
||||
DocType: Item Attribute Value,Attribute Value,Valore Attributo
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Email id deve essere unico, esiste già per {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Email Address deve essere unico, esiste già per {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise consigliata riordino Livello
|
||||
DocType: Salary Detail,Salary Detail,stipendio Dettaglio
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Si prega di selezionare {0} prima
|
||||
@ -4048,7 +4048,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Attività / attività del progetto.
|
||||
DocType: Vehicle Log,Refuelling Details,Dettagli di rifornimento
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Generare buste paga
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Avanti Contatto Con non può essere lo stesso come il piombo e-mail id
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Avanti Contatto Con non può essere lo stesso come il piombo e-mail id
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","L'acquisto deve essere controllato, se ""applicabile per"" bisogna selezionarlo come {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Sconto deve essere inferiore a 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Ultimo tasso di acquisto non trovato
|
||||
@ -4343,7 +4343,7 @@ DocType: Purchase Order,Advance Paid,Anticipo versato
|
||||
DocType: Item,Item Tax,Tax articolo
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Materiale da Fornitore
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Accise Fattura
|
||||
DocType: Expense Claim,Employees Email Id,Email Dipendenti
|
||||
DocType: Expense Claim,Employees Email Address,Email Dipendenti
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Partecipazione Marcato
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Passività correnti
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Invia SMS di massa ai tuoi contatti
|
||||
|
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,地代・賃料
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,減価償却後の金額
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,今後のカレンダーイベント
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,月と年を選択してください
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date",カンマで区切られたメールアドレスを入力すると、請求が特定の日に自動的に送信されます
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date",カンマで区切られたメールアドレスを入力すると、請求が特定の日に自動的に送信されます
|
||||
DocType: Employee,Company Email,会社の電子メール
|
||||
DocType: GL Entry,Debit Amount in Account Currency,アカウント通貨での借方金額
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,当事者に対してまたは内部転送のための銀行/現金取引
|
||||
@ -686,7 +686,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,プレビュー給与スリップ
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,アカウント{0}を複数回入力されました
|
||||
DocType: Account,Expenses Included In Valuation,評価中経費
|
||||
DocType: Employee,Provide email id registered in company,会社に登録されたメールアドレスを提供
|
||||
DocType: Employee,Provide Email Address registered in company,会社に登録されたメールアドレスを提供
|
||||
DocType: Hub Settings,Seller City,販売者の市区町村
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,学生グループを選択してください
|
||||
,Absent Student Report,不在学生レポート
|
||||
@ -1138,7 +1138,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,青
|
||||
DocType: Purchase Invoice,Is Return,返品
|
||||
DocType: Price List Country,Price List Country,価格表内の国
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,メールアドレスを設定してください
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,メールアドレスを設定してください
|
||||
DocType: Item,UOMs,数量単位
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,アイテムコードはシリアル番号に付け替えることができません
|
||||
@ -2234,7 +2234,7 @@ DocType: Fiscal Year,Year End Date,年終日
|
||||
DocType: Task Depends On,Task Depends On,依存するタスク
|
||||
DocType: Supplier Quotation,Opportunity,機会
|
||||
,Completed Production Orders,完成した製造指示
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,行{0}:サプライヤーのために{0}電子メールIDは、電子メールを送信するために必要とされます
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,行{0}:サプライヤーのために{0}電子メールIDは、電子メールを送信するために必要とされます
|
||||
DocType: Operation,Default Workstation,デフォルト作業所
|
||||
DocType: Notification Control,Expense Claim Approved Message,経費請求を承認メッセージ
|
||||
DocType: Payment Entry,Deductions or Loss,控除または損失
|
||||
@ -3718,7 +3718,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,取引利益/損失を設定し
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,申請期間は2つの割当レコードを横断することはできません
|
||||
DocType: Item Group,Default Expense Account,デフォルト経費
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,学生バッチまたはコーススケジュールは必須です
|
||||
DocType: Student,Student Email ID,学生メールID
|
||||
DocType: Student,Student Email Address,学生メールID
|
||||
DocType: Employee,Notice (days),お知らせ(日)
|
||||
DocType: Tax Rule,Sales Tax Template,販売税テンプレート
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,請求書を保存する項目を選択します
|
||||
@ -3869,7 +3869,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,総
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,リードを表示
|
||||
DocType: Program Enrollment Tool,New Program,新しいプログラム
|
||||
DocType: Item Attribute Value,Attribute Value,属性値
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}",メールアドレスは重複できません。すでに{0}に存在しています
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}",メールアドレスは重複できません。すでに{0}に存在しています
|
||||
,Itemwise Recommended Reorder Level,アイテムごとに推奨される再注文レベル
|
||||
DocType: Salary Detail,Salary Detail,給与詳細
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,{0}を選択してください
|
||||
@ -4071,7 +4071,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,プロジェクト活動/タスク
|
||||
DocType: Vehicle Log,Refuelling Details,給油の詳細
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,給与明細を生成
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,次の接触によっては、リードメールIDを同じにすることはできません
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,次の接触によっては、リードメールIDを同じにすることはできません
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}",適用のためには次のように選択されている場合の購入は、チェックする必要があります{0}
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,割引は100未満でなければなりません
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,最後の購入率が見つかりません
|
||||
@ -4368,7 +4368,7 @@ DocType: Purchase Order,Advance Paid,立替金
|
||||
DocType: Item,Item Tax,アイテムごとの税
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,サプライヤー用資材
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,消費税の請求書
|
||||
DocType: Expense Claim,Employees Email Id,従業員メールアドレス
|
||||
DocType: Expense Claim,Employees Email Address,従業員メールアドレス
|
||||
DocType: Employee Attendance Tool,Marked Attendance,マークされた出席
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,流動負債
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,連絡先にまとめてSMSを送信
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,ការចំណាយជួល
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,ចំនួនទឹកប្រាក់បន្ទាប់ពីការរំលស់
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,ព្រឹត្តិការណ៍ដែលនឹងមកដល់
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,សូមជ្រើសខែនិងឆ្នាំ
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","បញ្ចូលលេខសម្គាល់អ៊ីម៉ែលដែលបំបែកដោយសញ្ញាក្បៀស, វិក័យប័ត្រដែលនឹងត្រូវបានផ្ញើដោយស្វ័យប្រវត្តិនៅលើកាលបរិច្ឆេទជាក់លាក់"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","បញ្ចូលលេខសម្គាល់អ៊ីម៉ែលដែលបំបែកដោយសញ្ញាក្បៀស, វិក័យប័ត្រដែលនឹងត្រូវបានផ្ញើដោយស្វ័យប្រវត្តិនៅលើកាលបរិច្ឆេទជាក់លាក់"
|
||||
DocType: Employee,Company Email,ក្រុមហ៊ុនអ៊ីម៉ែល
|
||||
DocType: GL Entry,Debit Amount in Account Currency,ចំនួនឥណពន្ធរូបិយប័ណ្ណគណនី
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,ប្រតិបតិ្តការធនាគារ / សាច់ប្រាក់ប្រឆាំងនឹងគណបក្សឬសម្រាប់ការផ្ទេរផ្ទៃក្នុង
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,គ្រូពេទ្យប្រហែលជាប្រាក់ខែការមើលជាមុន
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,គណនី {0} ត្រូវបានបញ្ចូលច្រើនដង
|
||||
DocType: Account,Expenses Included In Valuation,ការចំណាយដែលបានរួមបញ្ចូលនៅក្នុងការវាយតម្លៃ
|
||||
DocType: Employee,Provide email id registered in company,ផ្តល់ជូននូវលេខសម្គាល់នៅក្នុងក្រុមហ៊ុនអ៊ីម៉ែលដែលបានចុះឈ្មោះ
|
||||
DocType: Employee,Provide Email Address registered in company,ផ្តល់ជូននូវលេខសម្គាល់នៅក្នុងក្រុមហ៊ុនអ៊ីម៉ែលដែលបានចុះឈ្មោះ
|
||||
DocType: Hub Settings,Seller City,ទីក្រុងអ្នកលក់
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,សូមជ្រើសក្រុមសិស្ស
|
||||
,Absent Student Report,របាយការណ៍សិស្សអវត្តមាន
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,ពណ៌ខៀវ
|
||||
DocType: Purchase Invoice,Is Return,តើការវិលត្រឡប់
|
||||
DocType: Price List Country,Price List Country,បញ្ជីតម្លៃប្រទេស
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,សូមកំណត់លេខសម្គាល់អ៊ីម៉ែល
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,សូមកំណត់លេខសម្គាល់អ៊ីម៉ែល
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,ក្រមធាតុមិនអាចត្រូវបានផ្លាស់ប្តូរសម្រាប់លេខស៊េរី
|
||||
@ -2194,7 +2194,7 @@ DocType: Fiscal Year,Year End Date,ឆ្នាំបញ្ចប់កាលប
|
||||
DocType: Task Depends On,Task Depends On,ភារកិច្ចអាស្រ័យលើ
|
||||
DocType: Supplier Quotation,Opportunity,ឱកាសការងារ
|
||||
,Completed Production Orders,បានបញ្ចប់លើការបញ្ជាទិញផលិតកម្ម
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,ជួរដេក {0}: សម្រាប់ផ្គត់ផ្គង់ {0} លេខសម្គាល់អ៊ីម៉ែលត្រូវបានទាមទារដើម្បីផ្ញើអ៊ីម៉ែល
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,ជួរដេក {0}: សម្រាប់ផ្គត់ផ្គង់ {0} លេខសម្គាល់អ៊ីម៉ែលត្រូវបានទាមទារដើម្បីផ្ញើអ៊ីម៉ែល
|
||||
DocType: Operation,Default Workstation,ស្ថានីយការងារលំនាំដើម
|
||||
DocType: Notification Control,Expense Claim Approved Message,សារពាក្យបណ្តឹងលើការចំណាយបានអនុម័ត
|
||||
DocType: Payment Entry,Deductions or Loss,ការកាត់ឬការបាត់បង់
|
||||
@ -3638,7 +3638,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,កំណត់អត្រា
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,រយៈពេលប្រើប្រាស់មិនអាចមាននៅទូទាំងកំណត់ត្រា alocation ទាំងពីរនាក់
|
||||
DocType: Item Group,Default Expense Account,ចំណាយតាមគណនីលំនាំដើម
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,វគ្គសិក្សានិស្សិតបាច់តារាងគឺជាការចាំបាច់
|
||||
DocType: Student,Student Email ID,លេខសម្គាល់អ៊ីមែលរបស់សិស្ស
|
||||
DocType: Student,Student Email Address,លេខសម្គាល់អ៊ីមែលរបស់សិស្ស
|
||||
DocType: Employee,Notice (days),សេចក្តីជូនដំណឹង (ថ្ងៃ)
|
||||
DocType: Tax Rule,Sales Tax Template,ទំព័រគំរូពន្ធលើការលក់
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,ជ្រើសធាតុដើម្បីរក្សាទុកការវិក្ក័យប័ត្រ
|
||||
@ -3789,7 +3789,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,ទ
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,មើលតែងតែនាំឱ្យមាន
|
||||
DocType: Program Enrollment Tool,New Program,កម្មវិធីថ្មី
|
||||
DocType: Item Attribute Value,Attribute Value,តម្លៃគុណលក្ខណៈ
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","លេខសម្គាល់អ៊ីមែលត្រូវតែមានតែមួយគត់, រួចហើយសម្រាប់ {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","លេខសម្គាល់អ៊ីមែលត្រូវតែមានតែមួយគត់, រួចហើយសម្រាប់ {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise ផ្ដល់អនុសាសន៍រៀបចំវគ្គ
|
||||
DocType: Salary Detail,Salary Detail,លំអិតប្រាក់ខែ
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,សូមជ្រើស {0} ដំបូង
|
||||
@ -3979,7 +3979,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,សកម្មភាពរបស់គម្រោង / ភារកិច្ច។
|
||||
DocType: Vehicle Log,Refuelling Details,សេចក្ដីលម្អិតចាក់ប្រេង
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,បង្កើតប្រាក់ខែគ្រូពេទ្យប្រហែលជា
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,បន្ទាប់ទំនាក់ទំនងដោយមិនអាចជាដូចគ្នាលេខសម្គាល់អ៊ីម៉ែលដែលនាំមុខ
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,បន្ទាប់ទំនាក់ទំនងដោយមិនអាចជាដូចគ្នាលេខសម្គាល់អ៊ីម៉ែលដែលនាំមុខ
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}",ទិញត្រូវតែត្រូវបានធីកបើកម្មវិធីសម្រាប់ការត្រូវបានជ្រើសរើសជា {0}
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,ការបញ្ចុះតម្លៃត្រូវតែមានតិចជាង 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,រកមិនឃើញអត្រាទិញមុនបាន
|
||||
@ -4273,7 +4273,7 @@ DocType: Purchase Order,Advance Paid,មុនបង់ប្រាក់
|
||||
DocType: Item,Item Tax,ការប្រមូលពន្ធលើធាតុ
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,សម្ភារៈដើម្បីផ្គត់ផ្គង់
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,រដ្ឋាករវិក័យប័ត្រ
|
||||
DocType: Expense Claim,Employees Email Id,និយោជិអ៊ីម៉ែលលេខសម្គាល់
|
||||
DocType: Expense Claim,Employees Email Address,និយោជិអ៊ីម៉ែលលេខសម្គាល់
|
||||
DocType: Employee Attendance Tool,Marked Attendance,វត្តមានដែលបានសម្គាល់
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,បំណុលនាពេលបច្ចុប្បន្ន
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,ផ្ញើសារជាអក្សរដ៏ធំមួយដើម្បីទំនាក់ទំនងរបស់អ្នក
|
||||
|
Can't render this file because it is too large.
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,ಬಾಡಿಗೆ ವೆಚ್ಚ
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,ಪ್ರಮಾಣ ಸವಕಳಿ ನಂತರ
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,ಮುಂಬರುವ ಕ್ಯಾಲೆಂಡರ್ ಕ್ರಿಯೆಗಳು
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,ತಿಂಗಳು ವರ್ಷದ ಆಯ್ಕೆಮಾಡಿ
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date",ಬೇರ್ಪಡಿಸಲಾಗಿರುತ್ತದೆ ಇಮೇಲ್ ಐಡಿ ಯನ್ನು ಸರಕುಪಟ್ಟಿ ನಿರ್ದಿಷ್ಟ ದಿನಾಂಕವನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಮೇಲ್ ಆಗುತ್ತದೆ
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date",ಬೇರ್ಪಡಿಸಲಾಗಿರುತ್ತದೆ ಇಮೇಲ್ ಐಡಿ ಯನ್ನು ಸರಕುಪಟ್ಟಿ ನಿರ್ದಿಷ್ಟ ದಿನಾಂಕವನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಮೇಲ್ ಆಗುತ್ತದೆ
|
||||
DocType: Employee,Company Email,ಕಂಪನಿ ಇಮೇಲ್
|
||||
DocType: GL Entry,Debit Amount in Account Currency,ಖಾತೆ ಕರೆನ್ಸಿ ಡೆಬಿಟ್ ಪ್ರಮಾಣ
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,ಪಕ್ಷದ ವಿರುದ್ಧ ಅಥವಾ ಆಂತರಿಕ ವರ್ಗಾವಣೆ ಬ್ಯಾಂಕ್ / ನಗದು ವ್ಯವಹಾರಗಳನ್ನು
|
||||
@ -685,7 +685,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,ಮುನ್ನೋಟ ಸಂಬಳ ಸ್ಲಿಪ್
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,ಖಾತೆ {0} ಅನೇಕ ಬಾರಿ ನಮೂದಿಸಲಾದ
|
||||
DocType: Account,Expenses Included In Valuation,ವೆಚ್ಚಗಳು ಮೌಲ್ಯಾಂಕನ ಸೇರಿಸಲಾಗಿದೆ
|
||||
DocType: Employee,Provide email id registered in company,ಕಂಪನಿಗಳು ನೋಂದಣಿ ಇಮೇಲ್ ಐಡಿ ಒದಗಿಸಿ
|
||||
DocType: Employee,Provide Email Address registered in company,ಕಂಪನಿಗಳು ನೋಂದಣಿ ಇಮೇಲ್ ಐಡಿ ಒದಗಿಸಿ
|
||||
DocType: Hub Settings,Seller City,ಮಾರಾಟಗಾರ ಸಿಟಿ
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,ವಿದ್ಯಾರ್ಥಿ ಗುಂಪು ಆಯ್ಕೆಮಾಡಿ
|
||||
,Absent Student Report,ಆಬ್ಸೆಂಟ್ ವಿದ್ಯಾರ್ಥಿ ವರದಿ
|
||||
@ -1128,7 +1128,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,ಬ್ಲೂ
|
||||
DocType: Purchase Invoice,Is Return,ಮರಳುವುದು
|
||||
DocType: Price List Country,Price List Country,ದರ ಪಟ್ಟಿ ಕಂಟ್ರಿ
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,ಈಮೇಲ್ ಅಡ್ರೆಸ್ ಹೊಂದಿಸಿ
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,ಈಮೇಲ್ ಅಡ್ರೆಸ್ ಹೊಂದಿಸಿ
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,ಐಟಂ ಕೋಡ್ ನೆಯ ಬದಲಾಗಿದೆ ಸಾಧ್ಯವಿಲ್ಲ .
|
||||
@ -2219,7 +2219,7 @@ DocType: Fiscal Year,Year End Date,ವರ್ಷಾಂತ್ಯದ ದಿನಾ
|
||||
DocType: Task Depends On,Task Depends On,ಟಾಸ್ಕ್ ಅವಲಂಬಿಸಿರುತ್ತದೆ
|
||||
DocType: Supplier Quotation,Opportunity,ಅವಕಾಶ
|
||||
,Completed Production Orders,ಪೂರ್ಣಗೊಂಡಿದೆ ಉತ್ಪಾದನೆ ಆರ್ಡರ್ಸ್
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,ರೋ {0}: ಪೂರೈಕೆದಾರ ಫಾರ್ {0} ಇಮೇಲ್ ಐಡಿ ಇಮೇಲ್ ಕಳುಹಿಸಲು ಅಗತ್ಯವಿದೆ
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,ರೋ {0}: ಪೂರೈಕೆದಾರ ಫಾರ್ {0} ಇಮೇಲ್ ಐಡಿ ಇಮೇಲ್ ಕಳುಹಿಸಲು ಅಗತ್ಯವಿದೆ
|
||||
DocType: Operation,Default Workstation,ಡೀಫಾಲ್ಟ್ ವರ್ಕ್ಸ್ಟೇಷನ್
|
||||
DocType: Notification Control,Expense Claim Approved Message,ಖರ್ಚು ಹಕ್ಕು ಅನುಮೋದನೆ ಸಂದೇಶ
|
||||
DocType: Payment Entry,Deductions or Loss,ಕಳೆಯುವಿಕೆಗಳು ಅಥವಾ ನಷ್ಟ
|
||||
@ -3698,7 +3698,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,ವಿನಿಮಯ ಗಳಿಕ
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,ಅಪ್ಲಿಕೇಶನ್ ಅವಧಿಯಲ್ಲಿ ಎರಡು alocation ದಾಖಲೆಗಳನ್ನು ಅಡ್ಡಲಾಗಿ ಸಾಧ್ಯವಿಲ್ಲ
|
||||
DocType: Item Group,Default Expense Account,ಡೀಫಾಲ್ಟ್ ಖರ್ಚು ಖಾತೆ
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,ವಿದ್ಯಾರ್ಥಿ ಬ್ಯಾಚ್ ಅಥವಾ ಕೋರ್ಸ್ ಶೆಡ್ಯೂಲ್ ಕಡ್ಡಾಯ
|
||||
DocType: Student,Student Email ID,ವಿದ್ಯಾರ್ಥಿ ಈಮೇಲ್ ಅಡ್ರೆಸ್
|
||||
DocType: Student,Student Email Address,ವಿದ್ಯಾರ್ಥಿ ಈಮೇಲ್ ಅಡ್ರೆಸ್
|
||||
DocType: Employee,Notice (days),ಎಚ್ಚರಿಕೆ ( ದಿನಗಳು)
|
||||
DocType: Tax Rule,Sales Tax Template,ಮಾರಾಟ ತೆರಿಗೆ ಟೆಂಪ್ಲೇಟು
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,ಸರಕುಪಟ್ಟಿ ಉಳಿಸಲು ಐಟಂಗಳನ್ನು ಆಯ್ಕೆ
|
||||
@ -3849,7 +3849,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,ಸ
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,ವೀಕ್ಷಿಸಿ ಕಾರಣವಾಗುತ್ತದೆ
|
||||
DocType: Program Enrollment Tool,New Program,ಹೊಸ ಕಾರ್ಯಕ್ರಮದಲ್ಲಿ
|
||||
DocType: Item Attribute Value,Attribute Value,ಮೌಲ್ಯ ಲಕ್ಷಣ
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","ಇಮೇಲ್ ಐಡಿ ಅನನ್ಯ ಇರಬೇಕು , ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","ಇಮೇಲ್ ಐಡಿ ಅನನ್ಯ ಇರಬೇಕು , ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise ಮರುಕ್ರಮಗೊಳಿಸಿ ಮಟ್ಟ ಶಿಫಾರಸು
|
||||
DocType: Salary Detail,Salary Detail,ಸಂಬಳ ವಿವರ
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,ಮೊದಲ {0} ಆಯ್ಕೆ ಮಾಡಿ
|
||||
@ -4051,7 +4051,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,ಪ್ರಾಜೆಕ್ಟ್ ಚಟುವಟಿಕೆ / ಕೆಲಸ .
|
||||
DocType: Vehicle Log,Refuelling Details,Refuelling ವಿವರಗಳು
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,ಸಂಬಳ ಚೂರುಗಳನ್ನು ರಚಿಸಿ
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,ಮುಂದಿನ ಮೂಲಕ ಸಂಪರ್ಕಿಸಿ ಲೀಡ್ ಇಮೇಲ್ ಐಡಿ ಅದೇ ಸಾಧ್ಯವಿಲ್ಲ
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,ಮುಂದಿನ ಮೂಲಕ ಸಂಪರ್ಕಿಸಿ ಲೀಡ್ ಇಮೇಲ್ ಐಡಿ ಅದೇ ಸಾಧ್ಯವಿಲ್ಲ
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","ಅನ್ವಯಿಸುವ ಹಾಗೆ ಆರಿಸಿದರೆ ಖರೀದಿ, ಪರೀಕ್ಷಿಸಬೇಕು {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,ರಿಯಾಯಿತಿ ಕಡಿಮೆ 100 ಇರಬೇಕು
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,ಕೊನೆಯ ಖರೀದಿ ಕಂಡುಬಂದಿಲ್ಲ
|
||||
@ -4347,7 +4347,7 @@ DocType: Purchase Order,Advance Paid,ಅಡ್ವಾನ್ಸ್ ಪಾವತಿ
|
||||
DocType: Item,Item Tax,ಐಟಂ ತೆರಿಗೆ
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,ಸರಬರಾಜುದಾರ ವಸ್ತು
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,ಅಬಕಾರಿ ಸರಕುಪಟ್ಟಿ
|
||||
DocType: Expense Claim,Employees Email Id,ನೌಕರರು ಇಮೇಲ್ ಐಡಿ
|
||||
DocType: Expense Claim,Employees Email Address,ನೌಕರರು ಇಮೇಲ್ ಐಡಿ
|
||||
DocType: Employee Attendance Tool,Marked Attendance,ಗುರುತು ಅಟೆಂಡೆನ್ಸ್
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,ಪ್ರಸಕ್ತ ಹಣಕಾಸಿನ ಹೊಣೆಗಾರಿಕೆಗಳು
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,ನಿಮ್ಮ ಸಂಪರ್ಕಗಳಿಗೆ ಸಾಮೂಹಿಕ SMS ಕಳುಹಿಸಿ
|
||||
|
Can't render this file because it is too large.
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,임대 비용
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,금액 감가 상각 후
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,다가오는 일정 이벤트
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,월 및 연도를 선택하세요
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","쉼표로 구분 된 전자 메일 ID를 입력, 송장은 특정 날짜에 자동으로 발송됩니다"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","쉼표로 구분 된 전자 메일 ID를 입력, 송장은 특정 날짜에 자동으로 발송됩니다"
|
||||
DocType: Employee,Company Email,회사 이메일
|
||||
DocType: GL Entry,Debit Amount in Account Currency,계정 통화에서 직불 금액
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,자에 대하여 또는 내부 전송을위한 은행 / 현금 거래
|
||||
@ -685,7 +685,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,미리보기 연봉 슬립
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,계정 {0} 여러 번 입력 된
|
||||
DocType: Account,Expenses Included In Valuation,비용은 평가에 포함
|
||||
DocType: Employee,Provide email id registered in company,이메일 ID는 회사에 등록 제공
|
||||
DocType: Employee,Provide Email Address registered in company,이메일 ID는 회사에 등록 제공
|
||||
DocType: Hub Settings,Seller City,판매자 도시
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,학생 그룹을 선택하세요
|
||||
,Absent Student Report,결석 한 학생 보고서
|
||||
@ -1128,7 +1128,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,푸른
|
||||
DocType: Purchase Invoice,Is Return,돌아가요
|
||||
DocType: Price List Country,Price List Country,가격 목록 나라
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,이메일 ID를 설정하십시오
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,이메일 ID를 설정하십시오
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,상품 코드 일련 번호 변경할 수 없습니다
|
||||
@ -2219,7 +2219,7 @@ DocType: Fiscal Year,Year End Date,연도 종료 날짜
|
||||
DocType: Task Depends On,Task Depends On,작업에 따라 다릅니다
|
||||
DocType: Supplier Quotation,Opportunity,기회
|
||||
,Completed Production Orders,완료 생산 주문
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,행 {0} : 공급 업체 {0} 이메일 ID는 이메일을 보낼 필요
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,행 {0} : 공급 업체 {0} 이메일 ID는 이메일을 보낼 필요
|
||||
DocType: Operation,Default Workstation,기본 워크 스테이션
|
||||
DocType: Notification Control,Expense Claim Approved Message,경비 청구서 승인 메시지
|
||||
DocType: Payment Entry,Deductions or Loss,공제 또는 손실
|
||||
@ -3697,7 +3697,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,교환 게인을 설정 / 손실
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,신청 기간은 2 alocation 기록을 통해 할 수 없습니다
|
||||
DocType: Item Group,Default Expense Account,기본 비용 계정
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,학생 배치 또는 코스 예약은 필수입니다
|
||||
DocType: Student,Student Email ID,학생 이메일 ID
|
||||
DocType: Student,Student Email Address,학생 이메일 ID
|
||||
DocType: Employee,Notice (days),공지 사항 (일)
|
||||
DocType: Tax Rule,Sales Tax Template,판매 세 템플릿
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,송장을 저장하는 항목을 선택
|
||||
@ -3848,7 +3848,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,원
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,보기 오퍼
|
||||
DocType: Program Enrollment Tool,New Program,새 프로그램
|
||||
DocType: Item Attribute Value,Attribute Value,속성 값
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","이메일 ID가 고유해야합니다, 이미 존재 {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","이메일 ID가 고유해야합니다, 이미 존재 {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise는 재주문 수준에게 추천
|
||||
DocType: Salary Detail,Salary Detail,급여 세부 정보
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,먼저 {0}를 선택하세요
|
||||
@ -4050,7 +4050,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,프로젝트 활동 / 작업.
|
||||
DocType: Vehicle Log,Refuelling Details,급유 세부 사항
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,급여 전표 생성
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,다음으로 연락으로는 리드 이메일 ID와 동일 할 수 없습니다
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,다음으로 연락으로는 리드 이메일 ID와 동일 할 수 없습니다
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}",해당 법령에가로 선택된 경우 구매 확인해야합니다 {0}
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,할인 100 미만이어야합니다
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,마지막 구매 비율을 찾을 수 없습니다
|
||||
@ -4346,7 +4346,7 @@ DocType: Purchase Order,Advance Paid,사전 유료
|
||||
DocType: Item,Item Tax,상품의 세금
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,공급 업체에 소재
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,소비세 송장
|
||||
DocType: Expense Claim,Employees Email Id,직원 이드 이메일
|
||||
DocType: Expense Claim,Employees Email Address,직원 이드 이메일
|
||||
DocType: Employee Attendance Tool,Marked Attendance,표시된 출석
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,유동 부채
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,상대에게 대량 SMS를 보내기
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,Cost kirê
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Şêwaz Piştî Farhad.
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Calendar Upcoming Events
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Ji kerema xwe re meha û sala hilbijêre
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Enter id email ji hev biqetîne, fatûra wê were li ser date taybetî bêt"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Enter id email ji hev biqetîne, fatûra wê were li ser date taybetî bêt"
|
||||
DocType: Employee,Company Email,Company Email
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Şêwaz Debit li Account Exchange
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,muamele Bank / Cash dijî partî an jî ji bo veguhestina navxweyî
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Preview Bikini Salary
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Account {0} hatiye bicihkirin çend caran
|
||||
DocType: Account,Expenses Included In Valuation,Mesrefên di nav Valuation
|
||||
DocType: Employee,Provide email id registered in company,Ne id email qeydkirî li şîrketa
|
||||
DocType: Employee,Provide Email Address registered in company,Ne id email qeydkirî li şîrketa
|
||||
DocType: Hub Settings,Seller City,Seller City
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Ji kerema xwe re Komeleya Xwendekarên hilbijêre
|
||||
,Absent Student Report,Absent Report Student
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Şîn
|
||||
DocType: Purchase Invoice,Is Return,e Return
|
||||
DocType: Price List Country,Price List Country,List Price Country
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Ji kerema xwe ve set Email ID
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Ji kerema xwe ve set Email Address
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,Sal Date End
|
||||
DocType: Task Depends On,Task Depends On,Task Dimîne li ser
|
||||
DocType: Supplier Quotation,Opportunity,Fersend
|
||||
,Completed Production Orders,Ordênên Production Qediya
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Row {0}: Ji bo dabînkerê {0} email id pêwîst e ji bo şandina email
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Row {0}: Ji bo dabînkerê {0} Email Address pêwîst e ji bo şandina email
|
||||
DocType: Operation,Default Workstation,Default Workstation
|
||||
DocType: Notification Control,Expense Claim Approved Message,Message mesrefan Pejirandin
|
||||
DocType: Payment Entry,Deductions or Loss,Daşikandinên an Loss
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Set Exchange Gain / Loss
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,dema Application ne dikarin li seranserî du records alocation be
|
||||
DocType: Item Group,Default Expense Account,Account Default Expense
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Batch Student an Cedwela Kurs wêneke e
|
||||
DocType: Student,Student Email ID,Xwendekarên ID Email
|
||||
DocType: Student,Student Email Address,Xwendekarên ID Email
|
||||
DocType: Employee,Notice (days),Notice (rojan)
|
||||
DocType: Tax Rule,Sales Tax Template,Şablon firotina Bacê
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Select tomar bo rizgarkirina fatûra
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Led
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,View Leads
|
||||
DocType: Program Enrollment Tool,New Program,Program New
|
||||
DocType: Item Attribute Value,Attribute Value,nirxê taybetmendiyê
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Email id, divê yekta be, ji niha ve ji bo heye {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Email Address, divê yekta be, ji niha ve ji bo heye {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise Baştir DIRTYHERTZ Level
|
||||
DocType: Salary Detail,Salary Detail,Detail meaş
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Ji kerema xwe {0} hilbijêre yekem
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,çalakiyên Project / erka.
|
||||
DocType: Vehicle Log,Refuelling Details,Details Refuelling
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Çêneke Salary Slips
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Next Contact By nikare bibe wek id Email Lead
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Next Contact By nikare bibe wek id Email Lead
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Kirîn, divê werin kontrolkirin, eger Ji bo serlêdanê ya ku weke hilbijartî {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Discount gerek kêmtir ji 100 be
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Ev rûpel cara rêjeya kirîn nehate dîtin
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,Advance Paid
|
||||
DocType: Item,Item Tax,Bacê babetî
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Madî ji bo Supplier
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,baca bi fatûreyên
|
||||
DocType: Expense Claim,Employees Email Id,Karmendên Email Id
|
||||
DocType: Expense Claim,Employees Email Address,Karmendên Email Address
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Beşdariyê nîşankirin
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Deynên niha:
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Send SMS girseyî ji bo têkiliyên xwe
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,ເຊົ່າທຶນ
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,ຈໍານວນເງິນຫຼັງຈາກຄ່າເສື່ອມລາຄາ
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,ທີ່ຈະເກີດຂຶ້ນປະຕິທິນເຫດການ
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,ກະລຸນາເລືອກເດືອນແລະປີ
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","ກະລຸນາໃສ່ອີເມວຂັ້ນດ້ວຍຈໍ້າຈຸດ, ໃບແຈ້ງຫນີ້ຈະໄດ້ຮັບການສົ່ງອັດຕະໂນມັດໃນວັນທີສະເພາະໃດຫນຶ່ງ"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","ກະລຸນາໃສ່ອີເມວຂັ້ນດ້ວຍຈໍ້າຈຸດ, ໃບແຈ້ງຫນີ້ຈະໄດ້ຮັບການສົ່ງອັດຕະໂນມັດໃນວັນທີສະເພາະໃດຫນຶ່ງ"
|
||||
DocType: Employee,Company Email,Email ບໍລິສັດ
|
||||
DocType: GL Entry,Debit Amount in Account Currency,ຈໍານວນເງິນ Debit ໃນສະກຸນເງິນບັນຊີ
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,ເຮັດທຸລະກໍາທະນາຄານ / ເງິນສົດຕໍ່ຕ້ານພັກຫຼືສໍາລັບການຍົກຍ້າຍພາຍໃນ
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,ສະແດງຄວາມຜິດພາດພຽງເງິນເດືອນ
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,ບັນຊີ {0} ໄດ້ຮັບການປ້ອນເວລາຫຼາຍ
|
||||
DocType: Account,Expenses Included In Valuation,ຄ່າໃຊ້ຈ່າຍລວມຢູ່ໃນການປະເມີນຄ່າ
|
||||
DocType: Employee,Provide email id registered in company,ໃຫ້ id ອີເມລຈົດທະບຽນໃນບໍລິສັດ
|
||||
DocType: Employee,Provide Email Address registered in company,ໃຫ້ id ອີເມລຈົດທະບຽນໃນບໍລິສັດ
|
||||
DocType: Hub Settings,Seller City,ຜູ້ຂາຍເມືອງ
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,ກະລຸນາເລືອກກຸ່ມນັກສຶກສາ
|
||||
,Absent Student Report,ບົດລາຍງານນັກສຶກສາບໍ່
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,blue
|
||||
DocType: Purchase Invoice,Is Return,ແມ່ນກັບຄືນ
|
||||
DocType: Price List Country,Price List Country,ລາຄາປະເທດ
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,ກະລຸນາຕັ້ງ ID Email
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,ກະລຸນາຕັ້ງ ID Email
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,ລະຫັດສິນຄ້າບໍ່ສາມາດມີການປ່ຽນແປງສໍາລັບການສະບັບເລກທີ Serial
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,ປີສິ້ນສຸດວັນທີ່
|
||||
DocType: Task Depends On,Task Depends On,ວຽກງານຂຶ້ນໃນ
|
||||
DocType: Supplier Quotation,Opportunity,ໂອກາດ
|
||||
,Completed Production Orders,ສໍາເລັດໃບສັ່ງຜະລິດ
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,ຕິດຕໍ່ກັນ {0}: ສໍາລັບຜູ້ສະຫນອງ {0} id ອີເມລ໌ທີ່ຈໍາເປັນຕ້ອງສົ່ງອີເມວ
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,ຕິດຕໍ່ກັນ {0}: ສໍາລັບຜູ້ສະຫນອງ {0} id ອີເມລ໌ທີ່ຈໍາເປັນຕ້ອງສົ່ງອີເມວ
|
||||
DocType: Operation,Default Workstation,Workstation ມາດຕະຖານ
|
||||
DocType: Notification Control,Expense Claim Approved Message,Message ຄ່າໃຊ້ຈ່າຍການຮ້ອງຂໍອະນຸມັດ
|
||||
DocType: Payment Entry,Deductions or Loss,ຫັກຄ່າໃຊ້ຈ່າຍຫຼືການສູນເສຍ
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,ກໍານົດອັດຕ
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,ໄລຍະເວລາການນໍາໃຊ້ບໍ່ສາມາດຈະທົ່ວທັງສອງບັນທຶກ alocation
|
||||
DocType: Item Group,Default Expense Account,ບັນຊີມາດຕະຖານຄ່າໃຊ້ຈ່າຍ
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Batch ນັກສຶກສາຫຼືຈັດຕາຕະລາງລາຍວິຊາແມ່ນບັງຄັບ
|
||||
DocType: Student,Student Email ID,ID Email ນັກສຶກສາ
|
||||
DocType: Student,Student Email Address,ID Email ນັກສຶກສາ
|
||||
DocType: Employee,Notice (days),ຫນັງສືແຈ້ງການ (ວັນ)
|
||||
DocType: Tax Rule,Sales Tax Template,ແມ່ແບບພາສີການຂາຍ
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,ເລືອກລາຍການທີ່ຈະຊ່ວຍປະຢັດໃບເກັບເງິນ
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,ຊ
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,View Leads
|
||||
DocType: Program Enrollment Tool,New Program,ໂຄງການໃຫມ່
|
||||
DocType: Item Attribute Value,Attribute Value,ສະແດງມູນຄ່າ
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Email id ຕ້ອງເປັນເອກະລັກ, ລາຄາສໍາລັບ {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Email Address ຕ້ອງເປັນເອກະລັກ, ລາຄາສໍາລັບ {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise ແນະນໍາຈັດລໍາດັບລະດັບ
|
||||
DocType: Salary Detail,Salary Detail,ຂໍ້ມູນເງິນເດືອນ
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,ກະລຸນາເລືອກ {0} ທໍາອິດ
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,ກິດຈະກໍາໂຄງການ / ວຽກງານ.
|
||||
DocType: Vehicle Log,Refuelling Details,ລາຍລະອຽດເຊື້ອເພີງ
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,ສ້າງເງິນເດືອນ Slips
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,ຖັດໄປໂດຍບໍ່ສາມາດເຊັ່ນດຽວກັນກັບ id Email Lead
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,ຖັດໄປໂດຍບໍ່ສາມາດເຊັ່ນດຽວກັນກັບ id Email Lead
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","ການຊື້ຕ້ອງໄດ້ຮັບການກວດສອບ, ຖ້າຫາກວ່າສາມາດນໍາໃຊ້ສໍາລັບການໄດ້ຖືກຄັດເລືອກເປັນ {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,ສ່ວນລົດຕ້ອງຫນ້ອຍກ່ວາ 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,ບໍ່ພົບອັດຕາການຊື້ຫຼ້າສຸດ
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,ລ່ວງຫນ້າການຊໍາ
|
||||
DocType: Item,Item Tax,ພາສີລາຍ
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,ອຸປະກອນການຜະລິດ
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,ອາກອນຊົມໃຊ້ໃບເກັບເງິນ
|
||||
DocType: Expense Claim,Employees Email Id,Id ພະນັກງານ Email
|
||||
DocType: Expense Claim,Employees Email Address,Id ພະນັກງານ Email
|
||||
DocType: Employee Attendance Tool,Marked Attendance,ຜູ້ເຂົ້າຮ່ວມການເຮັດເຄື່ອງຫມາຍ
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,ຫນີ້ສິນໃນປະຈຸບັນ
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,ສົ່ງ SMS ມະຫາຊົນເພື່ອຕິດຕໍ່ພົວພັນຂອງທ່ານ
|
||||
|
Can't render this file because it is too large.
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,nuomos kaina
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Suma po nusidėvėjimo
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Artimiausi Kalendoriaus įvykiai
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Prašome pasirinkti mėnesį ir metus
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Įveskite el.pašto tapatybės atskirti kableliais, sąskaitos faktūros bus išsiųstas automatiškai konkrečią datą"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Įveskite el.pašto tapatybės atskirti kableliais, sąskaitos faktūros bus išsiųstas automatiškai konkrečią datą"
|
||||
DocType: Employee,Company Email,Įmonės paštas
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Debeto Suma sąskaitos valiuta
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Bankas / Grynųjų pinigų operacijos nuo šalies arba dėl vidinio pervedimo
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Peržiūrėti darbo užmokestį
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Sąskaita {0} buvo įrašytas kelis kartus
|
||||
DocType: Account,Expenses Included In Valuation,"Sąnaudų, įtrauktų Vertinimo"
|
||||
DocType: Employee,Provide email id registered in company,Pateikite registruota bendrovė pašto ID
|
||||
DocType: Employee,Provide Email Address registered in company,Pateikite registruota bendrovė pašto ID
|
||||
DocType: Hub Settings,Seller City,Pardavėjo Miestas
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Pasirinkite studentų grupę
|
||||
,Absent Student Report,Nėra studento ataskaitos
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,mėlynas
|
||||
DocType: Purchase Invoice,Is Return,Ar Grįžti
|
||||
DocType: Price List Country,Price List Country,Kainų sąrašas Šalis
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Prašome nustatyti elektroninio pašto numeris
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Prašome nustatyti elektroninio pašto numeris
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{0} valid serial nos for Item {1},{0} galioja eilės numeriai už prekę {1}
|
||||
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Prekės kodas negali būti keičiamas Serial No.
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,Dienos iki metų pabaigos
|
||||
DocType: Task Depends On,Task Depends On,Užduotis Priklauso nuo
|
||||
DocType: Supplier Quotation,Opportunity,galimybė
|
||||
,Completed Production Orders,Užbaigtos gamybos užsakymus
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Eilutės {0}: Dėl tiekėjo {0} siųsti tapatybės privalo siųsti laišką
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Eilutės {0}: Dėl tiekėjo {0} siųsti tapatybės privalo siųsti laišką
|
||||
DocType: Operation,Default Workstation,numatytasis Workstation
|
||||
DocType: Notification Control,Expense Claim Approved Message,Kompensuojamos Pretenzija Patvirtinta pranešimas
|
||||
DocType: Payment Entry,Deductions or Loss,Atskaitymai arba nuostolis
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Nustatyti keitimo pelnas / nuost
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Taikymo laikotarpis negali būti per du alocation įrašų
|
||||
DocType: Item Group,Default Expense Account,Numatytasis išlaidų sąskaita
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Studentų partijos ar užsiėmimų tvarkaraštis yra privalomi
|
||||
DocType: Student,Student Email ID,Studentų E-mail ID
|
||||
DocType: Student,Student Email Address,Studentų E-mail ID
|
||||
DocType: Employee,Notice (days),Pranešimas (dienų)
|
||||
DocType: Tax Rule,Sales Tax Template,Pardavimo mokestis Šablono
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Pasirinkite elementus išsaugoti sąskaitą faktūrą
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Ben
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Peržiūrėti laidai
|
||||
DocType: Program Enrollment Tool,New Program,nauja programa
|
||||
DocType: Item Attribute Value,Attribute Value,Pavadinimas Reikšmė
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Paštas tapatybės turi būti unikalus, jau egzistuoja {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Paštas tapatybės turi būti unikalus, jau egzistuoja {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise Rekomenduojama Pertvarkyti lygis
|
||||
DocType: Salary Detail,Salary Detail,Pajamos detalės
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Prašome pasirinkti {0} pirmas
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Projekto veikla / užduotis.
|
||||
DocType: Vehicle Log,Refuelling Details,Degalų detalės
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Sukurti apie atlyginimų
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,"Kitas Susisiekti negali būti toks pat, kaip pagrindiniam elektroninio pašto numeris"
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,"Kitas Susisiekti negali būti toks pat, kaip pagrindiniam elektroninio pašto numeris"
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Ieško turi būti patikrinta, jei taikoma pasirinkta kaip {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Nuolaida turi būti mažesnis nei 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Paskutinis pirkinys norma nerastas
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,sumokėto avanso
|
||||
DocType: Item,Item Tax,Prekė Mokesčių
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,"Medžiaga, iš Tiekėjui"
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,akcizo Sąskaita
|
||||
DocType: Expense Claim,Employees Email Id,Darbuotojai elektroninio pašto numeris
|
||||
DocType: Expense Claim,Employees Email Address,Darbuotojai elektroninio pašto numeris
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Pažymėti Lankomumas
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Dabartiniai įsipareigojimai
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Siųsti masės SMS į jūsų kontaktus
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,Rent izmaksas
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Summa Pēc nolietojums
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Gaidāmie Kalendāra notikumi
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,"Lūdzu, izvēlieties mēnesi un gadu"
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Ievadiet e-pasta id atdalīti ar komatiem, rēķins tiks nosūtīts automātiski konkrētā datumā"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Ievadiet e-pasta id atdalīti ar komatiem, rēķins tiks nosūtīts automātiski konkrētā datumā"
|
||||
DocType: Employee,Company Email,Uzņēmuma e-pasts
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Debeta summa konta valūtā
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Bank / Skaidras naudas darījumi pret pusi vai iekšējai pārskaitījumu
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Preview Alga Slip
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Konts {0} ir ievadīts vairākas reizes
|
||||
DocType: Account,Expenses Included In Valuation,Izdevumi iekļauts vērtēšanā
|
||||
DocType: Employee,Provide email id registered in company,Nodrošināt e-pasta id reģistrēts uzņēmums
|
||||
DocType: Employee,Provide Email Address registered in company,Nodrošināt e-pasta id reģistrēts uzņēmums
|
||||
DocType: Hub Settings,Seller City,Pārdevējs City
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,"Lūdzu, izvēlieties skolēnu grupas"
|
||||
,Absent Student Report,Nekonstatē Student pārskats
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Zils
|
||||
DocType: Purchase Invoice,Is Return,Vai Return
|
||||
DocType: Price List Country,Price List Country,Cenrādis Valsts
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Lūdzu iestatīt e-pasta ID
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Lūdzu iestatīt e-pasta ID
|
||||
DocType: Item,UOMs,Mērvienības
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{0} valid serial nos for Item {1},{0} derīgas sērijas nos postenim {1}
|
||||
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Postenis kodekss nevar mainīt Serial Nr
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,Gada beigu datums
|
||||
DocType: Task Depends On,Task Depends On,Uzdevums Atkarīgs On
|
||||
DocType: Supplier Quotation,Opportunity,Iespējas
|
||||
,Completed Production Orders,Aizpildītas pasūtījumu
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,"Rinda {0}: piegādātājs {0} e-pasta id ir nepieciešams, lai nosūtītu e-pastu"
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,"Rinda {0}: piegādātājs {0} e-pasta id ir nepieciešams, lai nosūtītu e-pastu"
|
||||
DocType: Operation,Default Workstation,Default Workstation
|
||||
DocType: Notification Control,Expense Claim Approved Message,Izdevumu Pretenzija Apstiprināts Message
|
||||
DocType: Payment Entry,Deductions or Loss,Samazinājumus vai zaudēšana
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Uzstādīt Exchange Peļņa / za
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Pieteikumu iesniegšanas termiņš nevar būt pa diviem alocation ierakstiem
|
||||
DocType: Item Group,Default Expense Account,Default Izdevumu konts
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Student Partijas vai Kursu grafiks ir obligāta
|
||||
DocType: Student,Student Email ID,Student Email ID
|
||||
DocType: Student,Student Email Address,Student Email Address
|
||||
DocType: Employee,Notice (days),Paziņojums (dienas)
|
||||
DocType: Tax Rule,Sales Tax Template,Sales Tax Template
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,"Izvēlētos objektus, lai saglabātu rēķinu"
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Gen
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Skatīt Leads
|
||||
DocType: Program Enrollment Tool,New Program,jaunā programma
|
||||
DocType: Item Attribute Value,Attribute Value,Atribūta vērtība
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","E-pasta id ir unikāls, kas jau pastāv {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","E-pasta id ir unikāls, kas jau pastāv {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise Ieteicams Pārkārtot Level
|
||||
DocType: Salary Detail,Salary Detail,alga Detail
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,"Lūdzu, izvēlieties {0} pirmais"
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Projekta aktivitāte / uzdevums.
|
||||
DocType: Vehicle Log,Refuelling Details,Degvielas uzpildes Details
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Izveidot algas lapas
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Nākamais Kontaktinformācija Ar nevar būt tāda pati kā vadošais e-pasta id
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Nākamais Kontaktinformācija Ar nevar būt tāda pati kā vadošais e-pasta id
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Pirkšana jāpārbauda, ja nepieciešams, par ir izvēlēts kā {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Atlaide jābūt mazāk nekā 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Pēdējā pirkuma likmes nav atrasts
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,Izmaksāto avansu
|
||||
DocType: Item,Item Tax,Postenis Nodokļu
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Materiāls piegādātājam
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Akcīzes Invoice
|
||||
DocType: Expense Claim,Employees Email Id,Darbinieki e-pasta ID
|
||||
DocType: Expense Claim,Employees Email Address,Darbinieki e-pasta ID
|
||||
DocType: Employee Attendance Tool,Marked Attendance,ievērojama apmeklējums
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Tekošo saistību
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Sūtīt masu SMS saviem kontaktiem
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,Изнајмување на трошоците
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Износ по амортизација
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Претстојните Календар на настани
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Ве молиме изберете месец и година
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Внесете е-мејл проект одделени со запирки, фактура ќе бидат испратени автоматски на одреден датум"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Внесете е-мејл проект одделени со запирки, фактура ќе бидат испратени автоматски на одреден датум"
|
||||
DocType: Employee,Company Email,Компанија е-мејл
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Дебитна Износ во валута на сметка
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Банка / Готовински трансакции од страна или за внатрешен трансфер
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Преглед Плата фиш
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Сметка {0} е внесен повеќе пати
|
||||
DocType: Account,Expenses Included In Valuation,Трошоци Вклучени Во Вреднување
|
||||
DocType: Employee,Provide email id registered in company,Обезбеди мејл ID регистрирани во компанијата
|
||||
DocType: Employee,Provide Email Address registered in company,Обезбеди мејл ID регистрирани во компанијата
|
||||
DocType: Hub Settings,Seller City,Продавачот на градот
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Ве молиме одберете Група на студенти
|
||||
,Absent Student Report,Отсутни Студентски извештај
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Blue
|
||||
DocType: Purchase Invoice,Is Return,Е враќање
|
||||
DocType: Price List Country,Price List Country,Ценовник Земја
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Ве молиме да се постави е-мејл ID
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Ве молиме да се постави е-мејл ID
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,Точка законик не може да се промени за Сериски број
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,Годината завршува на Дат
|
||||
DocType: Task Depends On,Task Depends On,Задача зависи од
|
||||
DocType: Supplier Quotation,Opportunity,Можност
|
||||
,Completed Production Orders,Завршено Производство Нарачка
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Ред {0}: За снабдувач {0} мејл ID е потребно да се испрати е-маил
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Ред {0}: За снабдувач {0} мејл ID е потребно да се испрати е-маил
|
||||
DocType: Operation,Default Workstation,Стандардно Workstation
|
||||
DocType: Notification Control,Expense Claim Approved Message,Сметка Тврдат Одобрени порака
|
||||
DocType: Payment Entry,Deductions or Loss,Одбивања или загуба
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Внесени курсни до
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Период апликација не може да биде во две alocation евиденција
|
||||
DocType: Item Group,Default Expense Account,Стандардно сметка сметка
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Студентски серијата или Курс Распоред е задолжително
|
||||
DocType: Student,Student Email ID,Студент e-mail проект
|
||||
DocType: Student,Student Email Address,Студент e-mail проект
|
||||
DocType: Employee,Notice (days),Известување (во денови)
|
||||
DocType: Tax Rule,Sales Tax Template,Данок на промет Шаблон
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Изберете предмети за да се спаси фактура
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,О
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Прикажи ги Потенцијалните клиенти
|
||||
DocType: Program Enrollment Tool,New Program,нова програма
|
||||
DocType: Item Attribute Value,Attribute Value,Вредноста на атрибутот
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","E-mail проект мора да биде уникатен, веќе постои за {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","E-mail проект мора да биде уникатен, веќе постои за {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise Препорачани Пренареждане ниво
|
||||
DocType: Salary Detail,Salary Detail,плата детали
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Ве молиме изберете {0} Првиот
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Проектна активност / задача.
|
||||
DocType: Vehicle Log,Refuelling Details,Полнење Детали
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Генерирање на исплатните листи
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Следна Контакт Со тоа што не може да биде ист како олово-мејл ID
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Следна Контакт Со тоа што не може да биде ист како олово-мејл ID
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Купување мора да се провери, ако е применливо за е избран како {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Попуст смее да биде помал од 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Последните купување стапка не е пронајден
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,Однапред платени
|
||||
DocType: Item,Item Tax,Точка Данок
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Материјал на Добавувачот
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Акцизни Фактура
|
||||
DocType: Expense Claim,Employees Email Id,Вработените-пошта Id
|
||||
DocType: Expense Claim,Employees Email Address,Вработените-пошта Id
|
||||
DocType: Employee Attendance Tool,Marked Attendance,означени Публика
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Тековни обврски
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Испрати маса SMS порака на вашите контакти
|
||||
|
Can't render this file because it is too large.
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,രെംട് ചെലവ്
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,മൂല്യത്തകർച്ച ശേഷം തുക
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,വരാനിരിക്കുന്ന കലണ്ടർ ഇവന്റുകൾ
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,മാസം വർഷം തിരഞ്ഞെടുക്കുക
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","കോമകളാൽ വേർതിരിച്ച ഇമെയിൽ ഐഡി നൽകുക, ഇൻവോയ്സ് പ്രത്യേക തീയതി സ്വയം മെയിൽ ചെയ്യപ്പെടും"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","കോമകളാൽ വേർതിരിച്ച ഇമെയിൽ ഐഡി നൽകുക, ഇൻവോയ്സ് പ്രത്യേക തീയതി സ്വയം മെയിൽ ചെയ്യപ്പെടും"
|
||||
DocType: Employee,Company Email,കമ്പനി ഇമെയിൽ
|
||||
DocType: GL Entry,Debit Amount in Account Currency,അക്കൗണ്ട് കറൻസി ഡെബിറ്റ് തുക
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,പാർട്ടി വിരുദ്ധ അല്ലെങ്കിൽ ആന്തരിക കൈമാറ്റം ബാങ്ക് / ക്യാഷ് ഇടപാടുകൾ
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,പ്രിവ്യൂ ശമ്പളം ജി
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,അക്കൗണ്ട് {0} ഒന്നിലധികം തവണ നൽകിയിട്ടുണ്ടെന്നും
|
||||
DocType: Account,Expenses Included In Valuation,മൂലധനം ഉൾപ്പെടുത്തിയിട്ടുണ്ട് ചിലവുകൾ
|
||||
DocType: Employee,Provide email id registered in company,കമ്പനിയുടെ രജിസ്റ്റർ ഇമെയിൽ ഐഡി നൽകുക
|
||||
DocType: Employee,Provide Email Address registered in company,കമ്പനിയുടെ രജിസ്റ്റർ ഇമെയിൽ ഐഡി നൽകുക
|
||||
DocType: Hub Settings,Seller City,വില്പനക്കാരന്റെ സിറ്റി
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,ഒരു വിദ്യാർത്ഥി ഗ്രൂപ്പ് തിരഞ്ഞെടുക്കുക
|
||||
,Absent Student Report,നിലവില്ല വിദ്യാർത്ഥി റിപ്പോർട്ട്
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,ബ്ലൂ
|
||||
DocType: Purchase Invoice,Is Return,മടക്കം
|
||||
DocType: Price List Country,Price List Country,വില പട്ടിക രാജ്യം
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,ഇമെയിൽ ഐഡി സജ്ജീകരിക്കുക
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,ഇമെയിൽ ഐഡി സജ്ജീകരിക്കുക
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,ഇനം കോഡ് സീരിയൽ നമ്പർ വേണ്ടി മാറ്റാൻ കഴിയില്ല
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,വർഷം അവസാന തീയതി
|
||||
DocType: Task Depends On,Task Depends On,ടാസ്ക് ആശ്രയിച്ചിരിക്കുന്നു
|
||||
DocType: Supplier Quotation,Opportunity,അവസരം
|
||||
,Completed Production Orders,പൂർത്തിയാക്കി പ്രൊഡക്ഷൻ ഓർഡറുകൾ
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,വരി {0}: വിതരണക്കാരൻ വേണ്ടി {0} ഇമെയിൽ ഐഡി ഇമെയിൽ അയയ്ക്കാൻ ആവശ്യമാണ്
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,വരി {0}: വിതരണക്കാരൻ വേണ്ടി {0} ഇമെയിൽ ഐഡി ഇമെയിൽ അയയ്ക്കാൻ ആവശ്യമാണ്
|
||||
DocType: Operation,Default Workstation,സ്ഥിരസ്ഥിതി വർക്ക്സ്റ്റേഷൻ
|
||||
DocType: Notification Control,Expense Claim Approved Message,ചിലവിടൽ ക്ലെയിം അംഗീകരിച്ചു സന്ദേശം
|
||||
DocType: Payment Entry,Deductions or Loss,പൂർണമായും അല്ലെങ്കിൽ നഷ്ടം
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,എക്സ്ചേഞ്ച
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,അപേക്ഷാ കാലയളവിൽ രണ്ട് alocation രേഖകള് ഉടനീളം ആകാൻ പാടില്ല
|
||||
DocType: Item Group,Default Expense Account,സ്ഥിരസ്ഥിതി ചിലവേറിയ
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,സ്റ്റുഡന്റ് ബാച്ച് അല്ലെങ്കിൽ കോഴ്സ് ഷെഡ്യൂൾ നിര്ബന്ധമാണ്
|
||||
DocType: Student,Student Email ID,വിദ്യാർത്ഥിയുടെ ഇമെയിൽ ഐഡി
|
||||
DocType: Student,Student Email Address,വിദ്യാർത്ഥിയുടെ ഇമെയിൽ ഐഡി
|
||||
DocType: Employee,Notice (days),അറിയിപ്പ് (ദിവസം)
|
||||
DocType: Tax Rule,Sales Tax Template,സെയിൽസ് ടാക്സ് ഫലകം
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,ഇൻവോയ്സ് സംരക്ഷിക്കാൻ ഇനങ്ങൾ തിരഞ്ഞെടുക്കുക
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,ജ
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,കാണുക നയിക്കുന്നു
|
||||
DocType: Program Enrollment Tool,New Program,പുതിയ പ്രോഗ്രാം
|
||||
DocType: Item Attribute Value,Attribute Value,ന്റെതിരച്ചറിവിനു്തെറ്റായധാര്മ്മികമൂല്യം
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","ഇമെയിൽ ഐഡി അതുല്യമായ ആയിരിക്കണം, ഇതിനകം {0} നിലവിലുണ്ട്"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","ഇമെയിൽ ഐഡി അതുല്യമായ ആയിരിക്കണം, ഇതിനകം {0} നിലവിലുണ്ട്"
|
||||
,Itemwise Recommended Reorder Level,Itemwise പുനഃക്രമീകരിക്കുക ലെവൽ ശുപാർശിത
|
||||
DocType: Salary Detail,Salary Detail,ശമ്പള വിശദാംശം
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,ആദ്യം {0} തിരഞ്ഞെടുക്കുക
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,പ്രോജക്ട് പ്രവർത്തനം / ചുമതല.
|
||||
DocType: Vehicle Log,Refuelling Details,Refuelling വിശദാംശങ്ങൾ
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,ശമ്പളം സ്ലിപ്പിൽ ജനറേറ്റുചെയ്യൂ
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,അടുത്തത് ബന്ധപ്പെടുക നയിക്കുന്നത് ഇമെയിൽ id അതേ പാടില്ല
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,അടുത്തത് ബന്ധപ്പെടുക നയിക്കുന്നത് ഇമെയിൽ id അതേ പാടില്ല
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","ബാധകമായ വേണ്ടി {0} തിരഞ്ഞെടുക്കപ്പെട്ടു എങ്കിൽ വാങ്ങൽ, ചെക്ക് ചെയ്തിരിക്കണം"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,ഡിസ്കൗണ്ട് 100 താഴെ ആയിരിക്കണം
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,അവസാനം വാങ്ങൽ നിരക്ക് കണ്ടെത്തിയില്ല
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,മുൻകൂർ പണമടച്ചു
|
||||
DocType: Item,Item Tax,ഇനം നികുതി
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,വിതരണക്കാരൻ വരെ മെറ്റീരിയൽ
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,എക്സൈസ് ഇൻവോയിസ്
|
||||
DocType: Expense Claim,Employees Email Id,എംപ്ലോയീസ് ഇമെയിൽ ഐഡി
|
||||
DocType: Expense Claim,Employees Email Address,എംപ്ലോയീസ് ഇമെയിൽ ഐഡി
|
||||
DocType: Employee Attendance Tool,Marked Attendance,അടയാളപ്പെടുത്തിയിരിക്കുന്ന ഹാജർ
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,നിലവിലുള്ള ബാധ്യതകൾ
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,സമ്പർക്കങ്ങളിൽ പിണ്ഡം എസ്എംഎസ് അയയ്ക്കുക
|
||||
|
Can't render this file because it is too large.
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,भाडे खर्च
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,घसारा केल्यानंतर रक्कम
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,आगामी कॅलेंडर इव्हेंट
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,कृपया महिना आणि वर्ष निवडा
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","स्वल्पविरामाने विभक्त केलेल्या प्रविष्ट करा ई-मेल आयडी, चलन विशिष्ट तारखेला आपोआप पाठविले जाईल"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","स्वल्पविरामाने विभक्त केलेल्या प्रविष्ट करा ई-मेल आयडी, चलन विशिष्ट तारखेला आपोआप पाठविले जाईल"
|
||||
DocType: Employee,Company Email,कंपनी ईमेल
|
||||
DocType: GL Entry,Debit Amount in Account Currency,खाते चलनात डेबिट रक्कम
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,बँक / रोख पक्ष विरोधात किंवा अंतर्गत हस्तांतरण व्यवहार
|
||||
@ -684,7 +684,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,पूर्वावलोकन पगाराच्या स्लिप्स
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,खाते {0} अनेक वेळा प्रविष्ट केले गेले आहे
|
||||
DocType: Account,Expenses Included In Valuation,खर्च मूल्यांकन मध्ये समाविष्ट
|
||||
DocType: Employee,Provide email id registered in company,कंपनी मध्ये नोंदणीकृत ई-मेल आयडी द्या
|
||||
DocType: Employee,Provide Email Address registered in company,कंपनी मध्ये नोंदणीकृत ई-मेल आयडी द्या
|
||||
DocType: Hub Settings,Seller City,विक्रेता सिटी
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,कृपया एक विद्यार्थी गट निवडा
|
||||
,Absent Student Report,अनुपस्थित विद्यार्थी अहवाल
|
||||
@ -1108,7 +1108,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,ब्लू
|
||||
DocType: Purchase Invoice,Is Return,परत आहे
|
||||
DocType: Price List Country,Price List Country,किंमत यादी देश
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,ईमेल आयडी सेट करा
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,ईमेल आयडी सेट करा
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,आयटम कोड सिरियल क्रमांकासाठी बदलला जाऊ शकत नाही
|
||||
@ -2197,7 +2197,7 @@ DocType: Fiscal Year,Year End Date,अंतिम वर्ष तारीख
|
||||
DocType: Task Depends On,Task Depends On,कार्य अवलंबून असते
|
||||
DocType: Supplier Quotation,Opportunity,संधी
|
||||
,Completed Production Orders,उत्पादन ऑर्डर पूर्ण झाला
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,सलग {0}: पुरवठादार साठी {0} ई-मेल आयडी ई-मेल पाठवण्यासाठी आवश्यक आहे
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,सलग {0}: पुरवठादार साठी {0} ई-मेल आयडी ई-मेल पाठवण्यासाठी आवश्यक आहे
|
||||
DocType: Operation,Default Workstation,मुलभूत वर्कस्टेशन
|
||||
DocType: Notification Control,Expense Claim Approved Message,खर्च क्लेम मंजूर संदेश
|
||||
DocType: Payment Entry,Deductions or Loss,कपात किंवा कमी होणे
|
||||
@ -3642,7 +3642,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,एक्सचेंज ला
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,अर्ज कालावधी दोन alocation रेकॉर्ड ओलांडून असू शकत नाही
|
||||
DocType: Item Group,Default Expense Account,मुलभूत खर्च खाते
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,विद्यार्थी बॅच किंवा कोर्स वेळापत्रक अनिवार्य आहे
|
||||
DocType: Student,Student Email ID,विद्यार्थी ईमेल आयडी
|
||||
DocType: Student,Student Email Address,विद्यार्थी ईमेल आयडी
|
||||
DocType: Employee,Notice (days),सूचना (दिवस)
|
||||
DocType: Tax Rule,Sales Tax Template,विक्री कर साचा
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,अशी यादी तयार करणे जतन करण्यासाठी आयटम निवडा
|
||||
@ -3793,7 +3793,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,स
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,पहा निष्पन्न
|
||||
DocType: Program Enrollment Tool,New Program,नवीन कार्यक्रम
|
||||
DocType: Item Attribute Value,Attribute Value,मूल्य विशेषता
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","ईमेल आयडी अद्वितीय असणे आवश्यक आहे ,आधीच अस्तित्वात आहे , {0} साठी"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","ईमेल आयडी अद्वितीय असणे आवश्यक आहे ,आधीच अस्तित्वात आहे , {0} साठी"
|
||||
,Itemwise Recommended Reorder Level,Itemwise पुनर्क्रमित स्तर शिफारस
|
||||
DocType: Salary Detail,Salary Detail,पगार तपशील
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,कृपया प्रथम {0} निवडा
|
||||
@ -3984,7 +3984,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,प्रकल्प क्रियाकलाप / कार्य.
|
||||
DocType: Vehicle Log,Refuelling Details,Refuelling तपशील
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,पगार Slips तयार करा
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,पुढील संपर्क होऊ ईमेल id सारखाच असू शकत नाही
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,पुढील संपर्क होऊ ईमेल id सारखाच असू शकत नाही
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","पाञ म्हणून निवडले आहे, तर खरेदी, चेक करणे आवश्यक आहे {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,सवलत 100 पेक्षा कमी असणे आवश्यक आहे
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,गेल्या खरेदी दर आढळले नाही
|
||||
@ -4279,7 +4279,7 @@ DocType: Purchase Order,Advance Paid,आगाऊ अदा
|
||||
DocType: Item,Item Tax,आयटम कर
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,पुरवठादार साहित्य
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,उत्पादन शुल्क चलन
|
||||
DocType: Expense Claim,Employees Email Id,कर्मचारी ई मेल आयडी
|
||||
DocType: Expense Claim,Employees Email Address,कर्मचारी ई मेल आयडी
|
||||
DocType: Employee Attendance Tool,Marked Attendance,चिन्हांकित उपस्थिती
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,वर्तमान दायित्व
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,आपले संपर्क वस्तुमान एसएमएस पाठवा
|
||||
|
Can't render this file because it is too large.
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,Kos sewa
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Jumlah Selepas Susutnilai
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Akan Datang Kalendar Acara
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Sila pilih bulan dan tahun
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Masukkan id e-mel yang dipisahkan oleh koma, invois akan dihantar secara automatik pada tarikh tertentu"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Masukkan id e-mel yang dipisahkan oleh koma, invois akan dihantar secara automatik pada tarikh tertentu"
|
||||
DocType: Employee,Company Email,Syarikat E-mel
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Jumlah debit dalam Mata Wang Akaun
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,transaksi Bank / Tunai terhadap pihak atau untuk pemindahan dalaman
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Preview Slip Gaji
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Akaun {0} telah dibuat beberapa kali
|
||||
DocType: Account,Expenses Included In Valuation,Perbelanjaan Termasuk Dalam Penilaian
|
||||
DocType: Employee,Provide email id registered in company,Menyediakan id e-mel yang berdaftar dalam syarikat
|
||||
DocType: Employee,Provide Email Address registered in company,Menyediakan id e-mel yang berdaftar dalam syarikat
|
||||
DocType: Hub Settings,Seller City,Penjual City
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Sila pilih Kumpulan Pelajar
|
||||
,Absent Student Report,Tidak hadir Laporan Pelajar
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Blue
|
||||
DocType: Purchase Invoice,Is Return,Tempat kembalinya
|
||||
DocType: Price List Country,Price List Country,Senarai harga Negara
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Sila menetapkan ID E-mel
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Sila menetapkan ID E-mel
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{0} valid serial nos for Item {1},{0} nombor siri sah untuk Perkara {1}
|
||||
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Kod Item tidak boleh ditukar untuk No. Siri
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,Tahun Tarikh Akhir
|
||||
DocType: Task Depends On,Task Depends On,Petugas Bergantung Pada
|
||||
DocType: Supplier Quotation,Opportunity,Peluang
|
||||
,Completed Production Orders,Pesanan Pengeluaran selesai
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Row {0}: Untuk pembekal {0} id e-mel diperlukan untuk menghantar e-mel
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Row {0}: Untuk pembekal {0} id e-mel diperlukan untuk menghantar e-mel
|
||||
DocType: Operation,Default Workstation,Workstation Default
|
||||
DocType: Notification Control,Expense Claim Approved Message,Mesej perbelanjaan Tuntutan Diluluskan
|
||||
DocType: Payment Entry,Deductions or Loss,Potongan atau Kehilangan
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Set Exchange Keuntungan / Kerugi
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Tempoh permohonan tidak boleh di dua rekod alocation
|
||||
DocType: Item Group,Default Expense Account,Akaun Perbelanjaan Default
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Batch Pelajar atau Jadual Kursus adalah wajib
|
||||
DocType: Student,Student Email ID,Pelajar Email ID
|
||||
DocType: Student,Student Email Address,Pelajar Email Address
|
||||
DocType: Employee,Notice (days),Notis (hari)
|
||||
DocType: Tax Rule,Sales Tax Template,Template Cukai Jualan
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Pilih item untuk menyelamatkan invois
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Lej
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Lihat Leads
|
||||
DocType: Program Enrollment Tool,New Program,Program baru
|
||||
DocType: Item Attribute Value,Attribute Value,Atribut Nilai
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Id e-mel mestilah unik, telah wujud untuk {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Id e-mel mestilah unik, telah wujud untuk {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise lawatan Reorder Level
|
||||
DocType: Salary Detail,Salary Detail,Detail gaji
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Sila pilih {0} pertama
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Aktiviti projek / tugasan.
|
||||
DocType: Vehicle Log,Refuelling Details,Refuelling Butiran
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Menjana Gaji Slip
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Seterusnya Hubungi Dengan tidak boleh menjadi sama seperti id E-mel Lead
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Seterusnya Hubungi Dengan tidak boleh menjadi sama seperti id E-mel Lead
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Membeli hendaklah disemak, jika Terpakai Untuk dipilih sebagai {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Diskaun mesti kurang daripada 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Kadar pembelian seluruh dunia: terdapat
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,Advance Dibayar
|
||||
DocType: Item,Item Tax,Perkara Cukai
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Bahan kepada Pembekal
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Cukai Invois
|
||||
DocType: Expense Claim,Employees Email Id,Id Pekerja E-mel
|
||||
DocType: Expense Claim,Employees Email Address,Id Pekerja E-mel
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Kehadiran ketara
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Liabiliti Semasa
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Hantar SMS massa ke kenalan anda
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,ငှားရန်ကုန်ကျစရိ
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,တန်ဖိုးပြီးနောက်ပမာဏ
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,လာမည့်ပြက္ခဒိန်ပွဲများ
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,လနှင့်တစ်နှစ်ကို select ကျေးဇူးပြု.
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date",ကော်မာကွဲကွာအီးမေးလ်က id ကိုထည့်ငွေတောင်းခံလွှာအထူးသဖြင့်နေ့စွဲအပေါ်ကိုအလိုအလျောက်ပေးပို့လိမ့်မည်
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date",ကော်မာကွဲကွာအီးမေးလ်က id ကိုထည့်ငွေတောင်းခံလွှာအထူးသဖြင့်နေ့စွဲအပေါ်ကိုအလိုအလျောက်ပေးပို့လိမ့်မည်
|
||||
DocType: Employee,Company Email,ကုမ္ပဏီအီးမေးလ်
|
||||
DocType: GL Entry,Debit Amount in Account Currency,အကောင့်ကိုငွေကြေးစနစ်အတွက် debit ပမာဏ
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,ပါတီဆန့်ကျင်သို့မဟုတ်ပြည်တွင်းရေးလွှဲပြောင်းဘို့ဘဏ် / ငွေကြေးအရောင်းအဝယ်ပြုလုပ်
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,ကို Preview လစာစလစ်ဖြတ်ပိုင်းပုံစံ
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,အကောင့် {0} အကြိမ်ပေါင်းများစွာသို့ဝင်ခဲ့
|
||||
DocType: Account,Expenses Included In Valuation,အကောက်ခွန်တန်ဖိုးသတ်မှတ်မည်တွင်ထည့်သွင်းကုန်ကျစရိတ်
|
||||
DocType: Employee,Provide email id registered in company,ကုမ္ပဏီမှတ်ပုံတင်အီးမေးလ်က id ပေး
|
||||
DocType: Employee,Provide Email Address registered in company,ကုမ္ပဏီမှတ်ပုံတင်အီးမေးလ်က id ပေး
|
||||
DocType: Hub Settings,Seller City,ရောင်းချသူစီးတီး
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,တစ်ကျောင်းသားအုပ်စုကို select လုပ်ပါကျေးဇူးပြုပြီး
|
||||
,Absent Student Report,ပျက်ကွက်ကျောင်းသားအစီရင်ခံစာ
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,ပြာသော
|
||||
DocType: Purchase Invoice,Is Return,သို့ပြန်သွားသည်ဖြစ်ပါသည်
|
||||
DocType: Price List Country,Price List Country,စျေးနှုန်းကိုစာရင်းနိုင်ငံ
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,အီးမေးလ် ID ကိုသတ်မှတ် ကျေးဇူးပြု.
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,အီးမေးလ် ID ကိုသတ်မှတ် ကျေးဇူးပြု.
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{0} valid serial nos for Item {1},Item {1} သည် {0} တရားဝင် serial nos
|
||||
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,item Code ကို Serial နံပါတ်သည်ပြောင်းလဲမပြနိုင်
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,တစ်နှစ်တာအဆုံးန
|
||||
DocType: Task Depends On,Task Depends On,Task အပေါ်မူတည်
|
||||
DocType: Supplier Quotation,Opportunity,အခွင့်အရေး
|
||||
,Completed Production Orders,ပြီးစီးထုတ်လုပ်မှုအမိန့်
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,အတန်း {0}: ပေးသွင်းများအတွက် {0} အီးမေးလ်ကို id သည်ကိုအီးမေးလ်ပေးပို့ဖို့လိုအပ်ပါသည်
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,အတန်း {0}: ပေးသွင်းများအတွက် {0} အီးမေးလ်ကို id သည်ကိုအီးမေးလ်ပေးပို့ဖို့လိုအပ်ပါသည်
|
||||
DocType: Operation,Default Workstation,default Workstation နှင့်
|
||||
DocType: Notification Control,Expense Claim Approved Message,စရိတ်တောင်းဆိုမှုများ Approved Message
|
||||
DocType: Payment Entry,Deductions or Loss,ဖြတ်တောက်ခြင်းများကိုသို့မဟုတ်ပျောက်ဆုံးခြင်း
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,ချိန်း Gain / ပျ
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,ပလီကေးရှင်းကာလအတွင်းနှစ်ဦး alocation မှတ်တမ်းများကိုဖြတ်ပြီးမဖွစျနိုငျ
|
||||
DocType: Item Group,Default Expense Account,default သုံးစွဲမှုအကောင့်
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,ကျောင်းသားအသုတ်လိုက်သို့မဟုတ်သင်တန်းအမှတ်စဥ်ဇယားမဖြစ်မနေဖြစ်ပါသည်
|
||||
DocType: Student,Student Email ID,ကျောင်းသားသမဂ္ဂအီးမေးလ် ID ကို
|
||||
DocType: Student,Student Email Address,ကျောင်းသားသမဂ္ဂအီးမေးလ် ID ကို
|
||||
DocType: Employee,Notice (days),အသိပေးစာ (ရက်)
|
||||
DocType: Tax Rule,Sales Tax Template,အရောင်းခွန် Template ကို
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,ငွေတောင်းခံလွှာကိုကယ်တင်ပစ္စည်းများကို Select လုပ်ပါ
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,အ
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,ကြည့်ရန်ခဲ
|
||||
DocType: Program Enrollment Tool,New Program,နယူးအစီအစဉ်
|
||||
DocType: Item Attribute Value,Attribute Value,attribute Value တစ်ခု
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","အီးမေးလ်က id ထူးခြားသောဖြစ်ရမည်, ပြီးသား {0} သည်တည်ရှိ"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","အီးမေးလ်က id ထူးခြားသောဖြစ်ရမည်, ပြီးသား {0} သည်တည်ရှိ"
|
||||
,Itemwise Recommended Reorder Level,Itemwise Reorder အဆင့်အကြံပြုထား
|
||||
DocType: Salary Detail,Salary Detail,လစာ Detail
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,ပထမဦးဆုံး {0} ကို select ကျေးဇူးပြု.
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,စီမံကိန်းလှုပ်ရှားမှု / အလုပ်တစ်ခုကို။
|
||||
DocType: Vehicle Log,Refuelling Details,ဆီဖြည့အသေးစိတ်
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,လစာစလစ် Generate
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Next ကိုဆကျသှယျရနျအားဖြင့်ခဲအီးမေးလ် id သည်အဖြစ်အတူတူပင်မဖွစျနိုငျ
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Next ကိုဆကျသှယျရနျအားဖြင့်ခဲအီးမေးလ် id သည်အဖြစ်အတူတူပင်မဖွစျနိုငျ
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","application များအတွက် {0} အဖြစ်ရွေးချယ်မယ်ဆိုရင်ဝယ်, checked ရမည်"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,လျော့စျေးက 100 ထက်လျော့နည်းဖြစ်ရမည်
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,ပြီးခဲ့သည့်ဝယ်ယူနှုန်းကိုမတွေ့ရှိ
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,ကြိုတင်မဲ Paid
|
||||
DocType: Item,Item Tax,item ခွန်
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,ပေးသွင်းဖို့ material
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,ယစ်မျိုးပြေစာ
|
||||
DocType: Expense Claim,Employees Email Id,န်ထမ်းအီးမေးလ် Id
|
||||
DocType: Expense Claim,Employees Email Address,န်ထမ်းအီးမေးလ် Id
|
||||
DocType: Employee Attendance Tool,Marked Attendance,တခုတ်တရတက်ရောက်
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,လက်ရှိမှုစိစစ်
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,သင့်ရဲ့အဆက်အသွယ်မှအစုလိုက်အပြုံလိုက် SMS ပို့
|
||||
|
Can't render this file because it is too large.
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,Huurkosten
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Bedrag na afschrijvingen
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Aankomende Gebeurtenissen
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Selecteer maand en jaar
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Vul e-mail ID in, gescheiden door komma's. De factuur zal automatisch worden gemaild op specifieke datum"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Vul e-mail ID in, gescheiden door komma's. De factuur zal automatisch worden gemaild op specifieke datum"
|
||||
DocType: Employee,Company Email,Bedrijf e-mail
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Debet Bedrag in account Valuta
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Bank / Cash-transacties tegen de partij of voor interne overplaatsing
|
||||
@ -684,7 +684,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Voorbeschouwing loonstrook
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Account {0} is meerdere keren ingevoerd
|
||||
DocType: Account,Expenses Included In Valuation,Kosten inbegrepen in waardering
|
||||
DocType: Employee,Provide email id registered in company,Zorg voor een bedrijfs e-mail ID
|
||||
DocType: Employee,Provide Email Address registered in company,Zorg voor een bedrijfs e-mail ID
|
||||
DocType: Hub Settings,Seller City,Verkoper Stad
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Selecteer een Student Group
|
||||
,Absent Student Report,Absent Student Report
|
||||
@ -1127,7 +1127,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Blauw
|
||||
DocType: Purchase Invoice,Is Return,Is Return
|
||||
DocType: Price List Country,Price List Country,Prijslijst Land
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Stel Email ID
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Stel Email Address
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{0} valid serial nos for Item {1},{0} geldig serienummers voor Artikel {1}
|
||||
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Artikelcode kan niet worden gewijzigd voor Serienummer
|
||||
@ -2218,7 +2218,7 @@ DocType: Fiscal Year,Year End Date,Jaar Einddatum
|
||||
DocType: Task Depends On,Task Depends On,Taak Hangt On
|
||||
DocType: Supplier Quotation,Opportunity,Opportunity
|
||||
,Completed Production Orders,Voltooide productieorders
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Rij {0}: Voor leverancier {0} e-id is vereist om e-mail te sturen
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Rij {0}: Voor leverancier {0} e-id is vereist om e-mail te sturen
|
||||
DocType: Operation,Default Workstation,Standaard Werkstation
|
||||
DocType: Notification Control,Expense Claim Approved Message,Kostendeclaratie Goedgekeurd Bericht
|
||||
DocType: Payment Entry,Deductions or Loss,Aftrek of verlies
|
||||
@ -3697,7 +3697,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Stel Exchange winst / verlies
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Aanvraagperiode kan niet over twee alocation platen
|
||||
DocType: Item Group,Default Expense Account,Standaard Kostenrekening
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Student Batch of Course Schedule is verplicht
|
||||
DocType: Student,Student Email ID,Student Email ID
|
||||
DocType: Student,Student Email Address,Student Email Address
|
||||
DocType: Employee,Notice (days),Kennisgeving ( dagen )
|
||||
DocType: Tax Rule,Sales Tax Template,Sales Tax Template
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Selecteer items om de factuur te slaan
|
||||
@ -3848,7 +3848,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Gro
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Bekijk Leads
|
||||
DocType: Program Enrollment Tool,New Program,nieuw programma
|
||||
DocType: Item Attribute Value,Attribute Value,Eigenschap Waarde
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","E-mail ID moet uniek zijn, bestaat al voor {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","E-mail ID moet uniek zijn, bestaat al voor {0}"
|
||||
,Itemwise Recommended Reorder Level,Artikelgebaseerde Aanbevolen Bestelniveau
|
||||
DocType: Salary Detail,Salary Detail,salaris Detail
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Selecteer eerst {0}
|
||||
@ -4050,7 +4050,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Project activiteit / taak.
|
||||
DocType: Vehicle Log,Refuelling Details,Tanken Details
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Genereer Salarisstroken
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Volgende Contact Door het kan niet hetzelfde zijn als de Lead e-mail-ID
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Volgende Contact Door het kan niet hetzelfde zijn als de Lead e-mail-ID
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Aankopen moeten worden gecontroleerd, indien ""VAN TOEPASSING VOOR"" is geselecteerd als {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Korting moet minder dan 100 zijn
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Laatste aankoop tarief niet gevonden
|
||||
@ -4345,7 +4345,7 @@ DocType: Purchase Order,Advance Paid,Voorschot Betaald
|
||||
DocType: Item,Item Tax,Artikel Belasting
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Materiaal aan Leverancier
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Accijnzen Factuur
|
||||
DocType: Expense Claim,Employees Email Id,Medewerkers E-mail ID
|
||||
DocType: Expense Claim,Employees Email Address,Medewerkers E-mail ID
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Gemarkeerde Attendance
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Kortlopende Schulden
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Stuur massa SMS naar uw contacten
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,Rent Cost
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Mengde etter avskrivninger
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Kommende kalenderhendelser
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Velg måned og år
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Skriv inn e-ID atskilt med komma, vil fakturaen bli sendt automatisk på bestemt dato"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Skriv inn e-ID atskilt med komma, vil fakturaen bli sendt automatisk på bestemt dato"
|
||||
DocType: Employee,Company Email,Selskapet E-post
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Debet beløp på kontoen Valuta
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Bank / kontanter transaksjoner mot part eller for intern overføring
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Forhåndsvisning Lønn Slip
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Konto {0} er angitt flere ganger
|
||||
DocType: Account,Expenses Included In Valuation,Kostnader som inngår i verdivurderings
|
||||
DocType: Employee,Provide email id registered in company,Gi e-id registrert i selskap
|
||||
DocType: Employee,Provide Email Address registered in company,Gi e-id registrert i selskap
|
||||
DocType: Hub Settings,Seller City,Selger by
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Velg en studentgruppe
|
||||
,Absent Student Report,Fraværende Student Rapporter
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Blå
|
||||
DocType: Purchase Invoice,Is Return,Er Return
|
||||
DocType: Price List Country,Price List Country,Prisliste Land
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Vennligst sett Email ID
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Vennligst sett Email Address
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{0} valid serial nos for Item {1},{0} gyldig serie nos for Element {1}
|
||||
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Elementkode kan ikke endres for Serial No.
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,År Sluttdato
|
||||
DocType: Task Depends On,Task Depends On,Task Avhenger
|
||||
DocType: Supplier Quotation,Opportunity,Opportunity
|
||||
,Completed Production Orders,Fullførte produksjonsordrer
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Rad {0}: For Leverandøren pålegges {0} e-id for å sende e-post
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Rad {0}: For Leverandøren pålegges {0} e-id for å sende e-post
|
||||
DocType: Operation,Default Workstation,Standard arbeidsstasjon
|
||||
DocType: Notification Control,Expense Claim Approved Message,Expense krav Godkjent melding
|
||||
DocType: Payment Entry,Deductions or Loss,Fradrag eller tap
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Sett valutagevinst / tap
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Tegningsperioden kan ikke være over to alocation poster
|
||||
DocType: Item Group,Default Expense Account,Standard kostnadskonto
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Student Batch eller kursplanen er obligatorisk
|
||||
DocType: Student,Student Email ID,Student Email ID
|
||||
DocType: Student,Student Email Address,Student Email Address
|
||||
DocType: Employee,Notice (days),Varsel (dager)
|
||||
DocType: Tax Rule,Sales Tax Template,Merverdiavgift Mal
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Velg elementer for å lagre fakturaen
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Gen
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Vis Leads
|
||||
DocType: Program Enrollment Tool,New Program,nytt program
|
||||
DocType: Item Attribute Value,Attribute Value,Attributtverdi
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","E-id må være unikt, finnes allerede for {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","E-id må være unikt, finnes allerede for {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise Anbefalt Omgjøre nivå
|
||||
DocType: Salary Detail,Salary Detail,lønn Detalj
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Vennligst velg {0} først
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Prosjektet aktivitet / oppgave.
|
||||
DocType: Vehicle Log,Refuelling Details,Fylle drivstoff Detaljer
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Generere lønnsslipper
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Neste Kontakt By kan ikke være det samme som Lead e-id
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Neste Kontakt By kan ikke være det samme som Lead e-id
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Kjøper må sjekkes, hvis dette gjelder for er valgt som {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Rabatt må være mindre enn 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Siste kjøp sats ikke funnet
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,Advance Betalt
|
||||
DocType: Item,Item Tax,Sak Skatte
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Materiale til Leverandør
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Vesenet Faktura
|
||||
DocType: Expense Claim,Employees Email Id,Ansatte Email Id
|
||||
DocType: Expense Claim,Employees Email Address,Ansatte Email Address
|
||||
DocType: Employee Attendance Tool,Marked Attendance,merket Oppmøte
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Kortsiktig gjeld
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Sende masse SMS til kontaktene dine
|
||||
|
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,Koszt Wynajmu
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Kwota po amortyzacji
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Nadchodzące wydarzenia kalendarzowe
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Wybierz miesiąc i rok
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Wpisz Email ID oddzielone przecinkami, faktura zostanie wysłana automatycznie określonego dnia"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Wpisz Email Address oddzielone przecinkami, faktura zostanie wysłana automatycznie określonego dnia"
|
||||
DocType: Employee,Company Email,Email do firmy
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Kwota debetową w walucie rachunku
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Transakcje Bank / Gotówka przeciwko osobie lub do przenoszenia wewnętrznego
|
||||
@ -685,7 +685,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Podgląd Zarobki Slip
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Konto {0} została wprowadzona wielokrotnie
|
||||
DocType: Account,Expenses Included In Valuation,Zaksięgowane wydatki w wycenie
|
||||
DocType: Employee,Provide email id registered in company,Wprowadź ID adresu email zarejestrowanego w firmie
|
||||
DocType: Employee,Provide Email Address registered in company,Wprowadź ID adresu email zarejestrowanego w firmie
|
||||
DocType: Hub Settings,Seller City,Sprzedawca Miasto
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Proszę wybrać grupy studentów
|
||||
,Absent Student Report,Nieobecny Raport Student
|
||||
@ -1128,7 +1128,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Niebieski
|
||||
DocType: Purchase Invoice,Is Return,Czy Wróć
|
||||
DocType: Price List Country,Price List Country,Cena Kraj
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Proszę ustawić Email ID
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Proszę ustawić Email Address
|
||||
DocType: Item,UOMs,Jednostki miary
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{0} valid serial nos for Item {1},{0} prawidłowe numery seryjne dla Pozycji {1}
|
||||
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Kod przedmiotu nie może być zmieniony na podstawie numeru seryjnego
|
||||
@ -2219,7 +2219,7 @@ DocType: Fiscal Year,Year End Date,Data końca roku
|
||||
DocType: Task Depends On,Task Depends On,Zadanie Zależy od
|
||||
DocType: Supplier Quotation,Opportunity,Oferta
|
||||
,Completed Production Orders,Zakończone Zamówienia Produkcyjne
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Wiersz {0}: Dla dostawcy {0} id e-mail jest wymagany do wysyłania wiadomości e-mail
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Wiersz {0}: Dla dostawcy {0} id e-mail jest wymagany do wysyłania wiadomości e-mail
|
||||
DocType: Operation,Default Workstation,Domyślne Miejsce Pracy
|
||||
DocType: Notification Control,Expense Claim Approved Message,Widomość o zwrotach kosztów zatwierdzona
|
||||
DocType: Payment Entry,Deductions or Loss,Odliczenia lub strata
|
||||
@ -3698,7 +3698,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Ustaw Exchange Zysk / strata
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Okres aplikacja nie może być w dwóch zapisów alocation
|
||||
DocType: Item Group,Default Expense Account,Domyślne konto rozchodów
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Batch student lub zajęć jest obowiązkowe
|
||||
DocType: Student,Student Email ID,Student ID email
|
||||
DocType: Student,Student Email Address,Student ID email
|
||||
DocType: Employee,Notice (days),Wymówienie (dni)
|
||||
DocType: Tax Rule,Sales Tax Template,Szablon Podatek od sprzedaży
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,"Wybierz elementy, aby zapisać fakturę"
|
||||
@ -3849,7 +3849,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Ksi
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Zobacz Tropy
|
||||
DocType: Program Enrollment Tool,New Program,Nowy program
|
||||
DocType: Item Attribute Value,Attribute Value,Wartość atrybutu
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Email ID nie może się powtarzać, ten już zajęty dla {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Email Address nie może się powtarzać, ten już zajęty dla {0}"
|
||||
,Itemwise Recommended Reorder Level,Pozycja Zalecany poziom powtórnego zamówienia
|
||||
DocType: Salary Detail,Salary Detail,Wynagrodzenie Szczegóły
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Proszę najpierw wybrać {0}
|
||||
@ -4051,7 +4051,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Czynność / zadanie projektu
|
||||
DocType: Vehicle Log,Refuelling Details,Szczegóły tankowania
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Utwórz Paski Wypłaty
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Następnie Kontakt By nie może być taka sama jak Lead id e-mail
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Następnie Kontakt By nie może być taka sama jak Lead id e-mail
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Zakup musi być sprawdzona, jeśli dotyczy wybrano jako {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Zniżka musi wynosić mniej niż 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Ostatni kurs kupna nie został znaleziony
|
||||
@ -4347,7 +4347,7 @@ DocType: Purchase Order,Advance Paid,Zaliczka
|
||||
DocType: Item,Item Tax,Podatek dla tej pozycji
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Materiał do Dostawcy
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Akcyza Faktura
|
||||
DocType: Expense Claim,Employees Email Id,Email ID pracownika
|
||||
DocType: Expense Claim,Employees Email Address,Email Address pracownika
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Zaznaczona Obecność
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Bieżące Zobowiązania
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Wyślij zbiorczo sms do swoich kontaktów
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,د کرايې لګښت
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,اندازه د استهالک وروسته
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,راتلونکو جنتري پیښې
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,لطفا مياشت او کال وټاکئ
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date",وليکئ بريښناليک پېژند جلا شوي commas، صورتحساب به د ځانګړې نېټې په اتوماتيک ډول ولیږدول شي
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date",وليکئ بريښناليک پېژند جلا شوي commas، صورتحساب به د ځانګړې نېټې په اتوماتيک ډول ولیږدول شي
|
||||
DocType: Employee,Company Email,شرکت دبرېښنا ليک
|
||||
DocType: GL Entry,Debit Amount in Account Currency,په حساب د اسعارو ډیبیټ مقدار
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,بانک / د نقدو پیسو د ګوند پر وړاندې او یا د داخلي د لیږد لپاره د معاملو
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,د مخکتنې معاش ټوټه
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,ګڼون {0} په څو ځله داخل شوي دي
|
||||
DocType: Account,Expenses Included In Valuation,لګښتونه شامل په ارزښت
|
||||
DocType: Employee,Provide email id registered in company,ایمیل پېژند په شرکت ثبت برابرول
|
||||
DocType: Employee,Provide Email Address registered in company,ایمیل پېژند په شرکت ثبت برابرول
|
||||
DocType: Hub Settings,Seller City,پلورونکی ښار
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,مهرباني غوره زده کوونکو د ګروپ
|
||||
,Absent Student Report,غیر حاضر زده کوونکو راپور
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,آبي
|
||||
DocType: Purchase Invoice,Is Return,آیا بیرته
|
||||
DocType: Price List Country,Price List Country,بیې په لېست کې د هېواد
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,لطفا جوړ دبرېښنا ليک ID
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,لطفا جوړ دبرېښنا ليک ID
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,د قالب قانون د سریال شمیره بدلون نه شي کولای
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,کال د پای نیټه
|
||||
DocType: Task Depends On,Task Depends On,کاري پورې تړلی دی د
|
||||
DocType: Supplier Quotation,Opportunity,فرصت
|
||||
,Completed Production Orders,بشپړ تولید امر
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,د کتارونو تر {0}: د عرضه {0} برېښليک پېژند ته اړتيا ده ترڅو ایمیل واستوي
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,د کتارونو تر {0}: د عرضه {0} برېښليک پېژند ته اړتيا ده ترڅو ایمیل واستوي
|
||||
DocType: Operation,Default Workstation,default Workstation
|
||||
DocType: Notification Control,Expense Claim Approved Message,اخراجاتو ادعا تصویب پيغام
|
||||
DocType: Payment Entry,Deductions or Loss,د مجرايي او يا له لاسه ورکول
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,د ټاکلو په موخه د
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,کاریال موده نه شي کولای په ټول دوه alocation اسناد وي
|
||||
DocType: Item Group,Default Expense Account,Default اخراجاتو اکانټ
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,د زده کونکو د دسته یا کورس ویش الزامی دی
|
||||
DocType: Student,Student Email ID,د زده کونکو د ليک ID
|
||||
DocType: Student,Student Email Address,د زده کونکو د ليک ID
|
||||
DocType: Employee,Notice (days),خبرتیا (ورځې)
|
||||
DocType: Tax Rule,Sales Tax Template,خرڅلاو د مالياتو د کينډۍ
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,توکي چې د صورتحساب د ژغورلو وټاکئ
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,ل
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,محتویات ياه
|
||||
DocType: Program Enrollment Tool,New Program,د نوي پروګرام
|
||||
DocType: Item Attribute Value,Attribute Value,منسوب ارزښت
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}",Email پېژند باید بې سارې وي، له پخوا لپاره موجود {0}
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}",Email پېژند باید بې سارې وي، له پخوا لپاره موجود {0}
|
||||
,Itemwise Recommended Reorder Level,نورتسهیالت وړانديز شوي ترمیمي د ليول
|
||||
DocType: Salary Detail,Salary Detail,معاش تفصیلي
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,مهرباني غوره {0} په لومړي
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,د پروژې د فعاليت / دنده.
|
||||
DocType: Vehicle Log,Refuelling Details,Refuelling نورولوله
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,معاش ټوټه تولید
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,بل د تماس By نه شي کولای د سرب د ليک پېژند په توګه ورته وي
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,بل د تماس By نه شي کولای د سرب د ليک پېژند په توګه ورته وي
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}",د خريداري باید وکتل شي، که د تطبیق لپاره د ده په توګه وټاکل {0}
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,تخفیف باید څخه کم 100 وي
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,تېره اخیستلو کچه ونه موندل شو
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,پرمختللی ورکړل
|
||||
DocType: Item,Item Tax,د قالب د مالياتو
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,ته عرضه مواد
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,وسیله صورتحساب
|
||||
DocType: Expense Claim,Employees Email Id,د کارکوونکو دبرېښنا ليک Id
|
||||
DocType: Expense Claim,Employees Email Address,د کارکوونکو دبرېښنا ليک Id
|
||||
DocType: Employee Attendance Tool,Marked Attendance,د پام وړ د حاضرۍ
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,اوسني مسؤلیتونه
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,ستاسو د تماس ډله SMS وليږئ
|
||||
|
|
@ -217,7 +217,7 @@ apps/erpnext/erpnext/accounts/utils.py +310,Payment Entry has been modified afte
|
||||
apps/erpnext/erpnext/stock/doctype/item/item.py +445,{0} entered twice in Item Tax,{0} entrou duas vezes no Imposto do Item
|
||||
DocType: Workstation,Rent Cost,Custo do Aluguel
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Selecione mês e ano
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Digite os endereços de email separados por vírgulas, a fatura será enviada automaticamente na data determinada"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Digite os endereços de email separados por vírgulas, a fatura será enviada automaticamente na data determinada"
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Montante Débito em Conta de moeda
|
||||
apps/erpnext/erpnext/config/hr.py +197,"Employee designation (e.g. CEO, Director etc.).","Designação do colaborador (por exemplo, CEO, Diretor, etc.)"
|
||||
apps/erpnext/erpnext/controllers/recurring_document.py +220,Please enter 'Repeat on Day of Month' field value,"Por favor, digite 'Repeat no Dia do Mês ' valor do campo"
|
||||
@ -418,7 +418,7 @@ apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +277,Pa
|
||||
DocType: Purchase Receipt Item Supplied,Current Stock,Estoque Atual
|
||||
apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1} does not linked to Item {2},Linha # {0}: Ativo {1} não vinculado ao item {2}
|
||||
DocType: Account,Expenses Included In Valuation,Despesas Incluídas na Avaliação
|
||||
DocType: Employee,Provide email id registered in company,Fornecer Endereço de email registrado na empresa
|
||||
DocType: Employee,Provide Email Address registered in company,Fornecer Endereço de email registrado na empresa
|
||||
DocType: Hub Settings,Seller City,Cidade do Vendedor
|
||||
DocType: Email Digest,Next email will be sent on:,Próximo email será enviado em:
|
||||
DocType: Offer Letter Term,Offer Letter Term,Termos da Carta de Oferta
|
||||
@ -673,7 +673,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +40,'Actual Start Date' can n
|
||||
DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,Pagamento líquido (por extenso) será visível quando você salvar a folha de pagamento.
|
||||
DocType: Purchase Invoice,Is Return,É Devolução
|
||||
DocType: Price List Country,Price List Country,Preço da lista País
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,"Por favor, defina-mail ID"
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,"Por favor, defina-mail ID"
|
||||
DocType: Item,UOMs,Unidades de Medida
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{0} valid serial nos for Item {1},{0} números de série válidos para o item {1}
|
||||
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Código do item não pode ser alterado para o nº de série.
|
||||
@ -1368,7 +1368,7 @@ apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +785,Item or Warehouse for row {0} does not match Material Request,Item ou Armazén na linha {0} não corresponde à Requisição de Material
|
||||
DocType: Fiscal Year,Year End Date,Data final do ano
|
||||
,Completed Production Orders,Ordens Produzidas
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Linha {0}: É necessário ID de email de fornecedor {0} para poder enviar o email
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Linha {0}: É necessário ID de email de fornecedor {0} para poder enviar o email
|
||||
DocType: Operation,Default Workstation,Estação de Trabalho Padrão
|
||||
DocType: Notification Control,Expense Claim Approved Message,Mensagem de aprovação do Pedido de Reembolso de Despesas
|
||||
DocType: Payment Entry,Deductions or Loss,Dedução ou Perda
|
||||
@ -2379,7 +2379,7 @@ DocType: Maintenance Visit Purpose,Maintenance Visit Purpose,Finalidade da visit
|
||||
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Livro Razão
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Veja os Clientes em Potencial
|
||||
DocType: Item Attribute Value,Attribute Value,Atributo Valor
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","ID de email deve ser único, já existente para {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","ID de email deve ser único, já existente para {0}"
|
||||
,Itemwise Recommended Reorder Level,Níves de Reposição Recomendados por Item
|
||||
DocType: Salary Detail,Salary Detail,Detalhes de salário
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Por favor seleccione {0} primeiro
|
||||
@ -2708,7 +2708,7 @@ DocType: Assessment,Room,Sala
|
||||
DocType: Item,Item Tax,Imposto do Item
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Material a Fornecedor
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Excise Invoice
|
||||
DocType: Expense Claim,Employees Email Id,Endereços de Email dos Colaboradores
|
||||
DocType: Expense Claim,Employees Email Address,Endereços de Email dos Colaboradores
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Passivo Circulante
|
||||
DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Considere Imposto ou Encargo para
|
||||
apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +60,Actual Qty is mandatory,Quant. Real é obrigatória
|
||||
|
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,Custo de Aluguer
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Montante Após Depreciação
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Próximos eventos de calendário
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,"Por favor, selecione o mês e o ano"
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date",Digite o ID de email separado por vírgulas. A fatura será enviada automaticamente em determinada data
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date",Digite o ID de email separado por vírgulas. A fatura será enviada automaticamente em determinada data
|
||||
DocType: Employee,Company Email,Email da Empresa
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Montante de Débito na Moeda da Conta
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Transações Bancárias/Dinheiro em terceiros ou em transferências internas
|
||||
@ -684,7 +684,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Pré-visualizar Folha de Pagamento
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,A conta {0} foi inserida várias vezes
|
||||
DocType: Account,Expenses Included In Valuation,Despesas Incluídos na Estimativa
|
||||
DocType: Employee,Provide email id registered in company,Forneça o ID do email registado na empresa
|
||||
DocType: Employee,Provide Email Address registered in company,Forneça o ID do email registado na empresa
|
||||
DocType: Hub Settings,Seller City,Vendedor Cidade
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,"Por favor, selecione um Grupo de Estudantes"
|
||||
,Absent Student Report,Ausente Relatório do Estudante
|
||||
@ -1127,7 +1127,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Azul
|
||||
DocType: Purchase Invoice,Is Return,É um Retorno
|
||||
DocType: Price List Country,Price List Country,País da Lista de Preços
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,"Por favor, defina a ID do Email"
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,"Por favor, defina a ID do Email"
|
||||
DocType: Item,UOMs,UOMS
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{0} valid serial nos for Item {1},Nº de série válido {0} para o Item {1}
|
||||
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,O Código de Item não pode ser alterado por um Nº de Serie.
|
||||
@ -2219,7 +2219,7 @@ DocType: Fiscal Year,Year End Date,Data de Fim de Ano
|
||||
DocType: Task Depends On,Task Depends On,Tarefa depende de
|
||||
DocType: Supplier Quotation,Opportunity,Oportunidade
|
||||
,Completed Production Orders,Pedidos de Produção Concluídos
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Linha Row {0}: É necessárioo ID de email de fornecedor {0} para poder enviar o email
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Linha Row {0}: É necessárioo ID de email de fornecedor {0} para poder enviar o email
|
||||
DocType: Operation,Default Workstation,Posto de Trabalho Padrão
|
||||
DocType: Notification Control,Expense Claim Approved Message,Mensagem de Reembolso de Despesas Aprovado
|
||||
DocType: Payment Entry,Deductions or Loss,Deduções ou Perdas
|
||||
@ -3697,7 +3697,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Definir o Exchange Perda / Ganho
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,O período do pedido não pode ser entre dois registos de atribuição
|
||||
DocType: Item Group,Default Expense Account,Conta Despesa Padrão
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Batch estudante ou Calendário de Cursos é obrigatória
|
||||
DocType: Student,Student Email ID,Student E-mail ID
|
||||
DocType: Student,Student Email Address,Student E-mail ID
|
||||
DocType: Employee,Notice (days),Aviso (dias)
|
||||
DocType: Tax Rule,Sales Tax Template,Template Imposto sobre Vendas
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Selecione os itens para salvar a fatura
|
||||
@ -3848,7 +3848,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Raz
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Veja Leads
|
||||
DocType: Program Enrollment Tool,New Program,Novo Programa
|
||||
DocType: Item Attribute Value,Attribute Value,Valor do Atributo
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","O ID de Email deve ser único, já existe para {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","O ID de Email deve ser único, já existe para {0}"
|
||||
,Itemwise Recommended Reorder Level,Nível de Reposição de Item Recomendado Inteligente
|
||||
DocType: Salary Detail,Salary Detail,Detalhe salário
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,"Por favor, seleccione primeiro {0}"
|
||||
@ -4050,7 +4050,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Atividade / tarefa do projeto.
|
||||
DocType: Vehicle Log,Refuelling Details,Detalhes de reabastecimento
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Gerar Folhas de Vencimento
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Próximo Contactar por não pode ser o mesmo que o chumbo-mail id
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Próximo Contactar por não pode ser o mesmo que o chumbo-mail id
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","A compra deve ser verificada, se for Aplicável Para é selecionada como {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,O Desconto deve ser inferior a 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,A Taxa de Última Compra não foi encontrada
|
||||
@ -4345,7 +4345,7 @@ DocType: Purchase Order,Advance Paid,Adiantamento Pago
|
||||
DocType: Item,Item Tax,Taxa do Item
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Material para o Fornecedor
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Fatura de Imposto Especial
|
||||
DocType: Expense Claim,Employees Email Id,ID de Email de Funcionários
|
||||
DocType: Expense Claim,Employees Email Address,ID de Email de Funcionários
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Presença Marcada
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Passivo a Curto Prazo
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Enviar SMS em massa para seus contatos
|
||||
|
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,Chirie Cost
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Suma după amortizare
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Evenimente viitoare Calendar
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Vă rugăm selectați luna și anul
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Introduceți ID-uri de email separate prin virgule, factura va fi trimisa prin email automat la o anumită dată"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Introduceți ID-uri de email separate prin virgule, factura va fi trimisa prin email automat la o anumită dată"
|
||||
DocType: Employee,Company Email,E-mail Companie
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Suma debit în contul valutar
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,tranzacții bancare / numerar contra partidului sau pentru transfer intern
|
||||
@ -684,7 +684,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Previzualizare Salariu alunecare
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Contul {0} a fost introdus de mai multe ori
|
||||
DocType: Account,Expenses Included In Valuation,Cheltuieli Incluse în Evaluare
|
||||
DocType: Employee,Provide email id registered in company,Furnizarea id-ul de e-mail înregistrată în societate
|
||||
DocType: Employee,Provide Email Address registered in company,Furnizarea id-ul de e-mail înregistrată în societate
|
||||
DocType: Hub Settings,Seller City,Vânzător oraș
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Vă rugăm să selectați un grup Student
|
||||
,Absent Student Report,Raport de student absent
|
||||
@ -1127,7 +1127,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Albastru
|
||||
DocType: Purchase Invoice,Is Return,Este de returnare
|
||||
DocType: Price List Country,Price List Country,Lista de preturi Țară
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Vă rugăm să setați Email ID
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Vă rugăm să setați Email Address
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{0} valid serial nos for Item {1},{0} numere de serie valabile pentru articolul {1}
|
||||
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Cod articol nu pot fi schimbate pentru Serial No.
|
||||
@ -2212,7 +2212,7 @@ DocType: Fiscal Year,Year End Date,Anul Data de încheiere
|
||||
DocType: Task Depends On,Task Depends On,Sarcina Depinde
|
||||
DocType: Supplier Quotation,Opportunity,Oportunitate
|
||||
,Completed Production Orders,Comenzi de Producție Finalizate
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Rândul {0}: furnizor {0} e-mail id-ul este necesar pentru a trimite e-mail
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Rândul {0}: furnizor {0} e-mail id-ul este necesar pentru a trimite e-mail
|
||||
DocType: Operation,Default Workstation,Implicit Workstation
|
||||
DocType: Notification Control,Expense Claim Approved Message,Mesaj Aprobare Revendicare Cheltuieli
|
||||
DocType: Payment Entry,Deductions or Loss,Deducerile sau Pierdere
|
||||
@ -3687,7 +3687,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Set Exchange Gain / Pierdere
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Perioada de aplicare nu poate fi peste două înregistrări alocation
|
||||
DocType: Item Group,Default Expense Account,Cont de Cheltuieli Implicit
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Lot de student sau un curs Program este obligatoriu
|
||||
DocType: Student,Student Email ID,ID-ul de student e-mail
|
||||
DocType: Student,Student Email Address,ID-ul de student e-mail
|
||||
DocType: Employee,Notice (days),Preaviz (zile)
|
||||
DocType: Tax Rule,Sales Tax Template,Format impozitul pe vânzări
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Selectați elemente pentru a salva factura
|
||||
@ -3838,7 +3838,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Reg
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Vezi Oportunitati
|
||||
DocType: Program Enrollment Tool,New Program,programul nou
|
||||
DocType: Item Attribute Value,Attribute Value,Valoare Atribut
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Id Email trebuie să fie unic, există deja pentru {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Id Email trebuie să fie unic, există deja pentru {0}"
|
||||
,Itemwise Recommended Reorder Level,Nivel de Reordonare Recomandat al Articolului-Awesome
|
||||
DocType: Salary Detail,Salary Detail,Detalii salariu
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Vă rugăm selectați 0} {întâi
|
||||
@ -4040,7 +4040,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Activitatea de proiect / sarcină.
|
||||
DocType: Vehicle Log,Refuelling Details,Detalii de realimentare
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Generează fluturașe de salariu
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,În continuare Contact Prin faptul că nu poate fi la fel ca id-ul de e-mail Plumb
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,În continuare Contact Prin faptul că nu poate fi la fel ca id-ul de e-mail Plumb
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Destinat Cumpărării trebuie să fie bifat, dacă Se Aplica Pentru este selectat ca şi {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Reducerea trebuie să fie mai mică de 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Rata Ultima achiziție nu a fost găsit
|
||||
@ -4336,7 +4336,7 @@ DocType: Purchase Order,Advance Paid,Avans plătit
|
||||
DocType: Item,Item Tax,Taxa Articol
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Material de Furnizor
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Accize factură
|
||||
DocType: Expense Claim,Employees Email Id,Id Email Angajat
|
||||
DocType: Expense Claim,Employees Email Address,Id Email Angajat
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Participarea marcat
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Raspunderi Curente
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Trimite SMS-uri în masă a persoanelor de contact
|
||||
|
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,Стоимость аренды
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Сумма после амортизации
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Предстоящие Календарь событий
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,"Пожалуйста, выберите месяц и год"
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Введите электронный идентификатор разделенных запятыми, счет будет автоматически отправлен на определенную дату"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Введите электронный идентификатор разделенных запятыми, счет будет автоматически отправлен на определенную дату"
|
||||
DocType: Employee,Company Email,Email предприятия
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Дебет Сумма в валюте счета
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Банк / Кассовые операции против партии или для внутренней передачи
|
||||
@ -685,7 +685,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Просмотр Зарплата скольжению
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Счет {0} был введен несколько раз
|
||||
DocType: Account,Expenses Included In Valuation,"Затрат, включаемых в оценке"
|
||||
DocType: Employee,Provide email id registered in company,Обеспечить электронный идентификатор зарегистрирован в компании
|
||||
DocType: Employee,Provide Email Address registered in company,Обеспечить электронный идентификатор зарегистрирован в компании
|
||||
DocType: Hub Settings,Seller City,Продавец Город
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,"Пожалуйста, выберите группу Student"
|
||||
,Absent Student Report,Отсутствует Student Report
|
||||
@ -1128,7 +1128,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Синий
|
||||
DocType: Purchase Invoice,Is Return,Является Вернуться
|
||||
DocType: Price List Country,Price List Country,Цены Страна
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,"Пожалуйста, установите Email ID"
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,"Пожалуйста, установите Email Address"
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,Код товара не может быть изменен для серийный номер
|
||||
@ -2217,7 +2217,7 @@ DocType: Fiscal Year,Year End Date,Дата окончания года
|
||||
DocType: Task Depends On,Task Depends On,Задачи зависит от
|
||||
DocType: Supplier Quotation,Opportunity,Возможность
|
||||
,Completed Production Orders,Завершенные Производственные заказы
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Строка {0}: Для поставщика {0} электронный идентификатор требуется для отправки электронной почты
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Строка {0}: Для поставщика {0} электронный идентификатор требуется для отправки электронной почты
|
||||
DocType: Operation,Default Workstation,По умолчанию Workstation
|
||||
DocType: Notification Control,Expense Claim Approved Message,Расходов претензии Утверждено Сообщение
|
||||
DocType: Payment Entry,Deductions or Loss,Отчисления или убыток
|
||||
@ -3695,7 +3695,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Установить Курсо
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Срок подачи заявлений не может быть по двум alocation записей
|
||||
DocType: Item Group,Default Expense Account,По умолчанию расходов счета
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Student Пакетный или Расписание курса является обязательным
|
||||
DocType: Student,Student Email ID,Student Email ID
|
||||
DocType: Student,Student Email Address,Student Email Address
|
||||
DocType: Employee,Notice (days),Уведомление (дней)
|
||||
DocType: Tax Rule,Sales Tax Template,Шаблон Налога с продаж
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Выберите элементы для сохранения счета-фактуры
|
||||
@ -3846,7 +3846,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Б
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Посмотреть покупка
|
||||
DocType: Program Enrollment Tool,New Program,Новая программа
|
||||
DocType: Item Attribute Value,Attribute Value,Значение атрибута
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","ID электронной почты должен быть уникальным, уже существует для {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","ID электронной почты должен быть уникальным, уже существует для {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise Рекомендуем изменить порядок Уровень
|
||||
DocType: Salary Detail,Salary Detail,Заработная плата: Подробности
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,"Пожалуйста, выберите {0} первый"
|
||||
@ -4048,7 +4048,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Проектная деятельность / задачи.
|
||||
DocType: Vehicle Log,Refuelling Details,Заправочные Подробнее
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Создать зарплат Slips
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,"Следующая Контактные К не может быть такой же, как ведущего идентификатор электронной почты"
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,"Следующая Контактные К не может быть такой же, как ведущего идентификатор электронной почты"
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Покупка должна быть проверена, если выбран Применимо для как {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Скидка должна быть меньше 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Последний курс покупки не найден
|
||||
@ -4344,7 +4344,7 @@ DocType: Purchase Order,Advance Paid,Авансовая выплата
|
||||
DocType: Item,Item Tax,Пункт Налоговый
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Материал Поставщику
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Акцизный Счет
|
||||
DocType: Expense Claim,Employees Email Id,Сотрудники Email ID
|
||||
DocType: Expense Claim,Employees Email Address,Сотрудники Email Address
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Выраженное Посещаемость
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Текущие обязательства
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Отправить массовый SMS в список контактов
|
||||
|
Can't render this file because it is too large.
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,කුලියට වියදම
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,ක්ෂය පසු ප්රමාණය
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,ඉදිරියට එන දින දසුන සිදුවීම්
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,කරුණාකර වසර සහ මාසය තෝරා
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","කොමාවකින් වෙන් ඊ-තැපැල් id ඇතුලත් කරන්න, ඉන්වොයිසි විශේෂයෙන් දිනය ස්වයංක්රීයව තැපැල් කරනු"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","කොමාවකින් වෙන් ඊ-තැපැල් id ඇතුලත් කරන්න, ඉන්වොයිසි විශේෂයෙන් දිනය ස්වයංක්රීයව තැපැල් කරනු"
|
||||
DocType: Employee,Company Email,සමාගම විද්යුත්
|
||||
DocType: GL Entry,Debit Amount in Account Currency,ගිණුම ව්යවහාර මුදල් ඩෙබිට් මුදල
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,පක්ෂයට එරෙහිව හෝ අභ්යන්තර ස්ථාන මාරු සඳහා බැංකුව / මුදල් ගනුෙදනු
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,පෙරදසුන වැටුප කුවිතාන්සියක්
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,ගිණුම {0} වාර කිහිපයක් ඇතුලත් කර ඇත
|
||||
DocType: Account,Expenses Included In Valuation,ඇතුලත් තක්සේරු දී වියදම්
|
||||
DocType: Employee,Provide email id registered in company,සමාගම ලියාපදිංචි ඊ id ලබා
|
||||
DocType: Employee,Provide Email Address registered in company,සමාගම ලියාපදිංචි ඊ id ලබා
|
||||
DocType: Hub Settings,Seller City,විකුණන්නා සිටි
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,කරුණාකර ශිෂ්ය සමූහය තෝරා
|
||||
,Absent Student Report,නැති කල ශිෂ්ය වාර්තාව
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,නිල්
|
||||
DocType: Purchase Invoice,Is Return,ප්රතිලාභ වේ
|
||||
DocType: Price List Country,Price List Country,මිල ලැයිස්තුව රට
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,විද්යුත් හැඳුනුම්පත සකස් කරන්න
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,විද්යුත් හැඳුනුම්පත සකස් කරන්න
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,අයිතමය සංග්රහයේ අනු අංකය වෙනස් කළ නොහැකි
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,වසර අවසාන දිනය
|
||||
DocType: Task Depends On,Task Depends On,කාර්ය සාධක මත රඳා පවතී
|
||||
DocType: Supplier Quotation,Opportunity,අවස්ථාවක්
|
||||
,Completed Production Orders,සම්පූර්ණ කරන ලද නිෂ්පාදන නියෝග
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,ෙරෝ {0}: සැපයුම්කරු සඳහා {0} ඊ-තැපැල් id ඊ-තැපැල් යැවීමට අවශ්ය වේ
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,ෙරෝ {0}: සැපයුම්කරු සඳහා {0} ඊ-තැපැල් id ඊ-තැපැල් යැවීමට අවශ්ය වේ
|
||||
DocType: Operation,Default Workstation,පෙරනිමි වර්ක්ස්ටේෂන්
|
||||
DocType: Notification Control,Expense Claim Approved Message,වියදම් හිමිකම් අනුමත පණිවුඩය
|
||||
DocType: Payment Entry,Deductions or Loss,අඩු කිරීම් හෝ අඞු කිරීමට
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,විනිමය ලාභ /
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,අයදුම් කාලය alocation වාර්තා දෙක හරහා විය නොහැකි
|
||||
DocType: Item Group,Default Expense Account,පෙරනිමි ගෙවීමේ ගිණුම්
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,ශිෂ්ය කණ්ඩායම හෝ පාඨමාලා කාලසටහන අනිවාර්ය වේ
|
||||
DocType: Student,Student Email ID,ශිෂ්ය විද්යුත් හැඳුනුම්පත
|
||||
DocType: Student,Student Email Address,ශිෂ්ය විද්යුත් හැඳුනුම්පත
|
||||
DocType: Employee,Notice (days),නිවේදනය (දින)
|
||||
DocType: Tax Rule,Sales Tax Template,විකුණුම් බදු සැකිල්ල
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,ඉන්වොයිස් බේරා ගැනීමට භාණ්ඩ තෝරන්න
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,ප
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,ආදර්ශ දැක්ම
|
||||
DocType: Program Enrollment Tool,New Program,නව වැඩසටහන
|
||||
DocType: Item Attribute Value,Attribute Value,ගති ලක්ෂණය අගය
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","විද්යුත් id අනන්ය විය යුතුය, දැනටමත් {0} සඳහා පවතී"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","විද්යුත් id අනන්ය විය යුතුය, දැනටමත් {0} සඳහා පවතී"
|
||||
,Itemwise Recommended Reorder Level,Itemwise සීරුමාරු කිරීමේ පෙළ නිර්දේශිත
|
||||
DocType: Salary Detail,Salary Detail,වැටුප් විස්තර
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,කරුණාකර පළමු {0} තෝරා
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,ව්යාපෘති ක්රියාකාරකම් / කටයුත්තක්.
|
||||
DocType: Vehicle Log,Refuelling Details,Refuelling විස්තර
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,වැටුප ලංකා අන්තර් බැංකු ගෙවීම් පද්ධතිය උත්පාදනය
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,ඊළඟට අප අමතන්න කිරීම පෙරමුණ විද්යුත් id ලෙස සමාන විය නොහැකි
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,ඊළඟට අප අමතන්න කිරීම පෙරමුණ විද්යුත් id ලෙස සමාන විය නොහැකි
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","අදාළ සඳහා {0} ලෙස තෝරා ගන්නේ නම් මිලට ගැනීම, පරීක්ෂා කළ යුතු"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,වට්ටමක් 100 කට වඩා අඩු විය යුතු
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,පසුගිය මිලදී අනුපාතය සොයාගත නොහැකි
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,උසස් ගෙවුම්
|
||||
DocType: Item,Item Tax,අයිතමය බදු
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,සැපයුම්කරු ද්රව්යමය
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,සුරාබදු ඉන්වොයිසිය
|
||||
DocType: Expense Claim,Employees Email Id,සේවක විද්යුත් අංකය
|
||||
DocType: Expense Claim,Employees Email Address,සේවක විද්යුත් අංකය
|
||||
DocType: Employee Attendance Tool,Marked Attendance,කැපී පෙනෙන පැමිණීම
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,ජංගම වගකීම්
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,ඔබගේ සම්බන්ධතා මහජන SMS යවන්න
|
||||
|
Can't render this file because it is too large.
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,Rent Cost
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Suma po odpisoch
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Nadchádzajúce Udalosti v kalendári
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Vyberte měsíc a rok
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Zadejte e-mail id odděleny čárkami, bude faktura bude zaslán automaticky na určité datum"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Zadejte e-mail id odděleny čárkami, bude faktura bude zaslán automaticky na určité datum"
|
||||
DocType: Employee,Company Email,E-mail spoločnosti
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Debetné Čiastka v mene účtu
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Banka / Hotovostné operácie proti osobe alebo pre interný prevod
|
||||
@ -685,7 +685,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Preview výplatnej páske
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Účet {0} bol zadaný viackrát
|
||||
DocType: Account,Expenses Included In Valuation,Náklady ceně oceňování
|
||||
DocType: Employee,Provide email id registered in company,Poskytnout e-mail id zapsané ve firmě
|
||||
DocType: Employee,Provide Email Address registered in company,Poskytnout e-mail id zapsané ve firmě
|
||||
DocType: Hub Settings,Seller City,Prodejce City
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,"Prosím, vyberte si študentská skupina"
|
||||
,Absent Student Report,Absent Študent Report
|
||||
@ -1128,7 +1128,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Modrý
|
||||
DocType: Purchase Invoice,Is Return,Je Return
|
||||
DocType: Price List Country,Price List Country,Cenník Krajina
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Prosím nastavte e-mail ID
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Prosím nastavte e-mail ID
|
||||
DocType: Item,UOMs,Merné Jednotky
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{0} valid serial nos for Item {1},{0} platné sériové čísla pre 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.
|
||||
@ -2219,7 +2219,7 @@ DocType: Fiscal Year,Year End Date,Dátum konca roka
|
||||
DocType: Task Depends On,Task Depends On,Úloha je závislá na
|
||||
DocType: Supplier Quotation,Opportunity,Příležitost
|
||||
,Completed Production Orders,Dokončené Výrobní zakázky
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Riadok {0}: Pre dodávateľov je potrebná {0} e-mail id poslať e-mail
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Riadok {0}: Pre dodávateľov je potrebná {0} e-mail id poslať e-mail
|
||||
DocType: Operation,Default Workstation,Výchozí Workstation
|
||||
DocType: Notification Control,Expense Claim Approved Message,Správa o schválení úhrady výdavkov
|
||||
DocType: Payment Entry,Deductions or Loss,Odpočty alebo strata
|
||||
@ -3698,7 +3698,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Set Exchange zisk / strata
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Obdobie podávania žiadostí nemôže byť na dvoch alokácie záznamy
|
||||
DocType: Item Group,Default Expense Account,Výchozí výdajového účtu
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Študent Batch alebo rozvrh je povinné
|
||||
DocType: Student,Student Email ID,Študent ID e-mailu
|
||||
DocType: Student,Student Email Address,Študent ID e-mailu
|
||||
DocType: Employee,Notice (days),Oznámenie (dni)
|
||||
DocType: Tax Rule,Sales Tax Template,Daň z predaja Template
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,"Vyberte položky, ktoré chcete uložiť faktúru"
|
||||
@ -3849,7 +3849,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Hla
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Zobraziť Obchodné iniciatívy
|
||||
DocType: Program Enrollment Tool,New Program,nový program
|
||||
DocType: Item Attribute Value,Attribute Value,Hodnota atributu
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","E-mail id musí být jedinečný, již existuje {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","E-mail id musí být jedinečný, již existuje {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise Doporučené Změna pořadí Level
|
||||
DocType: Salary Detail,Salary Detail,plat Detail
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,"Prosím, nejprve vyberte {0}"
|
||||
@ -4051,7 +4051,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Projektová činnost / úkol.
|
||||
DocType: Vehicle Log,Refuelling Details,tankovacie Podrobnosti
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Generování výplatních páskách
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Nasledujúce Kontakt Tým nemôže byť rovnaká ako Lead ID e-mailu
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Nasledujúce Kontakt Tým nemôže byť rovnaká ako Lead ID e-mailu
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Nákup musí být zkontrolováno, v případě potřeby pro vybrán jako {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Sleva musí být menší než 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Posledná cena pri platbe nebol nájdený
|
||||
@ -4347,7 +4347,7 @@ DocType: Purchase Order,Advance Paid,Vyplacené zálohy
|
||||
DocType: Item,Item Tax,Daň Položky
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Materiál Dodávateľovi
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Spotrebný Faktúra
|
||||
DocType: Expense Claim,Employees Email Id,Zaměstnanci Email Id
|
||||
DocType: Expense Claim,Employees Email Address,Zaměstnanci Email Address
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Výrazná Návštevnosť
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Krátkodobé závazky
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Posílat hromadné SMS vašim kontaktům
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,Najem Stroški
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Znesek Po amortizacijo
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Prihajajoči Koledar dogodkov
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,"Prosimo, izberite mesec in leto"
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Vnesite email id ločeni z vejicami, bo račun avtomatično poslali na določen datum"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Vnesite Email Address ločeni z vejicami, bo račun avtomatično poslali na določen datum"
|
||||
DocType: Employee,Company Email,Družba E-pošta
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Debetno Znesek v Valuta računa
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Bank / denarni posli proti osebi ali za notranjo prerazporeditvijo
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Predogled Plača listek
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Račun {0} je bil vpisan večkrat
|
||||
DocType: Account,Expenses Included In Valuation,Stroški Vključeno v vrednotenju
|
||||
DocType: Employee,Provide email id registered in company,"Zagotovite email id, registrirano v družbi"
|
||||
DocType: Employee,Provide Email Address registered in company,"Zagotovite Email Address, registrirano v družbi"
|
||||
DocType: Hub Settings,Seller City,Prodajalec Mesto
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Izberite skupino študentsko
|
||||
,Absent Student Report,Odsoten Student Report
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Modra
|
||||
DocType: Purchase Invoice,Is Return,Je Return
|
||||
DocType: Price List Country,Price List Country,Cenik Država
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,"Prosim, nastavite e-ID"
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,"Prosim, nastavite e-ID"
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{0} valid serial nos for Item {1},{0} veljavna serijski nos za postavko {1}
|
||||
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Oznaka se ne more spremeniti za Serial No.
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,Leto End Date
|
||||
DocType: Task Depends On,Task Depends On,Naloga je odvisna od
|
||||
DocType: Supplier Quotation,Opportunity,Priložnost
|
||||
,Completed Production Orders,Zaključeni Proizvodne Naročila
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Vrstica {0}: Za dobavitelja je potrebno {0} email id za pošiljanje e-pošte
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Vrstica {0}: Za dobavitelja je potrebno {0} Email Address za pošiljanje e-pošte
|
||||
DocType: Operation,Default Workstation,Privzeto Workstation
|
||||
DocType: Notification Control,Expense Claim Approved Message,Expense Zahtevek Odobreno Sporočilo
|
||||
DocType: Payment Entry,Deductions or Loss,Odbitki ali izguba
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Set Exchange dobiček / izguba
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Prijavni rok ne more biti čez dve Razporejanje zapisov
|
||||
DocType: Item Group,Default Expense Account,Privzeto Expense račun
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Študent serije ali tečaj Urnik je obvezna
|
||||
DocType: Student,Student Email ID,Študent Email ID
|
||||
DocType: Student,Student Email Address,Študent Email Address
|
||||
DocType: Employee,Notice (days),Obvestilo (dni)
|
||||
DocType: Tax Rule,Sales Tax Template,Sales Tax Predloga
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,"Izberite predmete, da shranite račun"
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Gla
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Poglej ponudbe
|
||||
DocType: Program Enrollment Tool,New Program,Nov program
|
||||
DocType: Item Attribute Value,Attribute Value,Vrednosti atributa
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Email id mora biti edinstven, že obstaja za {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Email Address mora biti edinstven, že obstaja za {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise Priporočena Preureditev Raven
|
||||
DocType: Salary Detail,Salary Detail,plača Podrobnosti
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,"Prosimo, izberite {0} najprej"
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Projektna dejavnost / naloga.
|
||||
DocType: Vehicle Log,Refuelling Details,Oskrba z gorivom Podrobnosti
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Ustvarjajo plače kombineže
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Naslednja Kontakt Po ne more biti enaka kot vodilni Email id
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Naslednja Kontakt Po ne more biti enaka kot vodilni Email Address
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Odkup je treba preveriti, če se uporablja za izbrana kot {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,"Popust, mora biti manj kot 100"
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Zadnja stopnja nakup ni bilo mogoče najti
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,Advance Paid
|
||||
DocType: Item,Item Tax,Postavka Tax
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Material za dobavitelja
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Trošarina Račun
|
||||
DocType: Expense Claim,Employees Email Id,Zaposleni Email Id
|
||||
DocType: Expense Claim,Employees Email Address,Zaposleni Email Address
|
||||
DocType: Employee Attendance Tool,Marked Attendance,markirana Udeležba
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Kratkoročne obveznosti
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Pošlji množično SMS vaših stikov
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,Qira Kosto
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Shuma Pas Zhvlerësimi
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Ardhshme Ngjarje Kalendari
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,"Ju lutem, përzgjidhni muaji dhe viti"
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Shkruani id email ndara me presje, fatura do të postohet automatikisht në datën e caktuar"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Shkruani id email ndara me presje, fatura do të postohet automatikisht në datën e caktuar"
|
||||
DocType: Employee,Company Email,Kompania Email
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Shuma Debi në llogarinë në valutë
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Bank / Cash transaksionet kundër partisë apo për transferimin e brendshëm
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Preview Paga Shqip
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Llogaria {0} ka hyrë disa herë
|
||||
DocType: Account,Expenses Included In Valuation,Shpenzimet e përfshira në Vlerësimit
|
||||
DocType: Employee,Provide email id registered in company,Sigurojë id mail regjistruar në kompaninë
|
||||
DocType: Employee,Provide Email Address registered in company,Sigurojë id mail regjistruar në kompaninë
|
||||
DocType: Hub Settings,Seller City,Shitës qytetit
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,"Ju lutem, përzgjidhni një Grup Student"
|
||||
,Absent Student Report,Mungon Raporti Student
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Blu
|
||||
DocType: Purchase Invoice,Is Return,Është Kthimi
|
||||
DocType: Price List Country,Price List Country,Lista e Çmimeve Vendi
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Ju lutem plotësoni Email ID
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Ju lutem plotësoni Email Address
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{0} valid serial nos for Item {1},{0} nos vlefshme serik për Item {1}
|
||||
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Kodi artikull nuk mund të ndryshohet për të Serial Nr
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,Viti End Date
|
||||
DocType: Task Depends On,Task Depends On,Detyra varet
|
||||
DocType: Supplier Quotation,Opportunity,Mundësi
|
||||
,Completed Production Orders,Urdhërat përfunduar prodhimit
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Row {0} Për të furnizuesit {0} email id është e nevojshme për të dërguar një email
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Row {0} Për të furnizuesit {0} Email Address është e nevojshme për të dërguar një email
|
||||
DocType: Operation,Default Workstation,Gabim Workstation
|
||||
DocType: Notification Control,Expense Claim Approved Message,Shpenzim Kërkesa Miratuar mesazh
|
||||
DocType: Payment Entry,Deductions or Loss,Zbritjet apo Humbje
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Set Exchange Gain / Humbje
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Periudha e aplikimit nuk mund të jetë në dy regjistrave alokimin
|
||||
DocType: Item Group,Default Expense Account,Llogaria e albumit shpenzimeve
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Batch Student ose Course Orari është i detyrueshëm
|
||||
DocType: Student,Student Email ID,Student Email ID
|
||||
DocType: Student,Student Email Address,Student Email Address
|
||||
DocType: Employee,Notice (days),Njoftim (ditë)
|
||||
DocType: Tax Rule,Sales Tax Template,Template Sales Tax
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Zgjidhni artikuj për të shpëtuar faturën
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Pë
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Shiko kryeson
|
||||
DocType: Program Enrollment Tool,New Program,Program i ri
|
||||
DocType: Item Attribute Value,Attribute Value,Atribut Vlera
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Email ID duhet të jetë unike, tashmë ekziston për {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Email Address duhet të jetë unike, tashmë ekziston për {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise Recommended reorder Niveli
|
||||
DocType: Salary Detail,Salary Detail,Paga Detail
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,"Ju lutem, përzgjidhni {0} parë"
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Aktiviteti i projekt / detyra.
|
||||
DocType: Vehicle Log,Refuelling Details,Details Rimbushja
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Generate paga rrëshqet
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Next Contact By nuk mund të jetë i njëjtë si Lead Email id
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Next Contact By nuk mund të jetë i njëjtë si Lead Email Address
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Blerja duhet të kontrollohet, nëse është e aplikueshme për të është zgjedhur si {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Discount duhet të jetë më pak se 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Shkalla e fundit e blerjes nuk u gjet
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,Advance Paid
|
||||
DocType: Item,Item Tax,Tatimi i artikullit
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Materiale për Furnizuesin
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Akciza Faturë
|
||||
DocType: Expense Claim,Employees Email Id,Punonjësit Email Id
|
||||
DocType: Expense Claim,Employees Email Address,Punonjësit Email Address
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Pjesëmarrja e shënuar
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Detyrimet e tanishme
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Dërgo SMS në masë për kontaktet tuaja
|
||||
|
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,Издавање Трошкови
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Износ Након Амортизација
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Предстојеће догађаје из календара
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Изаберите месец и годину
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Унесите ид е раздвојених зарезима, фактура ће аутоматски бити послат на одређени датум"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Унесите ид е раздвојених зарезима, фактура ће аутоматски бити послат на одређени датум"
|
||||
DocType: Employee,Company Email,Компанија Е-маил
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Дебитна Износ у валути рачуна
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Банка / Новчане трансакције против странке или за интерни трансфер
|
||||
@ -685,7 +685,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Преглед плата Слип
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Рачун {0} је ушла више пута
|
||||
DocType: Account,Expenses Included In Valuation,Трошкови укључени у процене
|
||||
DocType: Employee,Provide email id registered in company,Обезбедити ид е регистрован у предузећу
|
||||
DocType: Employee,Provide Email Address registered in company,Обезбедити ид е регистрован у предузећу
|
||||
DocType: Hub Settings,Seller City,Продавац Град
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Изаберите Студент Гроуп
|
||||
,Absent Student Report,Абсент Студентски Извештај
|
||||
@ -1128,7 +1128,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Плава
|
||||
DocType: Purchase Invoice,Is Return,Да ли је Повратак
|
||||
DocType: Price List Country,Price List Country,Ценовник Земља
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Молимо поставите Емаил ИД
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Молимо поставите Емаил ИД
|
||||
DocType: Item,UOMs,УОМс
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,Шифра не може се мењати за серијским бројем
|
||||
@ -2218,7 +2218,7 @@ DocType: Fiscal Year,Year End Date,Датум завршетка године
|
||||
DocType: Task Depends On,Task Depends On,Задатак Дубоко У
|
||||
DocType: Supplier Quotation,Opportunity,Прилика
|
||||
,Completed Production Orders,Завршени Продуцтион Поруџбине
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Ред {0}: За добављача {0} е-маил ид је неопходан за слање е-маил
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Ред {0}: За добављача {0} е-маил ид је неопходан за слање е-маил
|
||||
DocType: Operation,Default Workstation,Уобичајено Воркстатион
|
||||
DocType: Notification Control,Expense Claim Approved Message,Расходи потраживање Одобрено поруку
|
||||
DocType: Payment Entry,Deductions or Loss,Дедуцтионс или губитак
|
||||
@ -3696,7 +3696,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Сет курсне / Губит
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Период примене не могу бити на два намјена евиденције
|
||||
DocType: Item Group,Default Expense Account,Уобичајено Трошкови налога
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Студент партије или Термински план је обавезан
|
||||
DocType: Student,Student Email ID,Студент-маил ИД
|
||||
DocType: Student,Student Email Address,Студент-маил ИД
|
||||
DocType: Employee,Notice (days),Обавештење ( дана )
|
||||
DocType: Tax Rule,Sales Tax Template,Порез на промет Шаблон
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Изабрали ставке да спасе фактуру
|
||||
@ -3847,7 +3847,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Г
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Погледај Леадс
|
||||
DocType: Program Enrollment Tool,New Program,Нови програм
|
||||
DocType: Item Attribute Value,Attribute Value,Вредност атрибута
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Удостоверение личности электронной почты должен быть уникальным , уже существует для {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Удостоверение личности электронной почты должен быть уникальным , уже существует для {0}"
|
||||
,Itemwise Recommended Reorder Level,Препоручени ниво Итемвисе Реордер
|
||||
DocType: Salary Detail,Salary Detail,плата Детаљ
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Изаберите {0} први
|
||||
@ -4048,7 +4048,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Пројекат активност / задатак.
|
||||
DocType: Vehicle Log,Refuelling Details,Рефуеллинг Детаљи
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Генериши стаје ПЛАТА
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Следећа контактирати путем не може бити исти као водећи Емаил ИД
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Следећа контактирати путем не може бити исти као водећи Емаил ИД
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Куповина се мора проверити, ако је применљиво Јер је изабрана као {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Скидка должна быть меньше 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Последња куповина стопа није пронађен
|
||||
@ -4344,7 +4344,7 @@ DocType: Purchase Order,Advance Paid,Адванце Паид
|
||||
DocType: Item,Item Tax,Ставка Пореска
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Материјал за добављача
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Акцизе фактура
|
||||
DocType: Expense Claim,Employees Email Id,Запослени Емаил ИД
|
||||
DocType: Expense Claim,Employees Email Address,Запослени Емаил ИД
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Приметан Присуство
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Текущие обязательства
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Пошаљи СМС масовне вашим контактима
|
||||
|
Can't render this file because it is too large.
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,Hyr Kostnad
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Belopp efter avskrivningar
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Kommande kalenderhändelser
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Välj månad och år
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Ange e-post-id åtskilda med kommatecken, kommer fakturan att skickas automatiskt på visst datum"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Ange e-post-id åtskilda med kommatecken, kommer fakturan att skickas automatiskt på visst datum"
|
||||
DocType: Employee,Company Email,Företagets e-post
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Betal-Belopp i konto Valuta
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Bank / Cash transaktioner mot partiet eller för intern överföring
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Förhandsvisning lönebesked
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Konto {0} har angetts flera gånger
|
||||
DocType: Account,Expenses Included In Valuation,Kostnader ingår i rapporten
|
||||
DocType: Employee,Provide email id registered in company,Ange E-post ID registrerat i bolaget
|
||||
DocType: Employee,Provide Email Address registered in company,Ange E-post ID registrerat i bolaget
|
||||
DocType: Hub Settings,Seller City,Säljaren stad
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Välj en studentgrupp
|
||||
,Absent Student Report,Frånvarande Student Rapport
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Blå
|
||||
DocType: Purchase Invoice,Is Return,Är Returnerad
|
||||
DocType: Price List Country,Price List Country,Prislista Land
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Ställ in e-ID
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Ställ in e-ID
|
||||
DocType: Item,UOMs,UOM
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{0} valid serial nos for Item {1},{0} giltigt serienummer för punkt {1}
|
||||
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Produkt kod kan inte ändras för serienummer
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,År Slutdatum
|
||||
DocType: Task Depends On,Task Depends On,Uppgift Beror på
|
||||
DocType: Supplier Quotation,Opportunity,Möjlighet
|
||||
,Completed Production Orders,Genomförda produktionsorder
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Rad {0}: För leverantören {0} e-id som krävs för att skicka e-post
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Rad {0}: För leverantören {0} e-id som krävs för att skicka e-post
|
||||
DocType: Operation,Default Workstation,Standard arbetsstation
|
||||
DocType: Notification Control,Expense Claim Approved Message,Räkningen Godkänd Meddelande
|
||||
DocType: Payment Entry,Deductions or Loss,Avdrag eller förlust
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Ställ Exchange vinst / förlust
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Ansökningstiden kan inte vara över två alocation register
|
||||
DocType: Item Group,Default Expense Account,Standardutgiftskonto
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Student Batch eller kurs schema är obligatorisk
|
||||
DocType: Student,Student Email ID,Student E ID
|
||||
DocType: Student,Student Email Address,Student E ID
|
||||
DocType: Employee,Notice (days),Observera (dagar)
|
||||
DocType: Tax Rule,Sales Tax Template,Moms Mall
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Välj objekt för att spara fakturan
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,All
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Se prospekts
|
||||
DocType: Program Enrollment Tool,New Program,nytt program
|
||||
DocType: Item Attribute Value,Attribute Value,Attribut Värde
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","E-post ID måste vara unikt, finns redan för {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","E-post ID måste vara unikt, finns redan för {0}"
|
||||
,Itemwise Recommended Reorder Level,Produktvis Rekommenderad Ombeställningsnivå
|
||||
DocType: Salary Detail,Salary Detail,lön Detalj
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Välj {0} först
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Projektverksamhet / uppgift.
|
||||
DocType: Vehicle Log,Refuelling Details,Tanknings Detaljer
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Generera lönebesked
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Next Kontakt Genom kan inte vara densamma som den ledande e-id
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Next Kontakt Genom kan inte vara densamma som den ledande e-id
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Köp måste anges, i förekommande fall väljs som {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Rabatt måste vara mindre än 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Sista köpkurs hittades inte
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,Förskottsbetalning
|
||||
DocType: Item,Item Tax,Produkt Skatt
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Material till leverantören
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Punkt Faktura
|
||||
DocType: Expense Claim,Employees Email Id,Anställdas E-post Id
|
||||
DocType: Expense Claim,Employees Email Address,Anställdas E-post Id
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Marked Närvaro
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Nuvarande Åtaganden
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Skicka mass SMS till dina kontakter
|
||||
|
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,வாடகை செலவு
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,தொகை தேய்மானம் பிறகு
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,எதிர்வரும் நாட்காட்டி நிகழ்வுகள்
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,மாதம் மற்றும் ஆண்டு தேர்ந்தெடுக்கவும்
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","பிரிக்கப்பட்ட மின்னஞ்சல் ஐடியை உள்ளிடுக, விலைப்பட்டியல் குறிப்பிட்ட தேதியில் தானாக அஞ்சலிடப்படும்"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","பிரிக்கப்பட்ட மின்னஞ்சல் ஐடியை உள்ளிடுக, விலைப்பட்டியல் குறிப்பிட்ட தேதியில் தானாக அஞ்சலிடப்படும்"
|
||||
DocType: Employee,Company Email,நிறுவனத்தின் மின்னஞ்சல்
|
||||
DocType: GL Entry,Debit Amount in Account Currency,கணக்கு நாணய பற்று தொகை
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,வங்கி / பண கட்சிக்கு எதிராக அல்லது உள் பரிமாற்ற பரிவர்த்தனைகள்
|
||||
@ -685,7 +685,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,முன்னோட்டம் சம்பளம் ஸ்லிப்
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,கணக்கு {0} பல முறை உள்ளிட்ட வருகிறது
|
||||
DocType: Account,Expenses Included In Valuation,செலவுகள் மதிப்பீட்டு சேர்க்கப்பட்டுள்ளது
|
||||
DocType: Employee,Provide email id registered in company,நிறுவனத்தின் பதிவு மின்னஞ்சல் ஐடி வழங்கும்
|
||||
DocType: Employee,Provide Email Address registered in company,நிறுவனத்தின் பதிவு மின்னஞ்சல் ஐடி வழங்கும்
|
||||
DocType: Hub Settings,Seller City,விற்பனையாளர் நகரத்தை
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,ஒரு மாணவர் குழு தேர்ந்தெடுக்கவும்
|
||||
,Absent Student Report,இல்லாத மாணவர் அறிக்கை
|
||||
@ -1128,7 +1128,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,ப்ளூ
|
||||
DocType: Purchase Invoice,Is Return,திரும்பி இருக்கிறது
|
||||
DocType: Price List Country,Price List Country,விலை பட்டியல் நாடு
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,மின்னஞ்சல் ஐடி அமைக்கவும்
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,மின்னஞ்சல் ஐடி அமைக்கவும்
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,பொருள் கோட் சீரியல் எண் மாற்றப்பட கூடாது
|
||||
@ -2219,7 +2219,7 @@ DocType: Fiscal Year,Year End Date,ஆண்டு முடிவு தேத
|
||||
DocType: Task Depends On,Task Depends On,பணி பொறுத்தது
|
||||
DocType: Supplier Quotation,Opportunity,சந்தர்ப்பம்
|
||||
,Completed Production Orders,இதன் தயாரிப்பு நிறைவடைந்தது ஆணைகள்
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,ரோ {0}: விநியோகித்து {0} மின்னஞ்சல் ஐடி மின்னஞ்சல் அனுப்ப வேண்டும்
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,ரோ {0}: விநியோகித்து {0} மின்னஞ்சல் ஐடி மின்னஞ்சல் அனுப்ப வேண்டும்
|
||||
DocType: Operation,Default Workstation,இயல்புநிலை வேலைநிலையங்களின்
|
||||
DocType: Notification Control,Expense Claim Approved Message,இழப்பில் கோரிக்கை செய்தி அங்கீகரிக்கப்பட்ட
|
||||
DocType: Payment Entry,Deductions or Loss,விலக்கிற்கு அல்லது இழப்பு
|
||||
@ -3698,7 +3698,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,இழப்பு செலா
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,விண்ணப்ப காலம் இரண்டு alocation பதிவுகள் முழுவதும் இருக்க முடியாது
|
||||
DocType: Item Group,Default Expense Account,முன்னிருப்பு செலவு கணக்கு
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,மாணவர் தொகுதி அல்லது பாட அட்டவணை அத்தியாவசியமானதாகும்
|
||||
DocType: Student,Student Email ID,மாணவர் மின்னஞ்சல் ஐடி
|
||||
DocType: Student,Student Email Address,மாணவர் மின்னஞ்சல் ஐடி
|
||||
DocType: Employee,Notice (days),அறிவிப்பு ( நாட்கள்)
|
||||
DocType: Tax Rule,Sales Tax Template,விற்பனை வரி டெம்ப்ளேட்
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,விலைப்பட்டியல் காப்பாற்ற பொருட்களை தேர்வு
|
||||
@ -3849,7 +3849,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,ப
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,காண்க லீட்ஸ்
|
||||
DocType: Program Enrollment Tool,New Program,புதிய திட்டம்
|
||||
DocType: Item Attribute Value,Attribute Value,மதிப்பு பண்பு
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","மின்னஞ்சல் அடையாள தனிப்பட்ட இருக்க வேண்டும் , ஏற்கனவே உள்ளது {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","மின்னஞ்சல் அடையாள தனிப்பட்ட இருக்க வேண்டும் , ஏற்கனவே உள்ளது {0}"
|
||||
,Itemwise Recommended Reorder Level,இனவாரியாக நிலை மறுவரிசைப்படுத்துக பரிந்துரைக்கப்பட்ட
|
||||
DocType: Salary Detail,Salary Detail,சம்பளம் விபரம்
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,முதல் {0} தேர்வு செய்க
|
||||
@ -4051,7 +4051,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,திட்ட செயல்பாடு / பணி.
|
||||
DocType: Vehicle Log,Refuelling Details,Refuelling விபரங்கள்
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,சம்பளம் தவறிவிடும் உருவாக்க
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,அடுத்த தொடர்பு மூலம் முன்னணி மின்னஞ்சல் ஐடி அதே இருக்க முடியாது
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,அடுத்த தொடர்பு மூலம் முன்னணி மின்னஞ்சல் ஐடி அதே இருக்க முடியாது
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","பொருந்துகின்ற என தேர்வு என்றால் வாங்குதல், சரிபார்க்கப்பட வேண்டும் {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,தள்ளுபடி 100 க்கும் குறைவான இருக்க வேண்டும்
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,கடைசியாக கொள்முதல் விகிதம் இல்லை
|
||||
@ -4347,7 +4347,7 @@ DocType: Purchase Order,Advance Paid,முன்பணம்
|
||||
DocType: Item,Item Tax,உருப்படியை வரி
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,சப்ளையர் பொருள்
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,கலால் விலைப்பட்டியல்
|
||||
DocType: Expense Claim,Employees Email Id,ஊழியர்கள் மின்னஞ்சல் விலாசம்
|
||||
DocType: Expense Claim,Employees Email Address,ஊழியர்கள் மின்னஞ்சல் விலாசம்
|
||||
DocType: Employee Attendance Tool,Marked Attendance,அடையாளமிட்ட வருகை
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,நடப்பு பொறுப்புகள்
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,உங்கள் தொடர்புகள் வெகுஜன எஸ்எம்எஸ் அனுப்ப
|
||||
|
Can't render this file because it is too large.
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,రెంట్ ఖర్చు
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,మొత్తం అరుగుదల తరువాత
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,రాబోయే క్యాలెండర్ ఈవెంట్స్
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,నెల మరియు సంవత్సరం దయచేసి ఎంచుకోండి
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","కామాలతో వేరు ఎంటర్ ఇమెయిల్ ఐడి, ఇన్వాయిస్ ప్రత్యేక తేదీ స్వయంచాలకంగా కఠోర ఉంటుంది"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","కామాలతో వేరు ఎంటర్ ఇమెయిల్ ఐడి, ఇన్వాయిస్ ప్రత్యేక తేదీ స్వయంచాలకంగా కఠోర ఉంటుంది"
|
||||
DocType: Employee,Company Email,కంపెనీ ఇమెయిల్
|
||||
DocType: GL Entry,Debit Amount in Account Currency,ఖాతా కరెన్సీ లో డెబిట్ మొత్తం
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,బ్యాంకు / క్యాష్ పార్టీకి వ్యతిరేకంగా లేదా అంతర్గత బదిలీ లావాదేవీల
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,ప్రివ్యూ వేతనం స్లిప్
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,ఖాతా {0} అనేకసార్లు నమోదు చేసిన
|
||||
DocType: Account,Expenses Included In Valuation,ఖర్చులు విలువలో
|
||||
DocType: Employee,Provide email id registered in company,సంస్థ నమోదు టపా అందించండి
|
||||
DocType: Employee,Provide Email Address registered in company,సంస్థ నమోదు టపా అందించండి
|
||||
DocType: Hub Settings,Seller City,అమ్మకాల సిటీ
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,దయచేసి ఒక స్టూడెంట్ గ్రూప్ ఎంచుకోండి
|
||||
,Absent Student Report,కరువవడంతో విద్యార్థి నివేదిక
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,బ్లూ
|
||||
DocType: Purchase Invoice,Is Return,రాబడి
|
||||
DocType: Price List Country,Price List Country,ధర జాబితా దేశం
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,ఇమెయిల్ ID సెట్ చెయ్యండి
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,ఇమెయిల్ ID సెట్ చెయ్యండి
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,Item కోడ్ సీరియల్ నం కోసం మారలేదు
|
||||
@ -2196,7 +2196,7 @@ DocType: Fiscal Year,Year End Date,ఇయర్ ముగింపు తేద
|
||||
DocType: Task Depends On,Task Depends On,టాస్క్ ఆధారపడి
|
||||
DocType: Supplier Quotation,Opportunity,అవకాశం
|
||||
,Completed Production Orders,పూర్తి అయ్యింది ఆర్డర్స్
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,రో {0}: సరఫరాదారు కోసం {0} టపా ఇమెయిల్ పంపించవలసిన అవసరం ఉంది
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,రో {0}: సరఫరాదారు కోసం {0} టపా ఇమెయిల్ పంపించవలసిన అవసరం ఉంది
|
||||
DocType: Operation,Default Workstation,డిఫాల్ట్ కార్యక్షేత్ర
|
||||
DocType: Notification Control,Expense Claim Approved Message,ఖర్చు చెప్పడం ఆమోదించబడింది సందేశం
|
||||
DocType: Payment Entry,Deductions or Loss,తగ్గింపులకు లేదా నష్టం
|
||||
@ -3641,7 +3641,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,నష్టం సెట్ ఎ
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,అప్లికేషన్ కాలం రెండు alocation రికార్డులు అంతటా ఉండకూడదు
|
||||
DocType: Item Group,Default Expense Account,డిఫాల్ట్ వ్యయం ఖాతా
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,స్టూడెంట్ బ్యాచ్ లేదా కోర్సు షెడ్యూల్ తప్పనిసరి
|
||||
DocType: Student,Student Email ID,స్టూడెంట్ అడ్రెస్
|
||||
DocType: Student,Student Email Address,స్టూడెంట్ అడ్రెస్
|
||||
DocType: Employee,Notice (days),నోటీసు (రోజులు)
|
||||
DocType: Tax Rule,Sales Tax Template,సేల్స్ టాక్స్ మూస
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,ఇన్వాయిస్ సేవ్ చెయ్యడానికి ఐటమ్లను ఎంచుకోండి
|
||||
@ -3792,7 +3792,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,స
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,చూడండి దారితీస్తుంది
|
||||
DocType: Program Enrollment Tool,New Program,కొత్త ప్రోగ్రామ్
|
||||
DocType: Item Attribute Value,Attribute Value,విలువ లక్షణం
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","ఇమెయిల్ ఐడి ఇప్పటికే ఉనికిలో ఉంది, ప్రత్యేకంగా ఉండాలి {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","ఇమెయిల్ ఐడి ఇప్పటికే ఉనికిలో ఉంది, ప్రత్యేకంగా ఉండాలి {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise క్రమాన్ని స్థాయి సిఫార్సు
|
||||
DocType: Salary Detail,Salary Detail,జీతం వివరాలు
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,ముందుగా {0} దయచేసి ఎంచుకోండి
|
||||
@ -3983,7 +3983,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,ప్రాజెక్టు చర్య / పని.
|
||||
DocType: Vehicle Log,Refuelling Details,Refuelling వివరాలు
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,జీతం స్లిప్స్ రూపొందించండి
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,తదుపరి సంప్రదించండి ద్వారా లీడ్ ఇమెయిల్ ఐడి అదే ఉండకూడదు
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,తదుపరి సంప్రదించండి ద్వారా లీడ్ ఇమెయిల్ ఐడి అదే ఉండకూడదు
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}",వర్తించే ఎంపిక ఉంది ఉంటే కొనుగోలు తనిఖీ చెయ్యాలి {0}
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,డిస్కౌంట్ 100 కంటే తక్కువ ఉండాలి
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,గత కొనుగోలు రేటు దొరకలేదు
|
||||
@ -4278,7 +4278,7 @@ DocType: Purchase Order,Advance Paid,అడ్వాన్స్ చెల్ల
|
||||
DocType: Item,Item Tax,అంశం పన్ను
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,సరఫరాదారు మెటీరియల్
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,ఎక్సైజ్ వాయిస్
|
||||
DocType: Expense Claim,Employees Email Id,ఉద్యోగులు ఇమెయిల్ ఐడి
|
||||
DocType: Expense Claim,Employees Email Address,ఉద్యోగులు ఇమెయిల్ ఐడి
|
||||
DocType: Employee Attendance Tool,Marked Attendance,గుర్తించ హాజరు
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,ప్రస్తుత బాధ్యతలు
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,మాస్ SMS మీ పరిచయాలను పంపండి
|
||||
|
Can't render this file because it is too large.
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,ต้นทุนการ ให้เช่า
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,จำนวนเงินหลังจากที่ค่าเสื่อมราคา
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,ที่จะเกิดขึ้นปฏิทินเหตุการณ์
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,กรุณาเลือกเดือนและปี
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date",ใส่หมายเลขอีเมลคั่นด้วยเครื่องหมายจุลภาคใบแจ้งหนี้จะถูกส่งโดยอัตโนมัติในวันที่เจาะจง
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date",ใส่หมายเลขอีเมลคั่นด้วยเครื่องหมายจุลภาคใบแจ้งหนี้จะถูกส่งโดยอัตโนมัติในวันที่เจาะจง
|
||||
DocType: Employee,Company Email,อีเมล์ บริษัท
|
||||
DocType: GL Entry,Debit Amount in Account Currency,จำนวนเงินเดบิตในสกุลเงินในบัญชี
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,การทำธุรกรรมธนาคาร / เงินสดกับบุคคลหรือสำหรับการถ่ายโอนภายใน
|
||||
@ -685,7 +685,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,ดูตัวอย่างสลิปเงินเดือน
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,บัญชี {0} ได้รับการป้อนหลายครั้ง
|
||||
DocType: Account,Expenses Included In Valuation,ค่าใช้จ่ายรวมอยู่ในการประเมินมูลค่า
|
||||
DocType: Employee,Provide email id registered in company,ให้ ID อีเมลที่ลงทะเบียนใน บริษัท
|
||||
DocType: Employee,Provide Email Address registered in company,ให้ ID อีเมลที่ลงทะเบียนใน บริษัท
|
||||
DocType: Hub Settings,Seller City,ผู้ขายเมือง
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,โปรดเลือกกลุ่มนักศึกษา
|
||||
,Absent Student Report,รายงานนักศึกษาขาด
|
||||
@ -1128,7 +1128,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,สีฟ้า
|
||||
DocType: Purchase Invoice,Is Return,คือการกลับมา
|
||||
DocType: Price List Country,Price List Country,ราคาประเทศ
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,กรุณาตั้งค่าอีเมล์ ID
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,กรุณาตั้งค่าอีเมล์ ID
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,รหัสสินค้า ไม่สามารถ เปลี่ยนเป็น เลข อนุกรม
|
||||
@ -2219,7 +2219,7 @@ DocType: Fiscal Year,Year End Date,วันสิ้นปี
|
||||
DocType: Task Depends On,Task Depends On,ขึ้นอยู่กับงาน
|
||||
DocType: Supplier Quotation,Opportunity,โอกาส
|
||||
,Completed Production Orders,เสร็จสิ้นการ สั่งซื้อ การผลิต
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,แถว {0}: สำหรับผู้จัดจำหน่าย {0} รหัสอีเมลจะต้องส่งอีเมล
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,แถว {0}: สำหรับผู้จัดจำหน่าย {0} รหัสอีเมลจะต้องส่งอีเมล
|
||||
DocType: Operation,Default Workstation,เวิร์คสเตชั่เริ่มต้น
|
||||
DocType: Notification Control,Expense Claim Approved Message,เรียกร้องค่าใช้จ่ายที่ได้รับอนุมัติข้อความ
|
||||
DocType: Payment Entry,Deductions or Loss,การหักเงินหรือการสูญเสีย
|
||||
@ -3697,7 +3697,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,ตั้งแลกเปล
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,รับสมัครไม่สามารถบันทึกในสอง alocation
|
||||
DocType: Item Group,Default Expense Account,บัญชีค่าใช้จ่ายเริ่มต้น
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,ชุดนักเรียนหรือตารางเรียนมีผลบังคับใช้
|
||||
DocType: Student,Student Email ID,อีเมล์ ID นักศึกษา
|
||||
DocType: Student,Student Email Address,อีเมล์ ID นักศึกษา
|
||||
DocType: Employee,Notice (days),แจ้งให้ทราบล่วงหน้า (วัน)
|
||||
DocType: Tax Rule,Sales Tax Template,แม่แบบภาษีการขาย
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,เลือกรายการที่จะบันทึกในใบแจ้งหนี้
|
||||
@ -3848,7 +3848,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,บ
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,ดูนำ
|
||||
DocType: Program Enrollment Tool,New Program,โปรแกรมใหม่
|
||||
DocType: Item Attribute Value,Attribute Value,ค่าแอตทริบิวต์
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}",id อีเมล ต้องไม่ซ้ำกัน อยู่ แล้วสำหรับ {0}
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}",id อีเมล ต้องไม่ซ้ำกัน อยู่ แล้วสำหรับ {0}
|
||||
,Itemwise Recommended Reorder Level,แนะนำ Itemwise Reorder ระดับ
|
||||
DocType: Salary Detail,Salary Detail,รายละเอียดเงินเดือน
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,กรุณาเลือก {0} ครั้งแรก
|
||||
@ -4050,7 +4050,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,กิจกรรมของโครงการ / งาน
|
||||
DocType: Vehicle Log,Refuelling Details,รายละเอียดเชื้อเพลิง
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,สร้าง Slips เงินเดือน
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,ถัดไปติดต่อโดยไม่สามารถเช่นเดียวกับ ID ตะกั่วอีเมล์
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,ถัดไปติดต่อโดยไม่สามารถเช่นเดียวกับ ID ตะกั่วอีเมล์
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}",ต้องเลือก การซื้อ ถ้าเลือก ใช้ได้กับ เป็น {0}
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,ส่วนลด จะต้อง น้อยกว่า 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,ไม่พบอัตราการซื้อล่าสุด
|
||||
@ -4346,7 +4346,7 @@ DocType: Purchase Order,Advance Paid,จ่ายล่วงหน้า
|
||||
DocType: Item,Item Tax,ภาษีสินค้า
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,วัสดุในการจัดจำหน่าย
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,สรรพสามิตใบแจ้งหนี้
|
||||
DocType: Expense Claim,Employees Email Id,Email รหัสพนักงาน
|
||||
DocType: Expense Claim,Employees Email Address,Email รหัสพนักงาน
|
||||
DocType: Employee Attendance Tool,Marked Attendance,ผู้เข้าร่วมการทำเครื่องหมาย
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,หนี้สินหมุนเวียน
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,ส่ง SMS มวลการติดต่อของคุณ
|
||||
|
Can't render this file because it is too large.
|
@ -430,7 +430,7 @@ DocType: Workstation,Rent Cost,Kira Bedeli
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Değer kaybı sonrası miktar
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Yaklaşan Takvim Olayları
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Ay ve yıl seçiniz
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Virgülle ayrılmış e-posta kimliklerini girin, fatura belirli bir tarihte otomatik olarak gönderilecek"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Virgülle ayrılmış e-posta kimliklerini girin, fatura belirli bir tarihte otomatik olarak gönderilecek"
|
||||
DocType: Employee,Company Email,Şirket e-posta
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Hesap Para Bankamatik Tutar
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,partiye karşı veya dahili transfer için Banka / Para Çekme işlemleri
|
||||
@ -815,7 +815,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Önizleme Maaş Kayma
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Hesap {0} birden çok kez girilmiş
|
||||
DocType: Account,Expenses Included In Valuation,Değerlemeye dahil giderler
|
||||
DocType: Employee,Provide email id registered in company,Şirkette kayıtlı e-posta adresini veriniz
|
||||
DocType: Employee,Provide Email Address registered in company,Şirkette kayıtlı e-posta adresini veriniz
|
||||
DocType: Hub Settings,Seller City,Satıcı Şehri
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Öğrenci Grubu seçiniz
|
||||
,Absent Student Report,Yok Öğrenci Raporu
|
||||
@ -1321,7 +1321,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Mavi
|
||||
DocType: Purchase Invoice,Is Return,İade mi
|
||||
DocType: Price List Country,Price List Country,Fiyat Listesi Ülke
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,E-posta kimliğini ayarlamak Lütfen
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,E-posta kimliğini ayarlamak Lütfen
|
||||
DocType: Item,UOMs,Ölçü Birimleri
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{0} valid serial nos for Item {1},Ürün {1} için {0} geçerli bir seri numarası
|
||||
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Ürün Kodu Seri No için değiştirilemez
|
||||
@ -2592,7 +2592,7 @@ DocType: Supplier Quotation,Opportunity,Fırsat
|
||||
DocType: Supplier Quotation,Opportunity,Fırsat
|
||||
,Completed Production Orders,Tamamlanan Üretim Siparişleri
|
||||
,Completed Production Orders,Tamamlanan Üretim Siparişleri
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Satır {0}: tedarikçisi için {0} e-posta id e-posta göndermek için gereklidir
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Satır {0}: tedarikçisi için {0} e-posta id e-posta göndermek için gereklidir
|
||||
DocType: Operation,Default Workstation,Standart İstasyonu
|
||||
DocType: Notification Control,Expense Claim Approved Message,Gideri Talebi Onay Mesajı
|
||||
DocType: Payment Entry,Deductions or Loss,Kesintiler veya Zararı
|
||||
@ -4282,7 +4282,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Değişim Kazanç Set / Zarar
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Uygulama süresi iki alocation kayıtları arasında olamaz
|
||||
DocType: Item Group,Default Expense Account,Standart Gider Hesabı
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Öğrenci Toplu veya Ders Programı zorunludur
|
||||
DocType: Student,Student Email ID,Öğrenci E-posta Kimliği
|
||||
DocType: Student,Student Email Address,Öğrenci E-posta Kimliği
|
||||
DocType: Employee,Notice (days),Bildirimi (gün)
|
||||
DocType: Employee,Notice (days),Bildirimi (gün)
|
||||
DocType: Tax Rule,Sales Tax Template,Satış Vergisi Şablon
|
||||
@ -4463,7 +4463,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Gen
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Görünüm İlanlar
|
||||
DocType: Program Enrollment Tool,New Program,yeni Program
|
||||
DocType: Item Attribute Value,Attribute Value,Değer Özellik
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","E-posta yeni olmalıdır, {0} için zaten mevcut"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","E-posta yeni olmalıdır, {0} için zaten mevcut"
|
||||
,Itemwise Recommended Reorder Level,Ürünnin Önerilen Yeniden Sipariş Düzeyi
|
||||
DocType: Salary Detail,Salary Detail,Maaş Detay
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Önce {0} seçiniz
|
||||
@ -4699,7 +4699,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Proje faaliyeti / görev.
|
||||
DocType: Vehicle Log,Refuelling Details,Yakıt Detayları
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Maaş Makbuzu Oluşturun
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Sonraki İletişim By Kurşun E-posta id ile aynı olamaz
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Sonraki İletişim By Kurşun E-posta id ile aynı olamaz
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Eğer Uygulanabilir {0} olarak seçilirse, alım kontrol edilmelidir."
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,İndirim 100'den az olmalıdır
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Son satın alma oranı bulunamadı
|
||||
@ -5046,7 +5046,7 @@ DocType: Item,Item Tax,Ürün Vergisi
|
||||
DocType: Item,Item Tax,Ürün Vergisi
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Tedarikçi Malzeme
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Tüketim Fatura
|
||||
DocType: Expense Claim,Employees Email Id,Çalışanların e-posta adresleri
|
||||
DocType: Expense Claim,Employees Email Address,Çalışanların e-posta adresleri
|
||||
DocType: Employee Attendance Tool,Marked Attendance,İşaretlenmiş Devamlılık
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Kısa Vadeli Borçlar
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Kişilerinize toplu SMS Gönder
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,Вартість оренди
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Залишкова вартість
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Майбутні Календар подій
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,"Будь-ласка, виберіть місяць та рік"
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Введіть електронний ідентифікатор, розділені комами, рахунок-фактура буде автоматично відправлений на певну дату"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Введіть електронний ідентифікатор, розділені комами, рахунок-фактура буде автоматично відправлений на певну дату"
|
||||
DocType: Employee,Company Email,Компанія E-mail
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Дебет Сума в валюті рахунку
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Банк / Касові операції проти партії або для внутрішньої передачі
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Попередній перегляд Зарплатного розрахунку
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Рахунок {0} був введений кілька разів
|
||||
DocType: Account,Expenses Included In Valuation,"Витрати, що включаються в оцінку"
|
||||
DocType: Employee,Provide email id registered in company,Забезпечити електронний ідентифікатор зареєстрованого в компанії
|
||||
DocType: Employee,Provide Email Address registered in company,Забезпечити електронний ідентифікатор зареєстрованого в компанії
|
||||
DocType: Hub Settings,Seller City,Продавець Місто
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,"Будь ласка, виберіть групу Student"
|
||||
,Absent Student Report,Відсутня Student Report
|
||||
@ -1107,7 +1107,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Синій
|
||||
DocType: Purchase Invoice,Is Return,Повернення
|
||||
DocType: Price List Country,Price List Country,Ціни Країна
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,"Будь ласка, встановіть Email ID"
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,"Будь ласка, встановіть Email Address"
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,Код товару не може бути змінена для серійним номером
|
||||
@ -2194,7 +2194,7 @@ DocType: Fiscal Year,Year End Date,Дата закінчення року
|
||||
DocType: Task Depends On,Task Depends On,Завдання залежить від
|
||||
DocType: Supplier Quotation,Opportunity,Нагода
|
||||
,Completed Production Orders,Виконані Виробничі замовлення
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Рядок {0}: Для постачальника {0} електронний ідентифікатор потрібно для відправки електронної пошти
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Рядок {0}: Для постачальника {0} електронний ідентифікатор потрібно для відправки електронної пошти
|
||||
DocType: Operation,Default Workstation,За замовчуванням робоча станція
|
||||
DocType: Notification Control,Expense Claim Approved Message,Повідомлення при погодженні авансового звіту
|
||||
DocType: Payment Entry,Deductions or Loss,Відрахування або збиток
|
||||
@ -3639,7 +3639,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Встановити Курсо
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Термін подачі заяв не може бути з двох alocation записів
|
||||
DocType: Item Group,Default Expense Account,Витратний рахунок за замовчуванням
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Student Пакетний або Розклад курсу є обов'язковим
|
||||
DocType: Student,Student Email ID,Student Email ID
|
||||
DocType: Student,Student Email Address,Student Email Address
|
||||
DocType: Employee,Notice (days),Примітка (днів)
|
||||
DocType: Tax Rule,Sales Tax Template,Шаблон податків на продаж
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Виберіть елементи для збереження рахунку-фактури
|
||||
@ -3790,7 +3790,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,Г
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Подивитися Lead-и
|
||||
DocType: Program Enrollment Tool,New Program,Нова програма
|
||||
DocType: Item Attribute Value,Attribute Value,Значення атрибута
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Посвідчення особи електронної пошти повинен бути унікальним, вже існує для {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Посвідчення особи електронної пошти повинен бути унікальним, вже існує для {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise Recommended Reorder Level
|
||||
DocType: Salary Detail,Salary Detail,Заробітна плата: Подробиці
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,"Будь ласка, виберіть {0} в першу чергу"
|
||||
@ -3981,7 +3981,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Проектна діяльність / завдання.
|
||||
DocType: Vehicle Log,Refuelling Details,заправні Детальніше
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Згенерувати Зарплатні розрахунки
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,"Наступна Контактні До не може бути такою ж, як провідного ідентифікатор електронної пошти"
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,"Наступна Контактні До не може бути такою ж, як провідного ідентифікатор електронної пошти"
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","""Купівля"" повинно бути позначено, якщо ""Застосовне для"" обране як {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,"Знижка повинна бути менше, ніж 100"
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,Останню ціну закупівлі не знайдено
|
||||
@ -4276,7 +4276,7 @@ DocType: Purchase Order,Advance Paid,Попередньо оплачено
|
||||
DocType: Item,Item Tax,Податки
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Матеріал Постачальнику
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Акцизний Рахунок
|
||||
DocType: Expense Claim,Employees Email Id,Співробітники Email ID
|
||||
DocType: Expense Claim,Employees Email Address,Співробітники Email Address
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Помітне Відвідуваність
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Поточні зобов'язання
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Відправити SMS масового вашим контактам
|
||||
|
Can't render this file because it is too large.
|
@ -358,7 +358,7 @@ DocType: Workstation,Rent Cost,کرایہ لاگت
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,رقم ہراس کے بعد
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,انے والے واقعات کے کیلنڈر
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,مہینے اور سال براہ مہربانی منتخب کریں
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date",کوما سے علیحدہ کریں ای میل کی شناخت، انوائس خاص تاریخ پر خود کار طریقے سے بھیج دیا جائے گا
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date",کوما سے علیحدہ کریں ای میل کی شناخت، انوائس خاص تاریخ پر خود کار طریقے سے بھیج دیا جائے گا
|
||||
DocType: Employee,Company Email,کمپنی ای میل
|
||||
DocType: GL Entry,Debit Amount in Account Currency,اکاؤنٹ کی کرنسی میں ڈیبٹ رقم
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,بینک / کیش پارٹی کے خلاف یا اندرونی منتقلی کے لئے لین دین
|
||||
@ -674,7 +674,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,پیش نظارہ تنخواہ کی پرچی
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,اکاؤنٹ {0} کئی بار داخل کیا گیا ہے
|
||||
DocType: Account,Expenses Included In Valuation,اخراجات تشخیص میں شامل
|
||||
DocType: Employee,Provide email id registered in company,کمپنی میں رجسٹرڈ ای میل ID فراہم
|
||||
DocType: Employee,Provide Email Address registered in company,کمپنی میں رجسٹرڈ ای میل ID فراہم
|
||||
DocType: Hub Settings,Seller City,فروش شہر
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,ایک طالب علم گروپ براہ مہربانی منتخب کریں
|
||||
,Absent Student Report,غائب Student کی رپورٹ
|
||||
@ -1086,7 +1086,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,بلیو
|
||||
DocType: Purchase Invoice,Is Return,واپسی ہے
|
||||
DocType: Price List Country,Price List Country,قیمت کی فہرست ملک
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,ای میل ID مقرر کریں
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,ای میل ID مقرر کریں
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,آئٹم کوڈ سیریل نمبر کے لئے تبدیل کر دیا گیا نہیں کیا جا سکتا
|
||||
@ -3555,7 +3555,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,ایکسچینج حاصل مقر
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,درخواست کی مدت دو alocation ریکارڈ پار نہیں ہو سکتا
|
||||
DocType: Item Group,Default Expense Account,پہلے سے طے شدہ ایکسپینس اکاؤنٹ
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Student کی بیچ یا کورس شیڈول لازمی ہے
|
||||
DocType: Student,Student Email ID,Student کی ای میل آئی ڈی
|
||||
DocType: Student,Student Email Address,Student کی ای میل آئی ڈی
|
||||
DocType: Employee,Notice (days),نوٹس (دن)
|
||||
DocType: Tax Rule,Sales Tax Template,سیلز ٹیکس سانچہ
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,انوائس کو بچانے کے لئے اشیاء کو منتخب کریں
|
||||
@ -3703,7 +3703,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,ج
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,لنک لیڈز
|
||||
DocType: Program Enrollment Tool,New Program,نیا پروگرام
|
||||
DocType: Item Attribute Value,Attribute Value,ویلیو وصف
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}",ای میل کی شناخت پہلے ہی موجود ہے، منفرد ہونا چاہئے {0}
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}",ای میل کی شناخت پہلے ہی موجود ہے، منفرد ہونا چاہئے {0}
|
||||
,Itemwise Recommended Reorder Level,Itemwise ترتیب لیول سفارش
|
||||
DocType: Salary Detail,Salary Detail,تنخواہ تفصیل
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,پہلے {0} براہ مہربانی منتخب کریں
|
||||
@ -3888,7 +3888,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,پروجیکٹ سرگرمی / کام.
|
||||
DocType: Vehicle Log,Refuelling Details,Refuelling تفصیلات
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,تنخواہ تخم پیدا
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,اگلا رابطے کی طرف سے لیڈ ای میل آئی ڈی کے طور پر ہی نہیں ہو سکتا
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,اگلا رابطے کی طرف سے لیڈ ای میل آئی ڈی کے طور پر ہی نہیں ہو سکتا
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}",قابل اطلاق کے لئے کے طور پر منتخب کیا جاتا ہے تو خریدنے، جانچ پڑتال ہونا ضروری {0}
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,ڈسکاؤنٹ کم 100 ہونا ضروری ہے
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,آخری خریداری کی شرح نہ پایا
|
||||
@ -4174,7 +4174,7 @@ DocType: Purchase Order,Advance Paid,ایڈوانس ادا
|
||||
DocType: Item,Item Tax,آئٹم ٹیکس
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,سپلائر مواد
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,ایکسائز انوائس
|
||||
DocType: Expense Claim,Employees Email Id,ملازمین ای میل کی شناخت
|
||||
DocType: Expense Claim,Employees Email Address,ملازمین ای میل کی شناخت
|
||||
DocType: Employee Attendance Tool,Marked Attendance,نشان حاضری
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,موجودہ قرضوں
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,بڑے پیمانے پر ایس ایم ایس اپنے رابطوں کو بھیجیں
|
||||
|
|
@ -366,7 +366,7 @@ DocType: Workstation,Rent Cost,Chi phí thuê
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,Số tiền Sau khi khấu hao
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,Sắp tới Lịch sự kiện
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,Vui lòng chọn tháng và năm
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Nhập id email cách nhau bằng dấu phẩy, hóa đơn sẽ được gửi tự động vào ngày cụ thể"
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date","Nhập id email cách nhau bằng dấu phẩy, hóa đơn sẽ được gửi tự động vào ngày cụ thể"
|
||||
DocType: Employee,Company Email,Email công ty
|
||||
DocType: GL Entry,Debit Amount in Account Currency,Nợ Số tiền trong tài khoản ngoại tệ
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,Ngân hàng / Tiền giao dịch với bên hoặc chuyển giao nội bộ
|
||||
@ -685,7 +685,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,Xem trước trượt Mức lương
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,Tài khoản {0} đã được nhập nhiều lần
|
||||
DocType: Account,Expenses Included In Valuation,Chi phí bao gồm trong định giá
|
||||
DocType: Employee,Provide email id registered in company,Cung cấp email id đăng ký tại công ty
|
||||
DocType: Employee,Provide Email Address registered in company,Cung cấp Email Address đăng ký tại công ty
|
||||
DocType: Hub Settings,Seller City,Người bán Thành phố
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,Vui lòng chọn một nhóm học sinh
|
||||
,Absent Student Report,Báo cáo Sinh viên vắng mặt
|
||||
@ -1109,7 +1109,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,Màu xanh
|
||||
DocType: Purchase Invoice,Is Return,Là Return
|
||||
DocType: Price List Country,Price List Country,Giá Danh sách Country
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,Hãy đặt Email ID
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,Hãy đặt Email Address
|
||||
DocType: Item,UOMs,UOMs
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{0} valid serial nos for Item {1},{0} Các số seri hợp lệ cho mục {1}
|
||||
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Mã hàng không có thể được thay đổi cho Số sản
|
||||
@ -2200,7 +2200,7 @@ DocType: Fiscal Year,Year End Date,Ngày kết thúc năm
|
||||
DocType: Task Depends On,Task Depends On,Nhiệm vụ Phụ thuộc On
|
||||
DocType: Supplier Quotation,Opportunity,Cơ hội
|
||||
,Completed Production Orders,Đơn đặt hàng sản xuất hoàn thành
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,Row {0}: Đối với nhà cung cấp {0} email id là bắt buộc để gửi email
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,Row {0}: Đối với nhà cung cấp {0} Email Address là bắt buộc để gửi email
|
||||
DocType: Operation,Default Workstation,Mặc định Workstation
|
||||
DocType: Notification Control,Expense Claim Approved Message,Thông báo yêu cầu bồi thường chi phí được chấp thuận
|
||||
DocType: Payment Entry,Deductions or Loss,Các khoản giảm trừ khả năng mất vốn
|
||||
@ -3659,7 +3659,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,Đặt khoán Lãi / lỗ
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,Kỳ ứng dụng không thể được qua hai hồ sơ alocation
|
||||
DocType: Item Group,Default Expense Account,Tài khoản mặc định chi phí
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,Hàng loạt sinh viên hoặc Lịch học là bắt buộc
|
||||
DocType: Student,Student Email ID,Email ID Sinh viên
|
||||
DocType: Student,Student Email Address,Email Address Sinh viên
|
||||
DocType: Employee,Notice (days),Thông báo (ngày)
|
||||
DocType: Tax Rule,Sales Tax Template,Template Thuế bán hàng
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,Chọn mục để lưu các hoá đơn
|
||||
@ -3810,7 +3810,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,S
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Xem chào
|
||||
DocType: Program Enrollment Tool,New Program,Chương trình mới
|
||||
DocType: Item Attribute Value,Attribute Value,Attribute Value
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}","Id email phải là duy nhất, đã tồn tại cho {0}"
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}","Id email phải là duy nhất, đã tồn tại cho {0}"
|
||||
,Itemwise Recommended Reorder Level,Itemwise Đê Sắp xếp lại Cấp
|
||||
DocType: Salary Detail,Salary Detail,Chi tiết lương
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,Vui lòng chọn {0} đầu tiên
|
||||
@ -4012,7 +4012,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,Hoạt động dự án / nhiệm vụ.
|
||||
DocType: Vehicle Log,Refuelling Details,Chi tiết Nạp nhiên liệu
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,Tạo ra lương Trượt
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,Tiếp theo Liên Bằng không được giống như Email id chì
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,Tiếp theo Liên Bằng không được giống như Email Address chì
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}","Buying must be checked, if Applicable For is selected as {0}"
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Giảm giá phải được ít hơn 100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,không tìm thấy tỷ lệ mua sắm cuối
|
||||
@ -4308,7 +4308,7 @@ DocType: Purchase Order,Advance Paid,Trước Paid
|
||||
DocType: Item,Item Tax,Mục thuế
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,Chất liệu để Nhà cung cấp
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,Tiêu thụ đặc biệt Invoice
|
||||
DocType: Expense Claim,Employees Email Id,Nhân viên Email Id
|
||||
DocType: Expense Claim,Employees Email Address,Nhân viên Email Address
|
||||
DocType: Employee Attendance Tool,Marked Attendance,Attendance đánh dấu
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,Nợ ngắn hạn
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,Gửi tin nhắn SMS hàng loạt địa chỉ liên lạc của bạn
|
||||
|
|
@ -333,7 +333,7 @@ DocType: Student Applicant,Admitted,錄取
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,折舊金額後
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,即將到來的日曆事件
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,請選擇年份和月份
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date",輸入電子郵件ID用逗號隔開,發票會自動在特定的日期郵寄
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date",輸入電子郵件ID用逗號隔開,發票會自動在特定的日期郵寄
|
||||
DocType: Employee,Company Email,企業郵箱
|
||||
DocType: GL Entry,Debit Amount in Account Currency,在賬戶幣種借記金額
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,銀行/現金對一方或內部轉讓交易
|
||||
@ -629,7 +629,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,預覽工資單
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,帳戶{0}已多次輸入
|
||||
DocType: Account,Expenses Included In Valuation,支出計入估值
|
||||
DocType: Employee,Provide email id registered in company,提供在公司註冊的電子郵件ID
|
||||
DocType: Employee,Provide Email Address registered in company,提供在公司註冊的電子郵件ID
|
||||
DocType: Hub Settings,Seller City,賣家市
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,請選擇一個學生組
|
||||
,Absent Student Report,缺席學生報告
|
||||
@ -1041,7 +1041,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,藍色
|
||||
DocType: Purchase Invoice,Is Return,退貨
|
||||
DocType: Price List Country,Price List Country,價目表國家
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,請設定電子郵件ID
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,請設定電子郵件ID
|
||||
DocType: Item,UOMs,計量單位
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,產品編號不能為序列號改變
|
||||
@ -2027,7 +2027,7 @@ DocType: Fiscal Year,Year End Date,年結結束日期
|
||||
DocType: Task Depends On,Task Depends On,任務取決於
|
||||
DocType: Supplier Quotation,Opportunity,機會
|
||||
,Completed Production Orders,已完成生產訂單
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,行{0}:對於供應商{0}電子郵件ID需要發送電子郵件
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,行{0}:對於供應商{0}電子郵件ID需要發送電子郵件
|
||||
DocType: Operation,Default Workstation,預設工作站
|
||||
DocType: Notification Control,Expense Claim Approved Message,報銷批准的訊息
|
||||
DocType: Payment Entry,Deductions or Loss,扣除或損失
|
||||
@ -3394,7 +3394,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,設置兌換收益/損失
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,申請期間不能跨兩個alocation記錄
|
||||
DocType: Item Group,Default Expense Account,預設費用帳戶
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,學生批處理或課程表是強制性
|
||||
DocType: Student,Student Email ID,學生的電子郵件ID
|
||||
DocType: Student,Student Email Address,學生的電子郵件ID
|
||||
DocType: Tax Rule,Sales Tax Template,銷售稅模板
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,選取要保存發票
|
||||
DocType: Employee,Encashment Date,兌現日期
|
||||
@ -3528,7 +3528,7 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo
|
||||
apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,總帳
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,查看訊息
|
||||
DocType: Item Attribute Value,Attribute Value,屬性值
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}",電子郵件ID必須是唯一的,且已經存在於 {0}
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}",電子郵件ID必須是唯一的,且已經存在於 {0}
|
||||
,Itemwise Recommended Reorder Level,Itemwise推薦級別重新排序
|
||||
DocType: Salary Detail,Salary Detail,薪酬詳細
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,請先選擇{0}
|
||||
@ -3720,7 +3720,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,專案活動/任務。
|
||||
DocType: Vehicle Log,Refuelling Details,加油詳情
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,生成工資條
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,接著聯繫到不能等同於鉛電子郵件ID
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,接著聯繫到不能等同於鉛電子郵件ID
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}",採購必須進行檢查,如果適用於被選擇為{0}
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,折扣必須小於100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,最後購買率未找到
|
||||
@ -3992,7 +3992,7 @@ DocType: Purchase Order,Advance Paid,提前支付
|
||||
DocType: Item,Item Tax,產品稅
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,材料到供應商
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,消費稅發票
|
||||
DocType: Expense Claim,Employees Email Id,員工的電子郵件ID
|
||||
DocType: Expense Claim,Employees Email Address,員工的電子郵件ID
|
||||
DocType: Employee Attendance Tool,Marked Attendance,明顯考勤
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,流動負債
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,發送群發短信到您的聯絡人
|
||||
|
|
@ -365,7 +365,7 @@ DocType: Workstation,Rent Cost,租金成本
|
||||
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +81,Amount After Depreciation,折旧金额后
|
||||
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +97,Upcoming Calendar Events,即将到来的日历事件
|
||||
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +73,Please select month and year,请选择年份和月份
|
||||
DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date",请输入邮件地址列表,用英文逗号分割。发票在特定的日期会被自动发送。
|
||||
DocType: Purchase Invoice,"Enter Email Address separated by commas, invoice will be mailed automatically on particular date",请输入邮件地址列表,用英文逗号分割。发票在特定的日期会被自动发送。
|
||||
DocType: Employee,Company Email,企业邮箱
|
||||
DocType: GL Entry,Debit Amount in Account Currency,在账户币种借记金额
|
||||
apps/erpnext/erpnext/config/accounts.py +27,Bank/Cash transactions against party or for internal transfer,银行/现金对一方或内部转让交易
|
||||
@ -683,7 +683,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +551,Row #{0}: Asset {1}
|
||||
apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.js +368,Preview Salary Slip,预览工资单
|
||||
apps/erpnext/erpnext/accounts/doctype/budget/budget.py +53,Account {0} has been entered multiple times,帐户{0}已多次输入
|
||||
DocType: Account,Expenses Included In Valuation,开支计入估值
|
||||
DocType: Employee,Provide email id registered in company,提供的电子邮件ID在公司注册
|
||||
DocType: Employee,Provide Email Address registered in company,提供的电子邮件ID在公司注册
|
||||
DocType: Hub Settings,Seller City,卖家城市
|
||||
apps/erpnext/erpnext/schools/doctype/announcement/announcement.py +22,Please select a Student Group,请选择一个学生组
|
||||
,Absent Student Report,缺席学生报告
|
||||
@ -1118,7 +1118,7 @@ DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary
|
||||
apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Blue,蓝色
|
||||
DocType: Purchase Invoice,Is Return,再来
|
||||
DocType: Price List Country,Price List Country,价目表国家
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email ID,请设置电子邮件ID
|
||||
apps/erpnext/erpnext/utilities/doctype/contact/contact.py +69,Please set Email Address,请设置电子邮件ID
|
||||
DocType: Item,UOMs,计量单位
|
||||
apps/erpnext/erpnext/stock/utils.py +181,{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.,品目编号不能因序列号改变
|
||||
@ -2208,7 +2208,7 @@ DocType: Fiscal Year,Year End Date,年度结束日期
|
||||
DocType: Task Depends On,Task Depends On,任务取决于
|
||||
DocType: Supplier Quotation,Opportunity,机会
|
||||
,Completed Production Orders,已完成生产订单
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} email id is required to send email,行{0}:对于供应商{0}电子邮件ID需要发送电子邮件
|
||||
apps/erpnext/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +42,Row {0}: For supplier {0} Email Address is required to send email,行{0}:对于供应商{0}电子邮件ID需要发送电子邮件
|
||||
DocType: Operation,Default Workstation,默认工作台
|
||||
DocType: Notification Control,Expense Claim Approved Message,报销批准消息
|
||||
DocType: Payment Entry,Deductions or Loss,扣除或损失
|
||||
@ -3664,7 +3664,7 @@ DocType: Payment Entry,Set Exchange Gain / Loss,设置兑换收益/损失
|
||||
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +90,Application period cannot be across two alocation records,申请期间不能跨两个alocation记录
|
||||
DocType: Item Group,Default Expense Account,默认支出账户
|
||||
apps/erpnext/erpnext/schools/doctype/student_attendance/student_attendance.py +22,Student Batch or Course Schedule is mandatory,学生批处理或课程表是强制性
|
||||
DocType: Student,Student Email ID,学生的电子邮件ID
|
||||
DocType: Student,Student Email Address,学生的电子邮件ID
|
||||
DocType: Employee,Notice (days),通告(天)
|
||||
DocType: Tax Rule,Sales Tax Template,销售税模板
|
||||
apps/erpnext/erpnext/accounts/page/pos/pos.js +1626,Select items to save the invoice,选取要保存发票
|
||||
@ -3815,7 +3815,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.js +18,General Ledger,总
|
||||
apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,查看信息
|
||||
DocType: Program Enrollment Tool,New Program,新程序
|
||||
DocType: Item Attribute Value,Attribute Value,属性值
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email id must be unique, already exists for {0}",邮件地址{0}已存在
|
||||
apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +42,"Email Address must be unique, already exists for {0}",邮件地址{0}已存在
|
||||
,Itemwise Recommended Reorder Level,品目特定的推荐重订购级别
|
||||
DocType: Salary Detail,Salary Detail,薪酬详细
|
||||
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js +944,Please select {0} first,请选择{0}第一
|
||||
@ -4017,7 +4017,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +169,Period From and Peri
|
||||
apps/erpnext/erpnext/config/projects.py +18,Project activity / task.,项目活动/任务。
|
||||
DocType: Vehicle Log,Refuelling Details,加油详情
|
||||
apps/erpnext/erpnext/config/hr.py +104,Generate Salary Slips,生成工资条
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email id,接着联系到不能等同于铅电子邮件ID
|
||||
apps/erpnext/erpnext/crm/doctype/lead/lead.py +44,Next Contact By cannot be same as the Lead Email Address,接着联系到不能等同于铅电子邮件ID
|
||||
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +42,"Buying must be checked, if Applicable For is selected as {0}",“适用于”为{0}时必须勾选“采购”
|
||||
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,折扣必须小于100
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +106,Last purchase rate not found,最后购买率未找到
|
||||
@ -4313,7 +4313,7 @@ DocType: Purchase Order,Advance Paid,已支付的预付款
|
||||
DocType: Item,Item Tax,品目税项
|
||||
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +752,Material to Supplier,材料到供应商
|
||||
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +173,Excise Invoice,消费税发票
|
||||
DocType: Expense Claim,Employees Email Id,雇员的邮件地址
|
||||
DocType: Expense Claim,Employees Email Address,雇员的邮件地址
|
||||
DocType: Employee Attendance Tool,Marked Attendance,显着的出席
|
||||
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +136,Current Liabilities,流动负债
|
||||
apps/erpnext/erpnext/config/selling.py +278,Send mass SMS to your contacts,向你的联系人群发短信。
|
||||
|
|
@ -325,7 +325,7 @@
|
||||
"in_filter": 0,
|
||||
"in_list_view": 0,
|
||||
"in_standard_filter": 0,
|
||||
"label": "Email Id",
|
||||
"label": "Email Address",
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"permlevel": 0,
|
||||
|
@ -110,7 +110,7 @@
|
||||
"in_filter": 0,
|
||||
"in_list_view": 0,
|
||||
"in_standard_filter": 0,
|
||||
"label": "Email Id",
|
||||
"label": "Email Address",
|
||||
"length": 0,
|
||||
"no_copy": 0,
|
||||
"oldfieldname": "email_id",
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user